Uses of Class
com.azure.ai.openai.assistants.models.AssistantCreationOptions
Packages that use AssistantCreationOptions
Package
Description
Package containing the classes for Assistants.
Package containing the data models for Assistants.
-
Uses of AssistantCreationOptions in com.azure.ai.openai.assistants
Methods in com.azure.ai.openai.assistants with parameters of type AssistantCreationOptionsModifier and TypeMethodDescriptionAssistantsAsyncClient.createAssistant
(AssistantCreationOptions assistantCreationOptions) Creates a new assistant.AssistantsClient.createAssistant
(AssistantCreationOptions assistantCreationOptions) Creates a new assistant. -
Uses of AssistantCreationOptions in com.azure.ai.openai.assistants.models
Methods in com.azure.ai.openai.assistants.models that return AssistantCreationOptionsModifier and TypeMethodDescriptionstatic AssistantCreationOptions
AssistantCreationOptions.fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of AssistantCreationOptions from the JsonReader.AssistantCreationOptions.setDescription
(String description) Set the description property: The description of the new assistant.AssistantCreationOptions.setInstructions
(String instructions) Set the instructions property: The system instructions for the new assistant to use.AssistantCreationOptions.setMetadata
(Map<String, String> metadata) Set the metadata property: A set of up to 16 key/value pairs that can be attached to an object, used for storing additional information about that object in a structured format.Set the name property: The name of the new assistant.AssistantCreationOptions.setResponseFormat
(AssistantsApiResponseFormatOption responseFormat) Set the responseFormat property: The response format of the tool calls used by this assistant.AssistantCreationOptions.setTemperature
(Double temperature) Set the temperature property: What sampling temperature to use, between 0 and 2.AssistantCreationOptions.setToolResources
(CreateToolResourcesOptions toolResources) Set the toolResources property: A set of resources that are used by the assistant's tools.AssistantCreationOptions.setTools
(List<ToolDefinition> tools) Set the tools property: The collection of tools to enable for the new assistant.Set the topP property: An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass.