Uses of Class
com.azure.ai.openai.assistants.models.UpdateAssistantOptions
Packages that use UpdateAssistantOptions
Package
Description
Package containing the classes for Assistants.
Package containing the data models for Assistants.
-
Uses of UpdateAssistantOptions in com.azure.ai.openai.assistants
Methods in com.azure.ai.openai.assistants with parameters of type UpdateAssistantOptionsModifier and TypeMethodDescriptionAssistantsAsyncClient.updateAssistant
(String assistantId, UpdateAssistantOptions updateAssistantOptions) Modifies an existing assistant.AssistantsClient.updateAssistant
(String assistantId, UpdateAssistantOptions updateAssistantOptions) Modifies an existing assistant. -
Uses of UpdateAssistantOptions in com.azure.ai.openai.assistants.models
Methods in com.azure.ai.openai.assistants.models that return UpdateAssistantOptionsModifier and TypeMethodDescriptionstatic UpdateAssistantOptions
UpdateAssistantOptions.fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of UpdateAssistantOptions from the JsonReader.UpdateAssistantOptions.setDescription
(String description) Set the description property: The modified description for the assistant to use.UpdateAssistantOptions.setInstructions
(String instructions) Set the instructions property: The modified system instructions for the new assistant to use.UpdateAssistantOptions.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 model property: The ID of the model to use.Set the name property: The modified name for the assistant to use.UpdateAssistantOptions.setResponseFormat
(AssistantsApiResponseFormatOption responseFormat) Set the responseFormat property: The response format of the tool calls used by this assistant.UpdateAssistantOptions.setTemperature
(Double temperature) Set the temperature property: What sampling temperature to use, between 0 and 2.UpdateAssistantOptions.setToolResources
(UpdateToolResourcesOptions toolResources) Set the toolResources property: A set of resources that are used by the assistant's tools.UpdateAssistantOptions.setTools
(List<ToolDefinition> tools) Set the tools property: The modified collection of tools to enable for the 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.