Barge-In: Interruption Latency for AI Voice Agents (2026)
When the caller interrupts, you have ~200ms to detect and ~300ms to stop. We engineer full-duplex barge-in with VAD, echo cancellation, buffer flushing, and context tagging — production-grade for 2026.
TL;DR — Barge-in latency = (detect user speech) + (stop TTS) + (clear buffers) + (tag context as interrupted). Production targets: detect P50 200ms, stop P50 300ms. Get any of those wrong and the caller experiences a stuttering, half-broken agent.
The latency problem
A confident caller will interrupt. If your agent doesn't stop talking within ~300ms of the interruption, the caller hears two voices, gets frustrated, and disengages. Worse, the LLM keeps generating tokens that will play on top of the caller's next sentence — a cascading failure.
Where the ms come from
Four sequential events, each with a budget:
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
- Detect — VAD fires on incoming audio while TTS is playing (~200ms P50)
- Stop TTS — flush the audio buffer at the playout endpoint (~50ms)
- Cancel inflight LLM — close the streaming response (~50ms)
- Tag context — mark the interrupted message as partial in conversation history (~10ms)
Total: ~310ms P50 from "user starts speaking" to "agent is silent and listening". Major platforms (Retell, Vapi, ElevenLabs, OpenAI Realtime) all expose tunables here.
flowchart LR
PLAY[TTS playing] --> USR[User starts]
USR --> VAD[VAD detect<br/>200ms]
VAD --> STOP[Stop TTS<br/>50ms]
STOP --> CANC[Cancel LLM<br/>50ms]
CANC --> TAG[Tag interrupted<br/>10ms]
TAG --> LISTEN[Listening<br/>= 310ms total]
CallSphere stack
CallSphere ships full-duplex barge-in across all 6 verticals. The Healthcare path uses Realtime's native interruption API; the FastAPI :8084 gateway handles barge-in for other verticals via a lightweight broker that closes the LLM stream and emits a TTS-stop frame on the WebRTC channel. 37 agents, 90+ tools, 115+ DB tables. Pricing $149/$499/$1,499, 14-day trial, 22% affiliate.
Try barge-in live or start a trial.
Optimization steps
- Use full-duplex audio — never half-duplex push-to-talk for AI voice.
- Run echo cancellation (WebRTC AEC3) on the input stream so the agent's own voice doesn't trigger barge-in.
- Increase VAD sensitivity during TTS playback, not in general.
- On detection, immediately: stop TTS playout → cancel LLM → mark message partial.
- Replay barge-in events in the dashboard — false-positive barge-ins (echo, music, side conversation) are common.
FAQ
Q: What's a good detect-to-stop latency? P50 < 350ms, P95 < 600ms. Above that, callers feel awkwardness.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
Q: Does the LLM see the interrupted text? Yes — log it with a partial flag so it can re-plan when the user finishes.
Q: Does Realtime API handle barge-in natively? Yes — it cancels in-flight TTS on user speech detection.
Q: How do I prevent echo-triggered false barge-ins? WebRTC AEC3 + a higher threshold during playback windows.
Q: Does CallSphere expose barge-in tuning? Yes — per-vertical sensitivity profile, plus a debug replay in the admin analytics.
Sources
## Barge-In: Interruption Latency for AI Voice Agents (2026): production view Barge-In: Interruption Latency for AI Voice Agents (2026) is also a cost-per-conversation problem hiding in plain sight. Once you instrument tokens-in, tokens-out, tool calls, ASR seconds, and TTS seconds against booked-revenue per call, the right tradeoff between Realtime API and an async ASR + LLM + TTS pipeline becomes obvious — and it's almost never the same answer for healthcare as it is for salons. ## Shipping the agent to production Production AI agents live or die on three loops: evals, retries, and handoff state. CallSphere runs **37 agents** across 6 verticals, each with its own eval suite — synthetic call transcripts replayed nightly with assertion checks on extracted entities (date, time, party size, insurance, address). Without that loop, prompt regressions ship silently and you only find out when bookings drop. Structured tools beat free-form text every time. Our **90+ function tools** all enforce JSON schemas validated server-side; if the model hallucinates an integer where a string is required, we retry with a corrective system message before falling back to a deterministic path. For long-running flows, we treat agent handoffs as a state machine — booking → confirmation → SMS — so context survives turn boundaries. The Realtime API vs. async decision usually comes down to "is the user holding the phone right now?" If yes, Realtime; if no (callback queue, after-hours voicemail), async wins on cost-per-conversation, which we track per agent in **115+ database tables** spanning all 6 verticals. ## FAQ **How does this apply to a CallSphere pilot specifically?** Setup runs 3–5 business days, the trial is 14 days with no credit card, and pricing tiers are $149, $499, and $1,499 — so a vertical-specific pilot is a same-week decision, not a quarterly project. For a topic like "Barge-In: Interruption Latency for AI Voice Agents (2026)", that means you're not starting from scratch — you're configuring an agent template that's already been hardened across thousands of conversations. **What does the typical first-week implementation look like?** Day one is integration mapping (scheduler, CRM, messaging) and prompt tuning against your top 20 real call transcripts. Day two through five is shadow-mode running, where the agent transcribes and recommends but a human still answers, so you can compare side-by-side. Go-live is the moment your eval pass-rate clears your internal bar. **Where does this break down at scale?** The honest answer: it scales until your tool catalog gets stale. The agent is only as good as the integrations it can actually call, so the operational discipline is keeping schemas, webhooks, and fallback paths green. The platform handles the rest — observability, retries, multi-region routing — without your team owning the GPU layer. ## Talk to us Want to see how this maps to your stack? Book a live walkthrough at [calendly.com/sagar-callsphere/new-meeting](https://calendly.com/sagar-callsphere/new-meeting), or try the vertical-specific demo at [escalation.callsphere.tech](https://escalation.callsphere.tech). 14-day trial, no credit card, pilot live in 3–5 business days.Try CallSphere AI Voice Agents
See how AI voice agents work for your industry. Live demo available -- no signup required.