INQUIRING LINE

Can evaluators investigate dependencies without accumulating mistakes over time?

This explores whether AI evaluators that actively dig into a task — collecting evidence, tracing dependencies, checking intermediate steps — can do so over long investigations without their own small mistakes compounding into a corrupted verdict.


This explores whether AI evaluators that actively dig into a task — collecting evidence and chasing dependencies — can sustain that investigation without their errors snowballing. The corpus has a sharp answer hiding in one finding: the investigation pays off, but the memory of it is where things rot. When evaluation is restructured from a single LLM judging a final answer into an eight-module agent that gathers evidence dynamically, judge error drops by roughly 100× (Can agents evaluate AI outputs more reliably than language models?). But the same study found the *memory* module cascaded errors — the very component that lets the evaluator carry context across an investigation became the channel through which mistakes accumulated. So the answer is conditional: yes, evaluators can investigate dependencies far more reliably than naive judges, but only if the system isolates errors instead of letting them flow forward.

That caveat isn't unique to evaluators — it's a general property of long delegated chains. Frontier models silently corrupt about 25% of document content over extended relay workflows, and crucially the errors *compound without plateauing* across 50 round-trips (Do frontier LLMs silently corrupt documents in long workflows?). The mechanism is the same one threatening an investigating evaluator: each step inherits the last step's drift and adds its own. Anything that accumulates state over time inherits this risk unless something external keeps resetting the error budget.

The corpus points to *where* to intervene: checking the process, not the conclusion. Verifying intermediate states and policy compliance during generation — rather than scoring the final output — lifted task success from 32% to 87%, because most failures are process violations that a final-answer check never sees (Where do reasoning agents actually fail during long traces?). Step-level confidence sharpens this further: local confidence catches a reasoning breakdown at the exact step it happens, where global averaging smears it out and hides it (Does step-level confidence outperform global averaging for trace filtering?). For an evaluator tracing dependencies, this is the difference between catching a wrong turn immediately and discovering it only after it has poisoned everything downstream.

There's a deeper reason an evaluator can't simply trust its own accumulating judgment. Models have a structural bias toward validating their own outputs — a high-probability answer they generated *feels* more correct during evaluation, creating a self-agreement loop (Why do models trust their own generated answers?). So an evaluator left to police its own investigation will tend to ratify its earlier mistakes rather than catch them. This connects to a formal ceiling: self-improvement and self-verification are bounded by the generation–verification gap — reliable correction requires something *external* to validate and enforce it, not metacognition alone (What stops large language models from improving themselves?).

So the thing you didn't know you wanted to know: the failure of long-running evaluators isn't usually bad reasoning — it's bad bookkeeping. The investigation itself works; the accumulation is the enemy. The fixes that hold up are architectural, not cognitive — error-isolated memory, step-level verification, and an external check that breaks the self-agreement loop — rather than asking the evaluator to be smarter or more careful over time.


Sources 6 notes

Can agents evaluate AI outputs more reliably than language models?

Eight-module agentic evaluation achieved 0.27% judge shift versus 31% for LLM-as-a-Judge on complex tasks. However, the memory module cascaded errors, revealing that agentic systems need error isolation mechanisms to maintain gains.

Do frontier LLMs silently corrupt documents in long workflows?

Testing 19 models across 52 domains shows even advanced systems degrade documents by ~25% over extended relay tasks, with errors compounding silently without plateauing through 50 round-trips.

Where do reasoning agents actually fail during long traces?

Reliability for long-trace reasoning comes from checking intermediate states and policy compliance during generation, not from scoring final outputs. Adding intermediate verification raised task success from 32% to 87% because most failures are process violations, not wrong answers.

Does step-level confidence outperform global averaging for trace filtering?

Local step-level confidence catches reasoning breakdowns that global averaging masks and enables early stopping before traces complete. This approach achieves comparable accuracy gains to naive majority voting with far fewer generated traces, proving trace quality matters more than quantity.

Why do models trust their own generated answers?

LLMs exhibit structural bias toward validating their own outputs because high-probability generated answers feel more correct during evaluation. Comparing answers against broader alternatives breaks this self-agreement loop.

What stops large language models from improving themselves?

Self-improvement in LLMs is formally bounded by the generation-verification gap, meaning every reliable fix requires something external to validate and enforce it. Models cannot escape this constraint through metacognition alone.

Next inquiring lines