Interface MessageServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface MessageServiceAsync.WithRawResponse
A view of MessageServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CompletableFuture<HttpResponseFor<ChatCompletionMessageListPageAsync>>
list(ChatCompletionMessageListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /chat/completions/{completion_id}/messages
, but is otherwise the same as MessageServiceAsync.list.abstract CompletableFuture<HttpResponseFor<ChatCompletionMessageListPageAsync>>
list(ChatCompletionMessageListParams params)
Returns a raw HTTP response for get /chat/completions/{completion_id}/messages
, but is otherwise the same as MessageServiceAsync.list.-
-
Method Detail
-
list
abstract CompletableFuture<HttpResponseFor<ChatCompletionMessageListPageAsync>> list(ChatCompletionMessageListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /chat/completions/{completion_id}/messages
, but is otherwise the same as MessageServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ChatCompletionMessageListPageAsync>> list(ChatCompletionMessageListParams params)
Returns a raw HTTP response for
get /chat/completions/{completion_id}/messages
, but is otherwise the same as MessageServiceAsync.list.
-
-
-
-