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