TL;DR: Latency matters in voice AI support because human conversation runs on a strict clock. Cross-language studies of turn-taking find that people normally respond within a few hundred milliseconds, and silence beyond roughly one second reads as confusion, evasion, or malfunction. Published practitioner guidance puts the enterprise target below 500 milliseconds, with anything over about a second feeling laggy to callers. The hard part is holding that speed while the agent takes real actions, which is where most systems quietly fall apart.
Voice is the least forgiving channel in customer support. An email can sit for an hour. A chat message can take twenty seconds without anyone noticing. A phone call gives you about one second of grace, every single turn, for the entire conversation. That constraint shapes everything about how AI voice agents are built, how they should be evaluated, and why some deployments feel like talking to a person while others feel like shouting into a well.
This guide explains the mechanics: why one second is the threshold where conversation breaks, where latency actually comes from inside a voice AI pipeline, why action-taking is the honest test, what sub-second performance requires, and how to measure a vendor's real numbers before you sign anything. It is written for both the CX leader choosing a platform and the engineer who has to make the thing fast. If you want a ranked vendor comparison instead, see our companion piece on the best low-latency voice AI support platforms.
The one-second rule of human conversation
Human turn-taking is one of the most precisely timed behaviors we have. Decades of conversation analysis, replicated across many languages and cultures, show that the typical gap between one speaker finishing and the next beginning is around 200 milliseconds. That is faster than most people can consciously react, which tells you something important: listeners do not wait for a turn to end and then start thinking. They predict the end of the other person's sentence and begin planning their reply while the other person is still talking. Conversation is anticipatory, and the timing norms are baked in far below conscious awareness.
Those norms carry meaning. A response that arrives quickly signals engagement and agreement. A delayed response signals trouble. Across languages, even a pause of half a second in front of an answer is reliably interpreted as hesitation, reluctance, or bad news. By about one second of silence, listeners stop treating the pause as part of the conversation and start treating it as a problem: the other party did not hear, did not understand, or something has gone wrong. This is well established as a conversational norm rather than a preference, which is why nobody can simply decide to be patient with a slow voice agent. The discomfort is automatic.
The phone makes this stricter, for two reasons. First, a call strips out every visual cue that normally explains a silence. Face to face, you can see someone thinking, checking a screen, or drawing breath to speak. On a call, silence is a blank. The caller cannot tell the difference between a system that is working and a line that has dropped. Second, phone audio itself adds delay before the AI adds any, so the perceived gap is always the pipeline plus the network on both legs of the call.
What happens when a voice agent breaches the threshold is predictable and ugly. The caller assumes they were not heard and repeats themselves. The agent, which was mid-reply, now has fresh audio arriving on top of its own speech. The two talk over each other, the agent has to work out whether the interruption was new information or a repeat, and every recovery attempt adds its own delay. One slow turn can wreck the next three. Support teams see the downstream effects as hang-ups mid-call, escalation requests inside the first minute, and callers who arrive at a human agent already irritated. Metrics like average speed of answer capture how fast a call gets picked up; none of the traditional metrics capture the per-turn delay that decides whether the caller trusts what picked up.
It is worth being precise about what is new here. Legacy IVR systems never had a latency problem in this sense, because nobody expected conversation from them. A menu can take three seconds to respond and callers grumble without confusion, since the interaction never pretended to be human. The moment a system speaks in natural sentences and invites natural replies, it inherits the full set of human timing norms. Conversational ability raises the bar it must clear. That is the trap for teams replacing an IVR with voice AI: the upgrade in intelligence silently demands an upgrade in speed.
Where voice AI latency comes from
Every voice AI turn, on every platform, passes through the same conceptual pipeline: the system has to hear, understand, decide, act, and speak. Vendors differ enormously in how they implement each part, and the labels vary, but the physics is common to all of them. Understanding the pipeline is the fastest way to have an intelligent conversation with any vendor about where their milliseconds go.
Pipeline part | What happens | What adds delay |
|---|---|---|
Hearing | Capturing caller audio and converting speech to text | Transcription processing, and above all endpointing: deciding the caller has actually finished speaking |
Understanding | Interpreting what the caller means in the context of the conversation so far | Model inference time, which grows with conversation length and complexity |
Deciding | Working out what should happen next: answer, clarify, check policy, escalate | Reasoning depth, policy and guardrail checks, workflow evaluation |
Acting | Calling external systems: order lookups, account checks, record updates | Each backend call adds its own response time; chains of calls compound |
Speaking | Turning the reply into audio and playing it to the caller | Speech synthesis and time to first audible word |
Transport | Moving audio and data across networks in both directions | Geographic distance, telephony hops, carrier routing |
Two of these deserve special attention because they surprise people. The first is endpointing, inside the hearing stage. Before a system can respond, it has to decide the caller has finished talking, and there is no signal in human speech that says so. People pause mid-sentence to think, to read out a reference number, to find their card. If the system waits a long time to be sure the caller is done, it adds dead air to every single turn. If it jumps in too eagerly, it interrupts callers mid-thought, which is a worse sin than slowness. Every voice platform lives on this tradeoff, and tuning it well is a genuine engineering discipline. A system with instant transcription and instant reasoning can still feel slow purely through cautious endpointing.
The second is transport. Audio has to physically travel from the caller to wherever the AI runs and back, on every turn. A caller in Sydney talking to a system hosted only in Virginia pays a round-trip tax of hundreds of milliseconds before any AI work begins, and no model optimization can refund it. This is why serious voice platforms think about regional infrastructure and why a latency claim should always come with a geography attached. A figure measured in one country tells you little about performance in another. Lorikeet, as one published example, states its sub-second voice response claim for the US, UK, and Australia specifically rather than as a single global number, which is the shape a credible claim should take.
The final piece of physics is that pipeline delays add rather than average. A conversational turn is a chain: hearing feeds understanding, understanding feeds deciding, deciding feeds acting, acting feeds speaking. If five parts each take 200 milliseconds and run one after another, the caller waits a full second. This is why naive implementations that treat each part as a separate sequential service tend to land somewhere between two and four seconds per turn, well past the threshold where conversation breaks, even when every individual component looks fast on its own dashboard.
Why action-taking is the real latency test
Here is the most important thing a buyer can understand about voice AI latency: the number a vendor shows you in a scripted demo and the number your customers will experience in production are usually two different numbers, and the gap between them is almost entirely about actions.
A greeting is the easiest thing a voice agent will ever do. When a caller says hello and the agent answers from its own knowledge, the pipeline runs hearing, understanding, a shallow decision, and speaking. No external system is involved. Sub-second performance on this path is achievable and is what most demos, and most marketing figures, are measuring. Call it hello-world latency.
Real support calls are different because real support requires touching real systems. Consider what actually happens in a typical call to a fintech, an insurer, or a health provider. The caller wants to know why a payment failed, or whether a claim was approved, or when a refill ships. Answering requires the agent to look something up in a system of record. Resolving it may require writing something back: freezing a card, updating an address, rescheduling a delivery, filing a dispute. These are exactly the calls that make an AI agent worth deploying instead of an FAQ bot, and every one of them routes through the acting stage of the pipeline.
The acting stage is where latency goes to die. An external API call takes as long as the external system takes, and the voice platform does not control that. A single lookup against a well-built backend might return in 300 milliseconds; a query against an aging CRM at peak load might take three seconds. Multi-part workflows compound the problem: verify the caller, then fetch the account, then check the transaction, then apply the fix, and a chain of four dependent calls at even half a second each has blown the turn budget four times over. Complex resolutions in regulated industries, precisely the calls with the highest value, carry the heaviest action load. It is entirely possible for a platform to deliver a sub-second greeting and a nine-second silence in the middle of the one moment that matters most.
Good platforms attack this on two fronts at once, and the distinction between them is the single most useful thing to probe in an evaluation. The first front is architectural: cutting real milliseconds through parallel execution, prefetching, and doing work before it is needed, covered in the next section. The second front is conversational: managing the wait that cannot be engineered away. A well-designed agent tells the caller what it is doing before it goes quiet: give me a moment while I check that transaction. It acknowledges, sets expectations, and returns with a result, exactly as a competent human agent narrates while typing. Callers forgive a wait they understand; they do not forgive unexplained silence. A system that pretends waits do not exist will breach the one-second norm in silence and pay the full trust penalty for every backend its business depends on.
This is also why the buyer question should never be what is your latency, full stop. The honest question is: what is your latency during a turn that performs a real action against my systems, at production load? Any vendor who answers with their greeting figure has told you something useful about their marketing and nothing about your callers' experience. Our companion articles on AI IVR replacement platforms and voice AI for banks apply the same test across vendors.
What sub-second actually requires
Sub-second voice AI is achievable in production, and buyers should treat it as a reasonable demand rather than a moonshot. But it is the product of a system designed for speed end to end, never of any single fast component. The techniques that get a platform there are, at this point, well understood across the industry. What separates vendors is how thoroughly they apply them.
Streaming everywhere. The single biggest structural win is refusing to wait for complete outputs. Streaming transcription converts speech to text while the caller is still talking rather than after they stop. Streaming synthesis begins speaking the first words of a reply while the rest is still being generated. Together these overlap stages that a naive pipeline would run in sequence, and they are the difference between adding stage times and hiding most of them.
Model selection and switching. Language models trade speed against reasoning depth, and no single model sits at the right point on that curve for every turn. A routine acknowledgment does not need heavyweight reasoning; a policy-sensitive decision does. Mature platforms therefore route each moment to an appropriately sized model, switching dynamically between fast models for conversational flow and stronger models where the decision warrants it. Lorikeet describes this approach on its voice product page as model switching to ensure low latency and high precision, and it is a good example of the general principle: latency engineering is about spending intelligence where it pays.
Parallel tool execution. When a resolution needs three lookups that do not depend on each other, a fast system issues all three at once and pays only for the slowest, instead of paying for the sum. Dependency-aware orchestration of backend calls is unglamorous and is worth more real-world milliseconds than most model optimizations.
Precomputation and prefetching. The cheapest backend call is the one that already happened. A caller's number is known the moment the call connects, which means account context, recent orders, and open tickets can be fetched during the greeting, before the caller asks anything. Systems that anticipate the likely next lookup can hide action latency inside conversational moments the caller experiences as natural.
Interruption handling and barge-in. Speed cuts both ways: callers interrupt, change their minds, and talk over the agent. A fast pipeline that cannot stop speaking, discard a stale reply, and re-plan on fresh audio will feel broken no matter how quick it is. Clean interruption handling is part of latency work because recovery from talk-over is itself a timing problem.
Keypad fallback. Supporting DTMF input for things like card digits and menu confirmations removes entire transcription rounds from the highest-friction moments, and doubles as an accessibility and reliability win on bad lines.
How do these come together in practice? Lorikeet serves as a useful worked example because its claims are published and checkable. The company states sub-second voice responses in the US, UK, and Australia, ties the claim to specific regions rather than a global average, and pairs it with the model-switching approach described above. Its team has also published practitioner guidance on what the numbers should be: a sub-500 millisecond target for enterprise-grade voice, with delays above roughly one second feeling laggy to callers. That guidance, laid out in essays like why fast is not fast enough and if your voice AI cannot wait, it cannot listen, is deliberately vendor-neutral: it describes the physics any platform must beat, and it is the standard Lorikeet invites buyers to hold it to. The same principles apply whether you evaluate Lorikeet or anyone else, which is what makes published guidance more useful to a buyer than a marketing number.
One thing sub-second does require from the buyer's side: integration quality. A voice platform can only be as fast during actions as the systems it calls. Well-documented APIs, webhook support, and modern integration standards keep the acting stage lean, and platforms that connect through purpose-built integrations rather than screen-scraping or batch syncs hold their latency under real workloads. If your systems of record are slow, the platform's job shifts toward parallelism, prefetching, and honest conversational management of the wait, and you should ask vendors directly how they handle a two-second backend.
How to measure latency before you buy
Latency is unusually easy to verify compared with most vendor claims, because you can hear it. You do not need tooling, benchmarks, or a proof of concept to get a first read; you need a phone and a stopwatch mentality. What you do need is a protocol that defeats the demo effect. Here is one that works, in six tests of increasing honesty.
Time the greeting turns. Call the vendor's live demo line and hold a normal conversation. Count the beat between when you stop talking and when you first hear the agent's voice. Under half a second feels immediate; around a second feels acceptable; anything where you notice yourself waiting has failed the test in its own demo, which is the most favorable environment it will ever enjoy.
Force a real action. Ask for something that requires a lookup: an order status, an account detail, anything the agent must fetch rather than know. This is the turn that predicts production. Notice both the raw wait and how the agent manages it. Did it acknowledge before going quiet? Did it signal progress? Silence during a five-second fetch tells you the platform has not thought about the problem; a managed wait tells you it has.
Demand the measurement definition. Ask the vendor exactly what their quoted figure measures. The honest definition is end of caller speech to first audible agent word, including transcription, reasoning, actions, synthesis, and transport. Numbers that measure only model inference, or only time to first token of text, can be several times smaller than what a caller experiences. If the vendor cannot state their definition crisply, the figure is decorative.
Ask for percentiles, never averages. An average hides the turns that break conversations. A system that answers in 600 milliseconds most of the time and four seconds during actions will quote a comfortable mean while your hardest calls fail. Ask for median and worst-decile figures, measured separately for turns with and without backend actions, at production concurrency. Vendors who instrument their pipeline properly will have these; vendors who do not have them are telling you they do not measure what you are buying.
Test your geography and your peak. Call from where your customers are, at the hours they call. Transport latency means a system quick from San Francisco can lag from Sydney or Auckland, and shared infrastructure can degrade at peak load. If your callers are in Australia or New Zealand, test from there, and ask the vendor which regions their published figures cover. Regional claims, like sub-second in named countries, are a sign the vendor has actually done this work.
Interrupt it. Talk over the agent mid-sentence and change your request. A well-built system stops, discards its stale plan, and responds to the new input quickly. A poorly built one finishes its paragraph, answers the old question, or stalls. Recovery speed under interruption is latency engineering made audible.
Then put it in the contract. If latency matters enough to select a vendor on, it matters enough to write down. Reasonable language includes: the measurement definition (caller speech end to first audio), the percentile targets for action and non-action turns, the regions covered, and a reporting cadence so you see the real distribution monthly rather than a launch-day snapshot. Vendors confident in their production numbers will not resist this; hesitation here is itself information. During a paid pilot, insist on seeing per-turn latency for your own calls, and pressure-test during your real peak, the way seasonal spike deployments get validated. For a broader evaluation sequence beyond latency, our guide to replacing an IVR with natural language triage covers the workflow and integration questions that sit alongside speed.
Latency versus quality: the tradeoff nobody should hide
Everything above argues for speed. Now the necessary correction: latency is a threshold requirement, never the objective. The goal of a support call is a correct resolution the caller trusts, delivered inside conversational norms. Speed serves that goal and must never be purchased at its expense.
The failure mode to fear is the fast wrong answer. A voice agent that responds in 400 milliseconds with an incorrect balance, a wrong policy statement, or an invented delivery date has failed at something far more expensive than slowness. In regulated industries, in financial services especially, a confident wrong answer can be a compliance event; in healthcare it can be a safety one. A platform that achieves its speed by skipping verification, shrinking reasoning on decisions that deserve it, or answering before a lookup completes has optimized the wrong metric. This is the deeper logic behind model switching: spend the milliseconds where correctness demands them, save them everywhere else. It is also why an agent that says let me check rather than guessing, or that escalates to a human when confidence is low, is exhibiting good latency judgment, not poor performance. A two-second verified answer beats a half-second hallucination every time, and an honest escalation beats both when the call is outside the agent's competence.
Three quality dimensions interact with speed and belong in any evaluation alongside it. Consistency: a steady 800 milliseconds feels more trustworthy than a jittery mix of 300 and 2,000, because callers calibrate to rhythm and variance breaks the calibration. Endpointing manners: a system tuned aggressively for speed will interrupt callers mid-thought, and being cut off is ruder than being kept waiting. And verification depth: guardrails, policy checks, and quality assurance cost milliseconds by design, and the right amount of that cost is above zero. The evaluation question is never speed or quality in isolation; it is whether the vendor can show you both numbers for the same calls: per-turn latency next to resolution accuracy. Platforms that let you simulate real conversations against your own workflows before launch make this test cheap to run, and testing both at once is the only way to catch a vendor trading one for the other.
Who publishes latency claims, and how to read them
A short and honest survey of the vendor landscape: most voice AI support vendors do not prominently document end-to-end production latency figures at all. Marketing pages in this category speak of natural, human-like, real-time conversation without attaching a number, a measurement definition, or a region. That is worth registering as a fact about the market rather than a scandal: production latency is hard, varies with workload, and a vendor that publishes a figure is handing buyers a stick to measure it with. Silence is the safer marketing strategy, which is exactly why a published claim deserves credit.
When you do find a claim, read it against four questions drawn from this guide. What does it measure, caller speech to first audio, or something narrower? Where does it hold, globally or in named regions? What kind of turn, greeting or action-taking? And at what load, demo or production? Lorikeet's published position is sub-second voice responses in the US, UK, and Australia, alongside openly published practitioner guidance setting a sub-500 millisecond enterprise bar; whatever platform you evaluate, those are the terms a claim should be stated in. Infrastructure and component vendors publish speed figures too, and these are honest numbers about single pipeline parts, never about the end-to-end experience your callers get; a fast transcription engine inside a slow orchestration layer still produces a slow agent.
The practical takeaway for buyers: treat an absent latency figure as an open question rather than a disqualifier, and treat every present figure as a hypothesis to test with the six-part protocol above. What production evidence there is tends to live in customer outcomes rather than milliseconds. Voice deployments like Wonderschool, which went from answering roughly 10% of parent calls to 100%, show what a call experience that holds together end to end delivers; action-heavy deployments like Carmoola, resolving 60% of inbound support end to end in a regulated lending business, show sustained performance on exactly the tool-chain-heavy calls where latency is hardest to hold. No public latency-per-customer numbers exist anywhere in this market, so outcome evidence plus your own stopwatch is the strongest verification available. More on how the trust layer behind those deployments works lives on the trust page, and more customer stories are published for the same reason: production evidence beats claims.
Latency is the rare vendor claim you can check yourself in five minutes, and the checking is free. Call the demo line, force an action, count the silence. If you want to run that test against a live system, book a demo and bring a stopwatch; how a platform performs when you are timing it is the whole point. For how the pieces fit together under the hood, see how Lorikeet works, and for what sits on top of the voice channel, the voice product page covers the full picture. Speed is table stakes for conversation; what you are really buying is a system fast enough to be trusted with the slow, hard, valuable calls.







