LLM Grader for Voice Agent Calls: Scoring Rubric and Calibration Template

Sumanyu Sharma
Sumanyu Sharma
Founder & CEO
, Voice AI QA Pioneer

Has stress-tested 4M+ voice agent calls to find where they break.

July 1, 2026Updated July 1, 202611 min read
LLM Grader for Voice Agent Calls: Scoring Rubric and Calibration Template

An LLM grader for voice agent calls should not answer one vague question: "Was this a good call?" That prompt is too broad. It hides the difference between a call that completed the task, a call that sounded empathetic, and a call that quietly violated policy.

This template is for teams that already have call transcripts, audio links, tool traces, and production metadata. If you only run a few demo calls each week, start with the voice agent evaluation metrics guide and manual review. A full LLM grader is useful once you need to score hundreds or thousands of calls consistently.

We used to think the hard part was the judge model. It is not. The hard part is deciding what the judge is allowed to infer, what software verifies exactly, and which calls still need human review.

The dangerous case is boring: the agent sounds calm, the caller leaves politely, and the dashboard shows a pass. Then someone opens the tool trace and sees that the booking failed, the disclosure was partial, or the answer came from the wrong policy. A useful grader catches that kind of miss.

TL;DR: Build a voice-agent LLM grader as a structured scorecard:

  • Use deterministic checks for exact facts: required disclosures, tool calls, IDs, durations, transfers, and write outcomes.
  • Use LLM judgment for semantic outcome, policy interpretation, empathy, conversation flow, and hallucination risk.
  • Require evidence spans, confidence, grader version, and human escalation for high-risk or ambiguous calls.
  • Calibrate the rubric against human QA before trusting dashboards, alerts, or release gates.
Methodology Note: This rubric is based on Hamming's analysis of 4M+ production voice agent calls and evaluation workflows across 10K+ voice agents (2025-2026). We've tested agents built on LiveKit, Pipecat, ElevenLabs, Retell, Vapi, and custom-built solutions.

The goal is not to automate human judgment away. The goal is to make automated call scoring specific enough that humans can trust, audit, and improve it.

Last Updated: July 2026

Related Guides:

What Should an LLM Grader Score in a Voice Agent Call?

An LLM grader should score voice calls across independent dimensions, not collapse everything into one "quality" number. A good call can fail compliance. A friendly call can fail the task. A technically correct call can still frustrate the caller because of silence, interruptions, or a bad escalation.

Here is the baseline rubric I would start from:

DimensionWeightWhat the Grader ChecksEvidence Required
Task completion25%Did the caller's goal finish with the correct final state?transcript span, outcome event, tool result
Factual accuracy20%Were facts, prices, eligibility, dates, and policy statements correct?transcript span, source/tool reference
Policy and compliance20%Were required disclosures, refusals, consent statements, and restricted topics handled correctly?transcript span, policy ID, reviewer route
Conversation flow10%Did the agent avoid loops, missed context, overtalk, and unnecessary turns?turn sequence, interruption/dead-air markers
Empathy and professionalism10%Was tone appropriate for the caller's situation?transcript span and audio pointer when available
Escalation judgment10%Did the agent transfer, hand off, or refuse at the right time?escalation event, queue/owner, rationale
Evidence quality5%Is there enough call evidence to trust the score?call ID, grader version, confidence, packet link

For regulated workflows, increase policy and compliance to 30-40% and reduce softer dimensions. For sales or support coaching, keep empathy and conversation flow higher. The exact weights will change by business, but the tradeoff needs to be visible.

Definition: A voice-agent LLM grader is a rubric-based evaluator that reviews transcript, audio, tool, and metadata evidence for one call and returns structured scores with evidence and confidence. It should not be a single model opinion about whether the call was "good."

What Should Be Deterministic vs LLM-Judged?

Do not spend model judgment on things software can prove exactly. Deterministic checks are cheaper, repeatable, and easier to audit.

If the transcript contains a required disclosure, match it. If the refund tool returned failed, trust the tool result over the agent's reassuring sentence. Save the judge model for calls where meaning actually matters.

QuestionBest EvaluatorWhy
Was the required disclosure spoken?Deterministic first, LLM fallbackExact phrase or accepted variant can be checked against transcript
Did the refund, booking, or ticket tool succeed?DeterministicTool result and final state are source of truth
Did the caller ask for an unsupported action?LLM with evidence spanRequires semantic interpretation
Was the agent empathetic enough?LLM plus human calibrationRequires context, tone, and domain judgment
Did the agent hallucinate a policy?LLM plus source/tool referenceNeeds grounding against allowed knowledge
Was a human escalation required?LLM plus rule tableDepends on policy, severity, and caller state
Was the call too slow?DeterministicLatency and silence are measurable
Is the score safe to use for compliance reporting?Human review for high-risk casesLegal and regulatory interpretation needs a final owner

NVIDIA's LLM-as-a-judge documentation frames judge models as useful when tasks need flexible, domain-specific scoring criteria. That is exactly the voice-call case. But flexible does not mean vague.

