Technology and AI
When Your AI Agent Is Right but Sounds Wrong

Pratik Chothani
Software Development Engineer
July 30, 2026
·4 min read
·Updated July 30, 2026

Quick answer
Treat tone as its own review category with its own reviewers, separate from the factual accuracy pipeline that already checks whether an answer is correct. Accuracy review asks whether the content is true. Tone review asks whether the delivery matches how your brand would say it, and it needs a rubric, a reviewer with brand authority (usually marketing or comms, not engineering), and its own eval set of transcripts scored specifically for warmth, formality, and directness, independent of whether the underlying answer passed.
Why accuracy review does not catch this
Most companies build their AI agent quality process around correctness: does the answer match the documented policy, does the number match the source system, did it cite the right return window. None of that catches an agent that tells a customer, correctly, that their return is denied, in language that reads as curt, dismissive, or legally hedged in a way a trained human agent would never use. The answer passes every accuracy check and still generates a complaint, because accuracy and tone are measured on different axes and most eval pipelines only build the first one. This is the same blind spot behind handling AI agent errors and hallucinations gracefully, except here the content is not even wrong, so the usual error-handling playbook does not apply.
Build a tone rubric before you need one
A usable tone rubric is short: three to five dimensions (warmth, formality, directness, empathy acknowledgment, brand-specific phrasing rules), each scored on a simple scale, applied to a sample of real transcripts every week. The rubric should be written by whoever owns brand voice for human channels today, usually marketing or customer experience, not by the engineering team that owns the model. Score transcripts that already passed accuracy review, since those are exactly the ones a pure correctness pipeline will never flag. Where a transcript scores low, the fix is almost always a system prompt adjustment, not a factual correction, which is a different remediation path than the one your engineering team is used to running.
Give tone review its own escalation path
Once a rubric exists, route tone failures to the people who can actually act on them. An engineer patching a factual bug is not the right owner for 'this response sounds cold when a customer is upset,' just as a brand manager is not the right owner for a wrong refund amount. Set up a lightweight weekly sync between whoever owns the tone rubric and whoever owns the system prompt, so tone fixes ship on a similar cadence to accuracy fixes instead of piling up as a permanent backlog nobody has authority to clear. This mirrors the reasoning in designing an AI agent's personality without sounding robotic, but that post covers designing the tone from scratch; this is about catching drift and failures in an agent whose tone was already designed and shipped.
Watch for tone drift after prompt or model changes
Tone is more fragile than accuracy across changes you make for other reasons. A system prompt edit made to fix an unrelated accuracy bug, or a migration to a different foundation model, can shift tone even when the eval set for correctness still passes at 100 percent, because different models default to different levels of formality and verbosity for the same instructions. Re-run the tone rubric, not just the accuracy eval set, after any change that touches the system prompt or the underlying model, and treat a tone regression as a real defect worth blocking a release over, not a cosmetic nice-to-have.
FAQ
Is a brand voice problem serious enough to justify a dedicated review process?
If your agent handles enough volume that a systemic tone problem reaches a meaningful share of customers before anyone notices, yes. A single curt response is a one-off complaint; a system prompt that produces curt responses by default is a brand risk multiplied by every conversation the agent has.
Who should have final authority to block a release over a tone issue?
Whoever owns brand voice for your human channels today. If that person can block a training deck or a marketing email over tone, they should have the same authority over the AI agent's default voice, with engineering implementing the fix rather than overriding the call.
Can you automate tone scoring instead of using human reviewers?
You can use a model to pre-screen transcripts and flag likely tone outliers for human review, which keeps review volume manageable at scale, but the rubric itself and the final call on borderline cases should stay with a human who owns brand voice, since tone judgment is exactly the kind of subjective call an automated score can miss.
Related posts
What to Negotiate Now So You Can Actually Take Your Data With You if You Switch AI Agent Vendors Later
July 30, 2026
A Customer Wants Their Entire AI Agent History Deleted, But It Already Shaped How Other Customers Are Served
July 30, 2026
Your AI Agent Started as One Team's Project. Who Should Own Its Roadmap Now That the Board Is Watching?
July 30, 2026