Class MistralAiChatRequestParameters
java.lang.Object
dev.langchain4j.model.chat.request.DefaultChatRequestParameters
dev.langchain4j.model.mistralai.MistralAiChatRequestParameters
- All Implemented Interfaces:
ChatRequestParameters
Mistral AI specific
ChatRequestParameters.
In addition to the common ChatRequestParameters, this class exposes the Mistral AI specific
options (safePrompt, randomSeed, sendThinking, returnThinking) so that
they can be overridden per ChatRequest, not only at model
build time.
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a newChatRequestParametersby combining the current parameters with the specified ones.booleaninthashCode()Creates a newChatRequestParametersby combining the current parameters with the specified ones.toString()Methods inherited from class DefaultChatRequestParameters
frequencyPenalty, maxOutputTokens, modelName, presencePenalty, responseFormat, stopSequences, temperature, toolChoice, toolSpecifications, topK, topP
-
Field Details
-
EMPTY
-
-
Method Details
-
safePrompt
- Returns:
- whether to inject a safety prompt before all conversations (Mistral
safe_prompt).
-
randomSeed
- Returns:
- the seed to use for random sampling (Mistral
random_seed).
-
sendThinking
- Returns:
- whether to send thinking/reasoning text to the LLM in follow-up requests.
-
returnThinking
- Returns:
- whether to parse and return the thinking/reasoning text from the API response
inside
AiMessage.thinking().
-
overrideWith
Description copied from interface:ChatRequestParametersCreates a newChatRequestParametersby combining the current parameters with the specified ones. Values from the specified parameters override values from the current parameters when there is overlap. Neither the current nor the specifiedChatRequestParametersobjects are modified.Example:
Current parameters: temperature = 1.0 maxOutputTokens = 100 Specified parameters: temperature = 0.5 modelName = my-model Result: temperature = 0.5 // Overridden from specified maxOutputTokens = 100 // Preserved from current modelName = my-model // Added from specified
- Specified by:
overrideWithin interfaceChatRequestParameters- Overrides:
overrideWithin classDefaultChatRequestParameters- Parameters:
that- the parameters whose values will override the current ones- Returns:
- a new
ChatRequestParametersinstance combining both sets of parameters
-
defaultedBy
Description copied from interface:ChatRequestParametersCreates a newChatRequestParametersby combining the current parameters with the specified ones. Values from the current parameters take precedence over values from the specified parameters when there is overlap. Neither the current nor the specifiedChatRequestParametersobjects are modified.Example:
Current parameters: temperature = 1.0 maxOutputTokens = 100 Specified parameters: temperature = 0.5 modelName = my-model Result: temperature = 1.0 // Preserved from current maxOutputTokens = 100 // Preserved from current modelName = my-model // Added from specified
- Specified by:
defaultedByin interfaceChatRequestParameters- Overrides:
defaultedByin classDefaultChatRequestParameters- Parameters:
that- the parameters whose values will be used as a default for the current ones- Returns:
- a new
ChatRequestParametersinstance combining both sets of parameters
-
equals
- Overrides:
equalsin classDefaultChatRequestParameters
-
hashCode
public int hashCode()- Overrides:
hashCodein classDefaultChatRequestParameters
-
toString
- Overrides:
toStringin classDefaultChatRequestParameters
-
toBuilder
-
builder
-