Uses of Class
org.springframework.ai.anthropic.AnthropicChatOptions.Builder
Packages that use AnthropicChatOptions.Builder
-
Uses of AnthropicChatOptions.Builder in org.springframework.ai.anthropic
Methods in org.springframework.ai.anthropic that return AnthropicChatOptions.BuilderModifier and TypeMethodDescriptionAnthropicChatOptions.Builder.addCitationDocument(CitationDocument document) Add a single citation document.AnthropicChatOptions.Builder.anthropicSkill(AnthropicApi.AnthropicSkill anthropicSkill) Deprecated.AnthropicChatOptions.Builder.anthropicSkill(AnthropicApi.AnthropicSkill anthropicSkill, String version) Deprecated.static AnthropicChatOptions.BuilderAnthropicChatOptions.builder()AnthropicChatOptions.Builder.cacheOptions(AnthropicCacheOptions cacheOptions) AnthropicChatOptions.Builder.citationDocuments(List<CitationDocument> citationDocuments) Set citation documents for the request.AnthropicChatOptions.Builder.citationDocuments(CitationDocument... documents) Set citation documents from variable arguments.AnthropicChatOptions.Builder.customSkill(String skillId) Deprecated.UseAnthropicChatOptions.Builder.skill(String)insteadAnthropicChatOptions.Builder.customSkill(String skillId, String version) Deprecated.AnthropicChatOptions.Builder.httpHeaders(Map<String, String> httpHeaders) AnthropicChatOptions.Builder.internalToolExecutionEnabled(Boolean internalToolExecutionEnabled) AnthropicChatOptions.Builder.metadata(AnthropicApi.ChatCompletionRequest.Metadata metadata) AnthropicChatOptions.Builder.model(AnthropicApi.ChatModel model) AnthropicChatOptions.Builder.outputFormat(AnthropicApi.ChatCompletionRequest.OutputFormat outputFormat) AnthropicChatOptions.Builder.outputSchema(String outputSchema) Add a skill by its ID or name.Add a skill by its ID or name with a specific version.AnthropicChatOptions.Builder.skill(AnthropicApi.AnthropicSkill anthropicSkill) Add a pre-built Anthropic skill using the enum.AnthropicChatOptions.Builder.skill(AnthropicApi.AnthropicSkill anthropicSkill, String version) Add a pre-built Anthropic skill with specific version.AnthropicChatOptions.Builder.skill(AnthropicApi.Skill skill) Add a Skill record directly.AnthropicChatOptions.Builder.skillContainer(AnthropicApi.SkillContainer skillContainer) Set the Skills container for this request.Add multiple skills by their IDs or names.Add multiple skills from a list of IDs or names.AnthropicChatOptions.Builder.stopSequences(List<String> stopSequences) AnthropicChatOptions.Builder.temperature(Double temperature) AnthropicChatOptions.Builder.thinking(AnthropicApi.ChatCompletionRequest.ThinkingConfig thinking) AnthropicChatOptions.Builder.thinking(AnthropicApi.ThinkingType type, Integer budgetTokens) AnthropicChatOptions.Builder.toolCallbacks(List<org.springframework.ai.tool.ToolCallback> toolCallbacks) AnthropicChatOptions.Builder.toolCallbacks(org.springframework.ai.tool.ToolCallback... toolCallbacks) AnthropicChatOptions.Builder.toolChoice(AnthropicApi.ToolChoice toolChoice) AnthropicChatOptions.Builder.toolContext(Map<String, Object> toolContext)
AnthropicChatOptions.Builder.skill(AnthropicApi.AnthropicSkill)instead