Judges run in two modes: direct scoring against a rubric, and pairwise comparison of two candidate answers. Because the criteria live in the prompt rather than code, the same judge can move between tasks unchanged, which is why judges power much of modern AI agent evals practice inside an AI evaluation harness.
Can you trust an LLM judge out of the box?
Not fully. Judges inherit systematic biases: they favor longer answers, prefer whichever response appears first in a pairwise setup, and grade generously toward their own writing style. Validate any judge against a small set of human labeled examples before trusting its scores, then mitigate with order swapping, small integer scales, and explicit rubrics.
How do teams use judges in production?
Judges score samples of live traffic continuously, catching quality regressions after a prompt or model change. Where a wrong answer carries real cost, pair the judge with confidence gating so low scores route to humans. Reference based judges also flag likely hallucination by checking answers against the sources that were retrieved, and every judge decision should stay auditable against its written criteria.