Skip to content

Bedrock Agentcore Control  >  Structures  >  OpenResponsesEvaluatorModelConfig

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.

model_id instance-attribute
model_id: str

The identifier of the model to use for evaluation.

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.