Interface MessageServiceAsync
-
- All Implemented Interfaces:
public interface MessageServiceAsync
-
-
Method Summary
Modifier and Type Method Description abstract CompletableFuture<ChatCompletionMessageListPageAsync>
list(ChatCompletionMessageListParams params, RequestOptions requestOptions)
Get the messages in a stored chat completion. abstract CompletableFuture<ChatCompletionMessageListPageAsync>
list(ChatCompletionMessageListParams params)
Get the messages in a stored chat completion. -
-
Method Detail
-
list
abstract CompletableFuture<ChatCompletionMessageListPageAsync> list(ChatCompletionMessageListParams params, RequestOptions requestOptions)
Get the messages in a stored chat completion. Only chat completions that have been created with the
store
parameter set totrue
will be returned.
-
list
abstract CompletableFuture<ChatCompletionMessageListPageAsync> list(ChatCompletionMessageListParams params)
Get the messages in a stored chat completion. Only chat completions that have been created with the
store
parameter set totrue
will be returned.
-
-
-
-