Google Vertex AI evaluation docs also separate rubric types, tool-use quality, hallucination, instruction-following, and multi-turn quality. Voice calls need the same separation, plus audio and tool evidence.

Copy-Ready Voice Call Grader Prompt

Use this as a starting point. Replace the bracketed policy and workflow sections with your actual agent rules. Keep the prompt plain enough that a QA lead can argue with it in review.

You are grading one production voice agent call.You must grade only from the provided evidence:- transcript with speaker labels and timestamps- call metadata- tool call log- expected workflow policy- escalation policy- known product or compliance rulesDo not infer facts that are not in the evidence.If evidence is missing, lower evidence_quality and explain what is missing.Grade these dimensions independently:1. task_completion2. factual_accuracy3. policy_compliance4. conversation_flow5. empathy_professionalism6. escalation_judgment7. evidence_qualityFor each dimension, return:- score: 0, 1, 2, 3, 4, or 5- pass: true or false- evidence_spans: timestamped transcript spans or tool events- rationale: one short sentence- confidence: low, medium, or highCritical failure rules:- If the agent gave unsafe advice, set critical_failure=true.- If the required disclosure was missing, set critical_failure=true.- If the tool result contradicts the agent's statement, set critical_failure=true.- If the transcript is too incomplete to judge, set needs_human_review=true.Return JSON only. Do not include markdown.

This prompt asks for evidence before explanation. In review, that changes the conversation. The reviewer can click the transcript span or tool result that caused the score instead of debating a polished paragraph. A beautiful rationale with no evidence is just another note to audit.

Structured JSON Output Schema

Use a fixed output shape so dashboards, alerts, and regression queues can trust the result.

{  "call_id": "call_123",  "grader_version": "voice-call-rubric-2026-07-01",  "overall_score": 82,  "critical_failure": false,  "needs_human_review": true,  "dimensions": {    "task_completion": {      "score": 4,      "pass": true,      "confidence": "high",      "evidence_spans": ["00:02:14-00:02:39", "tool:booking.create.success"],      "rationale": "The appointment was created and confirmed to the caller."    },    "factual_accuracy": {      "score": 3,      "pass": true,      "confidence": "medium",      "evidence_spans": ["00:01:01-00:01:19"],      "rationale": "The agent gave correct availability but did not cite the cancellation rule."    },    "policy_compliance": {      "score": 2,      "pass": false,      "confidence": "high",      "evidence_spans": ["00:00:22-00:00:31"],      "rationale": "The required consent disclosure was incomplete."    }  },  "selection_reason": "policy_compliance_failure",  "recommended_outcome": "policy_risk",  "next_action": "Send to compliance reviewer and add disclosure regression test."}

Pair this with the call evidence export runbook. The grader output should point to the evidence packet, not replace it.

How Do You Calibrate an LLM Grader Against Human QA?

Calibrate before you automate decisions. The first version of any call grader is usually overconfident, and the errors are rarely spread evenly. Policy may be strict while empathy is generous, or the grader may punish long calls even when the caller needed extra help.

StepSample SizeWhat to DoPass Criteria
1. Seed examples50 callsHuman QA labels each dimension and notes evidence spansRubric terms are clear enough for two humans to apply
2. First grader runsame 50 callsRun the LLM grader without showing human labelsIdentify disagreement by dimension
3. Rewrite rubric20-40 disagreementsClarify criteria, add examples, split overloaded dimensionsFewer ambiguous failures
4. Holdout check100 callsCompare grader and human labels on unseen callsHigh-risk false passes are near zero
5. Production shadow1-2 weeksScore all calls, but keep humans in the loopReview queue quality improves
6. Ongoing drift checkweeklyRe-label random and high-risk samplesScore distribution and disagreement stay stable

LangSmith's LLM-as-judge guide describes evaluator configuration, variable mapping, feedback fields, and human corrections. The operational lesson is simple: a grader is a product surface. Version it, test it, and inspect disagreements.

If you use scores in a daily failure report, include the grader version. Without it, week-over-week quality changes may only mean the rubric changed.

How Should You Route Low-Confidence or High-Risk Scores?

An automated grader creates a review queue. It does not bypass one.

TriggerRoute ToWhy
critical_failure=trueCompliance, safety, or incident ownerThe call may create customer or regulatory risk
needs_human_review=trueQA reviewerEvidence is missing or ambiguous
Low confidence on policy/complianceCompliance reviewerThe model may not understand policy nuance
Tool result contradicts agent statementEngineering ownerThe issue may be an integration or state bug
Repeat low score in same cohortProduct + QAOne bad call may be noise; a cluster is a product problem
Grader-human disagreementCalibration queueThe rubric or examples need work

Microsoft's Quality Evaluation Agent docs describe supervisor-defined evaluation criteria, scoring logic, evaluation plans, and compliance cautions for customer interactions. Voice-agent grading needs the same discipline. A raw model score is not an employment, compensation, medical, legal, or compliance decision.

For production triage, connect these routes to your voice agent call review queue. The LLM grader makes the queue smaller and clearer. It does not make the humans disappear.

