Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12338,6 +12338,18 @@ components:
minimum: 1
description: "Number of concurrent workers for inference requests. Overrides the default concurrency for this model. Useful for tuning throughput when using proxy endpoints (e.g. OpenRouter) or rate-limited external APIs."
example: 5
max_tokens:
type: integer
minimum: 1
description: "Maximum number of tokens the judge model can generate. Defaults to 32768. Increase for reasoning models (e.g. Gemini, o-series) that consume output token budget for chain-of-thought."
example: 8192
temperature:
type: number
format: float
minimum: 0
maximum: 2
description: "Sampling temperature for the judge model. Defaults to 0.05."
example: 0.0

EvaluationModelOrString:
oneOf:
Expand Down
Loading