OpenResponsesEvaluatorModelConfig¶
Structure Class¶
OpenResponsesEvaluatorModelConfig
dataclass
¶
The configuration for using models served through the OpenResponses API in evaluator assessments, including model selection and inference parameters.
Attributes¶
max_output_tokens
class-attribute
instance-attribute
¶
max_output_tokens: int | None = None
The maximum number of tokens to generate in the model response, including visible output and reasoning tokens.
reasoning
class-attribute
instance-attribute
¶
reasoning: ReasoningConfiguration | None = None
The reasoning configuration for reasoning models. Non-reasoning models ignore this configuration.
temperature
class-attribute
instance-attribute
¶
temperature: float | None = None
The temperature value that controls randomness in the model's responses. Lower values produce more deterministic outputs.
top_p
class-attribute
instance-attribute
¶
top_p: float | None = None
The top-p sampling parameter that controls the diversity of the model's responses by limiting the cumulative probability of token choices.