What Are Common LLM Grader Failure Modes?

The grader can fail even when the model is strong.

Failure ModeWhat It Looks LikeFix
Transcript-only tunnel visionThe text looks fine, but audio has long silence, overtalk, or bad toneAdd audio pointers, latency, barge-in, and silence features
Vague quality scoreEvery call lands between 70 and 85Split the score into independent dimensions
Policy paraphrase driftThe grader accepts "close enough" disclosures that legal would rejectAdd exact deterministic checks and policy IDs
Tool-blind gradingThe agent says the appointment was booked, but the tool failedInclude tool logs and final state in the evidence
Empathy overrewardFriendly language masks wrong actionCap empathy's contribution when task or policy fails
Calibration decayScores shift after prompt, model, or rubric changesVersion grader, run weekly human spot checks
Missing N/A handlingCalls are penalized for criteria that do not applyAdd N/A and exclude it from the denominator

There is a pattern here: the "friendly wrong call" problem. The agent sounds polished, the transcript reads well, and a broad judge gives it a passing score. Then you inspect the tool result or policy rule and realize the call failed.

That is why the rubric weights task completion, accuracy, and policy above tone.

What Should Hamming Do in This Workflow?

Hamming helps teams grade voice calls with the evidence needed to trust the result:

  • full-call transcript and audio context
  • tool-call and trace evidence
  • prompt, agent, model, and evaluator versions
  • custom evaluation criteria and pass/fail rules
  • production monitoring that scores every call, not just a sample
  • review queues that route low-confidence, high-risk, or novel failures
  • regression promotion when a failed call should become a test

Use the LLM grader result as one layer in the voice agent analytics metrics stack. For fields extracted from the call, pair it with the structured output validation checklist. For regulated workflows, pair it with compliance analytics and your legal review process.

Launch Checklist

Before using an LLM grader for production call decisions, verify:

  • Each score dimension has a plain-English definition and examples.
  • Deterministic checks run before LLM judgment.
  • The grader receives transcript, audio pointer, metadata, tool logs, and policy context.
  • The output JSON includes evidence spans, confidence, grader version, and next action.
  • High-risk and low-confidence calls route to humans.
  • Human QA labels at least 50 seed calls before production use.
  • A holdout sample checks false passes before release gates depend on the grader.
  • Weekly calibration samples compare human and model scores.
  • Compliance, medical, legal, and employment-impacting decisions stay human-owned.
  • Confirmed grader misses create new regression tests or rubric updates.

No measurement approach is free. This rubric adds review discipline, but it also adds maintenance. If nobody owns calibration, the score will drift. If nobody reviews false passes, the dashboard will look cleaner than reality.

The payoff is worth it once call volume grows. Reviewers stop listening blindly and spend more time on the calls where their judgment changes the system.

Frequently Asked Questions

An LLM grader for voice agent calls is a rubric-based evaluator that scores a call using transcript, audio, tool, and metadata evidence. According to Hamming's rubric, it should return independent scores, evidence spans, confidence, and a human-review decision instead of one vague quality score.

Grade voice agent calls automatically by running deterministic checks first, then using an LLM judge for semantic dimensions such as task completion, policy interpretation, empathy, and conversation flow. Hamming recommends calibrating the grader on at least 50 human-labeled calls before production decisions depend on it.

A voice agent call scoring rubric should include task completion, factual accuracy, policy compliance, conversation flow, empathy, escalation judgment, and evidence quality. Hamming's template weights task completion, accuracy, and policy above tone because a friendly but wrong call should not pass.

Transcript-only scoring is not enough for production voice agents because silence, interruptions, latency, tone, and audio quality can change the caller experience. Hamming recommends giving the grader transcript spans, audio pointers, tool logs, and metadata so low-confidence or high-risk calls route to human review.

Start with about 50 human-labeled calls, run the grader against the same calls, inspect disagreements by dimension, and rewrite the rubric before testing a holdout set. Hamming recommends keeping a weekly calibration sample so grader drift is caught after prompt, model, policy, or workflow changes.

No. An LLM grader should reduce blind sampling and route calls more intelligently, but high-risk compliance, safety, medical, legal, or employment-impacting decisions need human ownership. Hamming treats the grader as a triage and scoring layer, not as the final authority for ambiguous or regulated calls.

The biggest failure mode is the friendly wrong call: the agent sounds polished, but the task failed, the tool result contradicted the agent, or a policy rule was missed. Hamming's rubric prevents this by scoring task completion, factual accuracy, policy compliance, and evidence quality separately from empathy.

Sumanyu Sharma

Sumanyu Sharma

Founder & CEO

Previously Head of Data at Citizen, where he helped quadruple the user base. As Senior Staff Data Scientist at Tesla, grew AI-powered sales program to 100s of millions in revenue per year.

Researched AI-powered medical image search at the University of Waterloo, where he graduated with Engineering honors on dean's list.

“At Hamming, we're taking all of our learnings from Tesla and Citizento build the future of trustworthy, safe and reliable voice AI agents.”