Recipe: Score multilingual outputs
Recipe — score outputs in multiple languages with an LLM judge.
Last updated
Was this helpful?
Recipe — score outputs in multiple languages with an LLM judge.
When to use: product supports multiple languages; deterministic scoring is hard across them.
Build judge with explicit "respond in same language as input" requirement.
Use a multilingual-strong judging model.
GEPA-optimize against labels in each language.
judge = client.judges.create(
name="multilingual-helpfulness",
evaluation_goal="Rate helpfulness. The response must be in the SAME language as the input. Penalize language mismatch.",
judging_model="anthropic/claude-opus-4-7"
)Last updated
Was this helpful?
Was this helpful?