Uses of Interface
org.springframework.ai.chat.prompt.ChatOptions.Builder
Packages that use ChatOptions.Builder
-
Uses of ChatOptions.Builder in org.springframework.ai.chat.prompt
Classes in org.springframework.ai.chat.prompt that implement ChatOptions.BuilderModifier and TypeClassDescriptionclassImplementation ofChatOptions.Builderto createDefaultChatOptions.Methods in org.springframework.ai.chat.prompt that return ChatOptions.BuilderModifier and TypeMethodDescriptionstatic ChatOptions.BuilderChatOptions.builder()Creates a newChatOptions.Builderto create the defaultChatOptions.ChatOptions.Builder.frequencyPenalty(Double frequencyPenalty) Builds with the frequency penalty to use for the chat.Builds with the maximum number of tokens to use for the chat.Builds with the model to use for the chat.ChatOptions.Builder.presencePenalty(Double presencePenalty) Builds with the presence penalty to use for the chat.ChatOptions.Builder.stopSequences(List<String> stopSequences) Builds with the stop sequences to use for the chat.ChatOptions.Builder.temperature(Double temperature) Builds with the temperature to use for the chat.Builds with the top K to use for the chat.Builds with the top P to use for the chat. -
Uses of ChatOptions.Builder in org.springframework.ai.model.tool
Subinterfaces of ChatOptions.Builder in org.springframework.ai.model.toolModifier and TypeInterfaceDescriptionstatic interfaceA builder to create aToolCallingChatOptionsinstance.Classes in org.springframework.ai.model.tool that implement ChatOptions.BuilderModifier and TypeClassDescriptionstatic final classDefault implementation ofToolCallingChatOptions.Builder.