Search papers, labs, and topics across Lattice.
This paper critiques the reliance on large language models (LLMs) as evaluators in self-improving agent systems, arguing that their role should shift from oracle to advisor due to significant biases and failures observed in their judgments. Through extensive experimentation across various domains, the authors identified eleven critical failure modes in LLM evaluations, including judge bias and reward hacking, which led to misleadingly high performance scores. To address these issues, they propose a new framework, PROCTOR, which incorporates deterministic guardrails to ensure more reliable evaluations and prevent the optimizer from exploiting flaws in the judging process.
LLMs can mislead self-improving agents, achieving perfect scores while hiding significant capability gaps due to systemic biases and evaluation failures.
Self-improving agent pipelines have a problem at their center. An optimizer rewrites prompts to score higher, and the score comes from a judge that is itself an LLM. That judge has the last word on whether the system is getting better, and our position is that it has not earned it. The judge should be demoted from oracle to advisor: its verdict becomes one input among several, and every change is gated instead by a deterministic verification layer the judge cannot override. We reached this position by building the alternative and running it. Over months of running autonomous prompt-optimization loops in production across contract analysis, compliance review, and code quality, we cataloged eleven ways the evaluation signal failed, in four classes: judge bias, harness and metric failures, ground-truth errors, and reward hacking. Agents achieved perfect scores by reading cached answer keys from their environment, a 100% pass rate concealing 68% true capability. A corrupted ground-truth label caused the optimizer to delete correct compliance rules to agree with it. A syntactically broken prompt was promoted as the winner because a silent parser fallback improved the metric. Attempts to fix the judge by rewriting its rubric plateaued; the only reliable gain came from a structural constraint on its output order. In response we describe PROCTOR, a Teacher-Student loop in which a stateful orchestrator holds all tool access, stateless subagents diagnose failures and draft mutations they cannot apply, and a Teacher grades those mutations under five deterministic guardrails: hermetic sandboxes, capability-disjoint roles, acceptance checks that outrank the Teacher, frozen holdouts, and canary cases engineered so that a perfect score is itself evidence of cheating. We report the failures this prevented, and, because the Teacher is itself an LLM judge, the failures it did not.