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
-
-
Method Detail
-
withOptions
abstract MessageServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(String completionId)
Returns a raw HTTP response for
get /chat/completions/{completion_id}/messages
, but is otherwise the same as MessageServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(String completionId, MessageListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(String completionId, MessageListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(MessageListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(MessageListParams params)
-
list
CompletableFuture<HttpResponseFor<MessageListPageAsync>> list(String completionId, RequestOptions requestOptions)
-
-
-
-