Package com.openai.services.async.beta
Class AssistantServiceAsyncImpl.WithRawResponseImpl
-
- All Implemented Interfaces:
-
com.openai.services.async.beta.AssistantServiceAsync.WithRawResponse
public final class AssistantServiceAsyncImpl.WithRawResponseImpl implements AssistantServiceAsync.WithRawResponse
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<Assistant>>
create(BetaAssistantCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /assistants
, but is otherwise the same as AssistantServiceAsync.create.CompletableFuture<HttpResponseFor<Assistant>>
retrieve(BetaAssistantRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.CompletableFuture<HttpResponseFor<Assistant>>
update(BetaAssistantUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>>
list(BetaAssistantListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /assistants
, but is otherwise the same as AssistantServiceAsync.list.CompletableFuture<HttpResponseFor<AssistantDeleted>>
delete(BetaAssistantDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.-
-
Method Detail
-
create
CompletableFuture<HttpResponseFor<Assistant>> create(BetaAssistantCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /assistants
, but is otherwise the same as AssistantServiceAsync.create.
-
retrieve
CompletableFuture<HttpResponseFor<Assistant>> retrieve(BetaAssistantRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.
-
update
CompletableFuture<HttpResponseFor<Assistant>> update(BetaAssistantUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.
-
list
CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>> list(BetaAssistantListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
delete
CompletableFuture<HttpResponseFor<AssistantDeleted>> delete(BetaAssistantDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.
-
-
-
-