Package org.springframework.ai.minimax
Class MiniMaxChatOptions
java.lang.Object
org.springframework.ai.minimax.MiniMaxChatOptions
- All Implemented Interfaces:
ChatOptions
,FunctionCallingOptions
,ModelOptions
MiniMaxChatOptions represents the options for performing chat completion using the
MiniMax API. It provides methods to set and retrieve various options like model,
frequency penalty, max tokens, etc.
- Since:
- 1.0.0 M1
- Author:
- Geng Rong, Thomas Vitale
- See Also:
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic MiniMaxChatOptions.Builder
builder()
copy()
boolean
static MiniMaxChatOptions
fromOptions
(MiniMaxChatOptions fromOptions) Function Callbacks to be registered with the ChatModel.getModel()
getN()
getSeed()
getStop()
getTools()
getTopK()
getTopP()
int
hashCode()
void
setFrequencyPenalty
(Double frequencyPenalty) void
setFunctionCallbacks
(List<FunctionCallback> functionCallbacks) Set the Function Callbacks to be registered with the ChatModel.void
setFunctions
(Set<String> functionNames) Set the list of function names from the ChatModel registry to be used in the next chat completion requests.void
setMaskSensitiveInfo
(Boolean maskSensitiveInfo) void
setMaxTokens
(Integer maxTokens) void
void
void
setPresencePenalty
(Double presencePenalty) void
setProxyToolCalls
(Boolean proxyToolCalls) void
setResponseFormat
(MiniMaxApi.ChatCompletionRequest.ResponseFormat responseFormat) void
void
void
setStopSequences
(List<String> stopSequences) void
setTemperature
(Double temperature) void
setToolChoice
(String toolChoice) void
setToolContext
(Map<String, Object> toolContext) void
setTools
(List<MiniMaxApi.FunctionTool> tools) void
-
Constructor Details
-
MiniMaxChatOptions
public MiniMaxChatOptions()
-
-
Method Details
-
builder
- Returns:
- Returns FunctionCallingOptionsBuilder to create a new instance of FunctionCallingOptions.
-
getModel
- Specified by:
getModel
in interfaceChatOptions
-
setModel
-
getFrequencyPenalty
- Specified by:
getFrequencyPenalty
in interfaceChatOptions
-
setFrequencyPenalty
-
getMaxTokens
- Specified by:
getMaxTokens
in interfaceChatOptions
-
setMaxTokens
-
getN
-
setN
-
getPresencePenalty
- Specified by:
getPresencePenalty
in interfaceChatOptions
-
setPresencePenalty
-
getResponseFormat
-
setResponseFormat
-
getSeed
-
setSeed
-
getStopSequences
- Specified by:
getStopSequences
in interfaceChatOptions
-
setStopSequences
-
getStop
-
setStop
-
getTemperature
- Specified by:
getTemperature
in interfaceChatOptions
-
setTemperature
-
getTopP
- Specified by:
getTopP
in interfaceChatOptions
-
setTopP
-
getMaskSensitiveInfo
-
setMaskSensitiveInfo
-
getTools
-
setTools
-
getToolChoice
-
setToolChoice
-
getFunctionCallbacks
Description copied from interface:FunctionCallingOptions
Function Callbacks to be registered with the ChatModel. For Prompt Options the functionCallbacks are automatically enabled for the duration of the prompt execution. For Default Options the FunctionCallbacks are registered but disabled by default. You have to use "functions" property to list the function names from the ChatModel registry to be used in the chat completion requests.- Specified by:
getFunctionCallbacks
in interfaceFunctionCallingOptions
- Returns:
- Return the Function Callbacks to be registered with the ChatModel.
-
setFunctionCallbacks
Description copied from interface:FunctionCallingOptions
Set the Function Callbacks to be registered with the ChatModel.- Specified by:
setFunctionCallbacks
in interfaceFunctionCallingOptions
- Parameters:
functionCallbacks
- the Function Callbacks to be registered with the ChatModel.
-
getFunctions
- Specified by:
getFunctions
in interfaceFunctionCallingOptions
- Returns:
- List of function names from the ChatModel registry to be used in the next chat completion requests.
-
setFunctions
Description copied from interface:FunctionCallingOptions
Set the list of function names from the ChatModel registry to be used in the next chat completion requests.- Specified by:
setFunctions
in interfaceFunctionCallingOptions
- Parameters:
functionNames
- the list of function names from the ChatModel registry to be used in the next chat completion requests.
-
getTopK
- Specified by:
getTopK
in interfaceChatOptions
-
getProxyToolCalls
- Specified by:
getProxyToolCalls
in interfaceFunctionCallingOptions
-
setProxyToolCalls
- Specified by:
setProxyToolCalls
in interfaceFunctionCallingOptions
-
getToolContext
- Specified by:
getToolContext
in interfaceFunctionCallingOptions
-
setToolContext
- Specified by:
setToolContext
in interfaceFunctionCallingOptions
-
hashCode
public int hashCode() -
equals
-
copy
- Specified by:
copy
in interfaceChatOptions
-
fromOptions
-