Back to blog
2026-07-14

LLM Judges Gave It 85% — The Actual Score Was Zero

LLM Judges Gave It 85% — The Actual Score Was Zero

An AI agent hallucinated an entire research summary. It cited papers it never read, quoted stats it never found, and stitched them into a coherent paragraph. An LLM judge scored that response 0.85 out of 1.0 — high confidence, production-ready. The actual grounded accuracy? Zero. The agent never retrieved a single piece of evidence.

This isn't a hypothetical. This is what researchers documented in a new framework called GroundEval, and it should terrify every enterprise running quality checks on AI outputs using AI itself.

Data visualization dashboard showing metrics and analytics
Data visualization dashboard showing metrics and analytics

The Problem: LLM-as-Judge Is Broken

The entire industry has converged on one quality assurance pattern: use a strong LLM to evaluate the outputs of other LLMs. It's cheap, fast, and scalable. GPT-4o checks the work of GPT-4o-mini. Claude reviews Claude's outputs. Everyone nods.

The problem is that LLM judges can't distinguish between "sounds right" and "is right."

When an AI agent generates a response, there are two separate questions:

  1. Is this response factually grounded in retrieved evidence?
  2. Does this response sound fluent and coherent?

LLM judges are excellent at question #2. They're terrible at question #1. They reward fluency over accuracy. A well-written hallucination scores higher than a clunky but factually grounded response.

GroundEval's researchers tested this systematically. They built a framework that separates deterministic grounding checks (did the agent actually cite sources it retrieved?) from LLM-based quality assessments (does this sound good?). The gap between the two was staggering.

In multiple test scenarios, LLM judges gave scores above 0.80 for responses where the grounding evidence simply didn't exist. The agent made things up. The judge said "looks great."

This is the evaluation equivalent of a smoke detector that goes off when you make toast but stays silent when the house is on fire.

The Solution: Deterministic Grounding Verification

GroundEval proposes something deceptively simple: stop asking LLMs to judge factual grounding. Instead, use deterministic checks that verify whether the evidence chain actually exists.

Here's how it works:

1. Evidence Tracing. The framework tracks every piece of evidence an agent retrieves during its process. Not what it claims to have retrieved — what it actually pulled from databases, search results, or documents.

2. Grounding Score Calculation. Instead of asking "does this sound right?", GroundEval checks: "Can every claim in this response be traced to a specific retrieved document?" It calculates a deterministic grounding score — no LLM inference involved.

3. Separation of Concerns. The final quality score is split into two independent components: grounding (factual traceability) and presentation (fluency, coherence, formatting). An LLM judge can handle the second. The first needs hard verification.

The key insight: you don't need a 100-billion parameter model to check if a citation exists. You need a function that checks if the cited document was actually in the retrieval results. That's a database query, not a neural network.

Magnifying glass examining code on a screen
Magnifying glass examining code on a screen

The Benchmarks: What the Numbers Actually Show

The GroundEval paper presents several critical findings:

  • LLM-as-judge false positive rate: Responses with zero grounding evidence scored 0.82–0.87 average when evaluated by LLM judges alone. That's a passing grade in most production systems.
  • GroundEval detection rate: The deterministic framework caught 94%+ of ungrounded responses that LLM judges missed.
  • Cost comparison: Deterministic grounding checks run at roughly 1/50th the cost of LLM-based evaluation for equivalent throughput.
  • Latency: Grounding verification adds <50ms per response versus 2–5 seconds for an LLM judge call.

Honest caveats:

  • GroundEval focuses specifically on retrieval-augmented agents. If your agent doesn't retrieve external evidence, the grounding framework needs adaptation.
  • Presentation quality still matters — a well-grounded but unreadable response isn't useful. You still need an LLM judge for that piece.
  • The framework assumes structured retrieval pipelines. Agents with opaque tool-use chains may need additional instrumentation.

The Business Impact: You're Making Decisions on Bad Data

Let's translate this to money.

If you're an enterprise running AI agents for customer support, research synthesis, or content generation — and you're using LLM-as-judge for quality control — here's what's happening:

  • 15–25% of your "high confidence" outputs may be hallucinated. That's not a guess. That's GroundEval's measured false positive range for LLM judges.
  • Every hallucinated output that passes QA is a liability. Customer-facing wrong answers. Compliance violations. Bad research informing strategy.
  • Your evaluation costs are 50x higher than necessary. LLM judge calls are expensive. Deterministic checks are database queries.

A mid-size company running 10,000 agent evaluations per day through LLM-as-judge is spending roughly $15,000–30,000/month on evaluation alone. GroundEval's deterministic approach could cut that to $300–600/month while catching more errors.

That's not an efficiency gain. That's fixing a broken system while spending less on it.

The Bottom Line

Stop trusting AI to grade AI on factual accuracy. It can't. Not reliably. Not yet.

The industry adopted LLM-as-judge because it was convenient, not because it was validated. GroundEval proves what many engineers suspected: fluency is not accuracy, and a confident score doesn't mean a correct answer.

If you're building or deploying AI agents, instrument your evaluation pipeline with deterministic grounding checks first. Use LLM judges for presentation quality second. Never let one system handle both — you'll get exactly the result GroundEval documented: a confident 0.85 on a zero.

The evaluation crisis isn't coming. It's already here. You just haven't caught it yet because your judge is as confident as your agent.


Source: GroundEval: LLM Evaluation Framework