Interface ChatModelConfig
public interface ChatModelConfig
-
Method Summary
Modifier and TypeMethodDescriptionNumber between -2.0 and 2.0.Whether chat model requests should be loggedWhether chat model responses should be loggedAn upper bound for the number of tokens that can be generated for a completion, including visible output tokens and reasoning tokens.Deprecated.Model name to useNumber between -2.0 and 2.0.Constrains effort on reasoning for reasoning models.The response format the model should use.Specifies the processing type used for serving the request.stop()The list of stop words to use.Whether responses follow JSON Schema for Structured OutputsWhat sampling temperature to use, with values between 0 and 2.topP()An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with topP probability mass. 0.1 means only the tokens comprising the top 10% probability mass are considered.
-
Method Details
-
modelName
Model name to use -
temperature
What sampling temperature to use, with values between 0 and 2. Higher values means the model will take more risks. A value of 0.9 is good for more creative applications, while 0 (argmax sampling) is good for ones with a well-defined answer. It is recommended to alter this or topP, but not both. -
topP
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with topP probability mass. 0.1 means only the tokens comprising the top 10% probability mass are considered. It is recommended to alter this or temperature, but not both. -
maxTokens
Deprecated.For newer OpenAI models, usemaxCompletionTokensinsteadThe maximum number of tokens to generate in the completion. The token count of your prompt plus max_tokens can't exceed the model's context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). -
maxCompletionTokens
-
presencePenalty
Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. -
frequencyPenalty
Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. -
logRequests
-
logResponses
-
responseFormat
-
strictJsonSchema
-
stop
-
reasoningEffort
Constrains effort on reasoning for reasoning models. Currently supported values areminimal,low,medium, andhigh. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.Note: The
gpt-5-promodel defaults to (and only supports) high reasoning effort. -
serviceTier
Specifies the processing type used for serving the request.If set to
auto, then the request will be processed with the service tier configured in the Project settings. If set todefault, then the request will be processed with the standard pricing and performance for the selected model. If set toflexorpriority, then the request will be processed with the corresponding service tier. When not set, the default behavior isauto.When the service tier parameter is set, the response body will include the
service_tiervalue based on the processing mode actually used to serve the request. This response value may be different from the value set in the parameter.
-
maxCompletionTokensinstead