Package org.springframework.ai.minimax
Class MiniMaxChatModel
java.lang.Object
org.springframework.ai.minimax.MiniMaxChatModel
- All Implemented Interfaces:
ChatModel
,StreamingChatModel
,Model<Prompt,
,ChatResponse> StreamingModel<Prompt,
ChatResponse>
- Since:
- 1.0.0 M1
- Author:
- Geng Rong, Alexandros Pappas, Ilayaperumal Gopinathan
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal org.springframework.retry.support.RetryTemplate
The retry template used to retry the MiniMax API calls. -
Constructor Summary
ConstructorsConstructorDescriptionMiniMaxChatModel
(MiniMaxApi miniMaxApi) Creates an instance of the MiniMaxChatModel.MiniMaxChatModel
(MiniMaxApi miniMaxApi, MiniMaxChatOptions options) Initializes an instance of the MiniMaxChatModel.MiniMaxChatModel
(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager) Initializes a new instance of the MiniMaxChatModel.MiniMaxChatModel
(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager, org.springframework.retry.support.RetryTemplate retryTemplate) Initializes a new instance of the MiniMaxChatModel.MiniMaxChatModel
(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager, org.springframework.retry.support.RetryTemplate retryTemplate, io.micrometer.observation.ObservationRegistry observationRegistry, ToolExecutionEligibilityPredicate toolExecutionEligibilityPredicate) Initializes a new instance of the MiniMaxChatModel. -
Method Summary
Modifier and TypeMethodDescriptionExecutes a method call to the AI model.void
setObservationConvention
(ChatModelObservationConvention observationConvention) reactor.core.publisher.Flux<ChatResponse>
Executes a method call to the AI model.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.ai.chat.model.StreamingChatModel
stream, stream
-
Field Details
-
retryTemplate
public final org.springframework.retry.support.RetryTemplate retryTemplateThe retry template used to retry the MiniMax API calls.
-
-
Constructor Details
-
MiniMaxChatModel
Creates an instance of the MiniMaxChatModel.- Parameters:
miniMaxApi
- The MiniMaxApi instance to be used for interacting with the MiniMax Chat API.- Throws:
IllegalArgumentException
- if MiniMaxApi is null
-
MiniMaxChatModel
Initializes an instance of the MiniMaxChatModel.- Parameters:
miniMaxApi
- The MiniMaxApi instance to be used for interacting with the MiniMax Chat API.options
- The MiniMaxChatOptions to configure the chat model.
-
MiniMaxChatModel
public MiniMaxChatModel(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager) Initializes a new instance of the MiniMaxChatModel.- Parameters:
miniMaxApi
- The MiniMaxApi instance to be used for interacting with the MiniMax Chat API.options
- The MiniMaxChatOptions to configure the chat model.toolCallingManager
- The tool calling manager.
-
MiniMaxChatModel
public MiniMaxChatModel(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager, org.springframework.retry.support.RetryTemplate retryTemplate) Initializes a new instance of the MiniMaxChatModel.- Parameters:
miniMaxApi
- The MiniMaxApi instance to be used for interacting with the MiniMax Chat API.options
- The MiniMaxChatOptions to configure the chat model.toolCallingManager
- The tool calling manager.retryTemplate
- The retry template.
-
MiniMaxChatModel
public MiniMaxChatModel(MiniMaxApi miniMaxApi, MiniMaxChatOptions options, ToolCallingManager toolCallingManager, org.springframework.retry.support.RetryTemplate retryTemplate, io.micrometer.observation.ObservationRegistry observationRegistry, ToolExecutionEligibilityPredicate toolExecutionEligibilityPredicate) Initializes a new instance of the MiniMaxChatModel.- Parameters:
miniMaxApi
- The MiniMaxApi instance to be used for interacting with the MiniMax Chat API.options
- The MiniMaxChatOptions to configure the chat model.retryTemplate
- The retry template.observationRegistry
- The ObservationRegistry used for instrumentation.toolExecutionEligibilityPredicate
- The Tool
-
-
Method Details
-
call
Description copied from interface:Model
Executes a method call to the AI model. -
getDefaultOptions
- Specified by:
getDefaultOptions
in interfaceChatModel
-
stream
Description copied from interface:StreamingModel
Executes a method call to the AI model.- Specified by:
stream
in interfaceChatModel
- Specified by:
stream
in interfaceStreamingChatModel
- Specified by:
stream
in interfaceStreamingModel<Prompt,
ChatResponse> - Parameters:
prompt
- the request object to be sent to the AI model- Returns:
- the streaming response from the AI model
-
setObservationConvention
-