Class OpenAiChatRequestParameters
java.lang.Object
dev.langchain4j.model.chat.request.DefaultChatRequestParameters
dev.langchain4j.model.openai.OpenAiChatRequestParameters
- All Implemented Interfaces:
ChatRequestParameters
-
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()metadata()Creates a newChatRequestParametersby combining the current parameters with the specified ones.seed()store()toString()user()Methods inherited from class DefaultChatRequestParameters
frequencyPenalty, maxOutputTokens, modelName, presencePenalty, responseFormat, stopSequences, temperature, toolChoice, toolSpecifications, topK, topP
-
Field Details
-
EMPTY
-
-
Method Details
-
maxCompletionTokens
-
logitBias
-
parallelToolCalls
-
seed
-
user
-
store
-
metadata
-
serviceTier
-
reasoningEffort
-
customParameters
-
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
-
builder
-