Interface AssistantService
-
- All Implemented Interfaces:
public interface AssistantService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AssistantService.WithRawResponse
A view of AssistantService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract AssistantService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
Assistant create(AssistantCreateParams params)
Create an assistant with a model and instructions.
-
create
abstract Assistant create(AssistantCreateParams params, RequestOptions requestOptions)
-
retrieve
Assistant retrieve(AssistantRetrieveParams params)
Retrieves an assistant.
-
retrieve
abstract Assistant retrieve(AssistantRetrieveParams params, RequestOptions requestOptions)
-
update
Assistant update(AssistantUpdateParams params)
Modifies an assistant.
-
update
abstract Assistant update(AssistantUpdateParams params, RequestOptions requestOptions)
-
list
AssistantListPage list()
Returns a list of assistants.
-
list
abstract AssistantListPage list(AssistantListParams params, RequestOptions requestOptions)
-
list
AssistantListPage list(AssistantListParams params)
-
list
AssistantListPage list(RequestOptions requestOptions)
-
delete
AssistantDeleted delete(AssistantDeleteParams params)
Delete an assistant.
-
delete
abstract AssistantDeleted delete(AssistantDeleteParams params, RequestOptions requestOptions)
-
-
-
-