Package com.openai.services.async.beta
Interface AssistantServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AssistantServiceAsync.WithRawResponse
A view of AssistantServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<Assistant>> create(AssistantCreateParams params)
Returns a raw HTTP response for
post /assistants
, but is otherwise the same as AssistantServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Assistant>> create(AssistantCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Assistant>> retrieve(AssistantRetrieveParams params)
Returns a raw HTTP response for
get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Assistant>> retrieve(AssistantRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() CompletableFuture<HttpResponseFor<Assistant>> update(AssistantUpdateParams params)
Returns a raw HTTP response for
post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.
-
update
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Assistant>> update(AssistantUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<AssistantListPageAsync>> list()
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<AssistantListPageAsync>> list(AssistantListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<AssistantListPageAsync>> list(AssistantListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<AssistantListPageAsync>> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<AssistantDeleted>> delete(AssistantDeleteParams params)
Returns a raw HTTP response for
delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.
-
delete
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<AssistantDeleted>> delete(AssistantDeleteParams params, RequestOptions requestOptions)
-
-
-
-