> ## Documentation Index
> Fetch the complete documentation index at: https://blogs.persistence.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Why Voice Agents Mishear People (And What Actually Fixes It)

> Most 'the AI did not understand me' complaints happen before the model sees the words. Where recognition breaks on phone calls, and what actually fixes it.

<div className="p-frame">
  <div role="banner" className="p-article-hero p-hatch">
    <div className="p-article-eyebrow"><strong>Product</strong><span>ENGINEERING</span><span>·</span><span>6 min read</span></div>
    <h1 className="p-article-title">Why Voice Agents Mishear People (And What Actually Fixes It)</h1>
    <p className="p-article-meta">Persistence Team · August 4, 2026</p>
  </div>

  <div className="p-article-grid">
    <div role="complementary" className="p-toc" aria-label="On this page">
      <a href="/">← Back to Blog</a><p className="p-toc-label">On this page</p>
      <a href="#phone-audio-is-hard">Phone audio is a genuinely harder problem</a>
      <a href="#errors-cluster">The errors cluster exactly where the value is</a>
      <a href="#what-actually-helps">What actually helps, in order of return</a>
      <a href="#design-for-being-wrong">Design for being wrong, because you will be</a>
    </div>

    <div role="article" className="p-article">
      <div role="navigation" aria-label="Breadcrumb"><a href="https://persistence.dev">Persistence</a> / <a href="/">Blog</a> / Product</div>

      <div className="p-cover">
        <img src="https://mintcdn.com/persistence-76f2dd8d/AdrD-0x1LF1aAon0/images/blog/why-voice-agents-mishear/cover.svg?fit=max&auto=format&n=AdrD-0x1LF1aAon0&q=85&s=c393fdeccfb815d383801600a8228e0d" alt="Why Voice Agents Mishear People (And What Actually Fixes It) cover illustration" width="1200" height="675" data-path="images/blog/why-voice-agents-mishear/cover.svg" />
      </div>

      <div role="complementary" className="p-takeaways">
        <p className="p-takeaways-title">Key takeaways</p>

        <ul>
          <li>Phone audio is narrowband and compressed. Recognition on a call is a harder problem than recognition on a laptop microphone, and always will be.</li>
          <li>The errors that hurt are not random — they cluster on names, addresses, alphanumerics, and numbers, which is exactly the data most calls need.</li>
          <li>Prompting the recogniser with the vocabulary you expect fixes more real-world errors than switching models does.</li>
          <li>Confirm high-stakes values back to the caller. Recognition will never be perfect, so design for being wrong occasionally.</li>
        </ul>
      </div>

      ## Phone audio is a genuinely harder problem

      Speech recognition demos run on clean audio from a good microphone in a quiet room. Phone calls are none of those things. Traditional telephony carries a narrow slice of the frequency range and compresses it aggressively, which strips out exactly the high-frequency detail that distinguishes similar consonants — the difference between "f" and "s", or "b" and "p", often lives in the part of the signal the network threw away. Add packet loss, mobile handoffs, speakerphone echo, and a caller in a car, and the recogniser is working from a degraded copy. This is not a flaw in a particular vendor; it is a property of the medium. It means you should expect a meaningfully higher error rate on calls than in your testing, and design for it rather than treating each mistake as a bug to be fixed individually.

      <Frame caption="What this guide covers">
        <img src="https://mintcdn.com/persistence-76f2dd8d/AdrD-0x1LF1aAon0/images/blog/why-voice-agents-mishear/graphic-1.svg?fit=max&auto=format&n=AdrD-0x1LF1aAon0&q=85&s=68ac46346ba7600c22e8a5213e11c769" alt="Overview of Why Voice Agents Mishear People (And What Actually Fixes It)" width="760" height="190" data-path="images/blog/why-voice-agents-mishear/graphic-1.svg" />
      </Frame>

      ## The errors cluster exactly where the value is

      Recognition errors are not evenly distributed across a conversation. Ordinary connected speech is handled well, because the model can use context to resolve ambiguity — surrounding words make most guesses recoverable. The errors concentrate on precisely the items that carry no context: proper names, street addresses, email addresses, order numbers, policy numbers, postcodes, and any string of letters and digits read aloud. These are also, inconveniently, the pieces of information most business calls exist to capture. A caller saying "my reference is B as in bravo, four, seven, D" is the hardest input a phone agent will face, and it is a completely routine one. Any evaluation of a voice agent that does not specifically test alphanumeric capture is measuring the easy part.

      ## What actually helps, in order of return

      The instinct when recognition is poor is to swap models. That is rarely where the biggest gain is. The highest-return fix is telling the recogniser what to expect: supplying the vocabulary specific to your business — product names, clinic names, local place names, the format your reference numbers take — so that the system weights plausible interpretations correctly. A recogniser that knows your company sells a product called "Aeris" will stop transcribing it as "Eris" or "arrows". After that comes constraining the format at the point of capture, so a postcode is validated as a postcode rather than accepted as free text. Then comes handling the audio path properly — echo cancellation and sensible endpointing. Model choice matters, but it is usually the fourth lever, not the first.

      ## Design for being wrong, because you will be

      No configuration makes recognition perfect on a phone line, so the durable fix is conversational rather than technical: confirm anything expensive to get wrong. Read back the address before dispatching an engineer. Confirm the last four digits rather than the whole number. Ask the caller to spell an unusual surname rather than guessing. The craft is in confirming selectively — an agent that repeats every single value back sounds like an interrogation and adds a turn to every exchange, which has its own cost in call length and patience. Confirm what is expensive to get wrong, accept what is cheap to correct later, and let the caller move on. Getting that judgement right is a large part of what separates a voice agent people tolerate from one they do not notice.

      ## Frequently asked questions

      <AccordionGroup>
        <Accordion title="What should teams know about phone audio is a genuinely harder problem?">
          Speech recognition demos run on clean audio from a good microphone in a quiet room. Phone calls are none of those things.
        </Accordion>

        <Accordion title="What should teams know about the errors cluster exactly where the value is?">
          Recognition errors are not evenly distributed across a conversation. Ordinary connected speech is handled well, because the model can use context to resolve ambiguity — surrounding words make most guesses recoverable.
        </Accordion>

        <Accordion title="What actually helps, in order of return?">
          The instinct when recognition is poor is to swap models. That is rarely where the biggest gain is.
        </Accordion>

        <Accordion title="What should teams know about design for being wrong, because you will be?">
          No configuration makes recognition perfect on a phone line, so the durable fix is conversational rather than technical: confirm anything expensive to get wrong. Read back the address before dispatching an engineer.
        </Accordion>
      </AccordionGroup>

      ## Try Persistence

      <Card title="Build reliable voice AI with Persistence" href="https://persistence.dev" cta="Try Persistence" arrow>
        Design, test, and deploy production-ready voice agents.
      </Card>

      ## Continue reading

      <Columns cols={2}>
        <Card title="How voice AI really works" href="/blog/how-voice-ai-really-works" arrow />

        <Card title="Backchanneling in voice agents" href="/blog/backchanneling-voice-ai-agents" arrow />

        <Card title="Testing a voice agent before launch" href="/blog/voice-agent-testing-and-qa" arrow />
      </Columns>
    </div>

    <div className="p-rail" aria-hidden="true" />
  </div>

  <div role="contentinfo" className="p-footer"><div className="p-footer-brand"><strong>Persistence</strong><p>Automate your calls. Connect with us.</p></div><div className="p-footer-links"><div><strong>Product</strong><a href="https://persistence.dev">Home</a><a href="https://persistence.dev/pricing/">Pricing</a></div><div><strong>Solutions</strong><a href="https://persistence.dev/solutions/">All solutions</a></div><div><strong>Feature</strong><a href="https://persistence.dev/feature/">All features</a></div><div><strong>Resources</strong><a href="/">Blog</a><a href="https://docs.persistence.dev">Docs</a></div></div></div>
</div>
