Barge-In
Letting a caller interrupt your AI agent mid-sentence, why it is non-negotiable on phone calls, and the tuning that keeps it from misfiring.
Updated 2026-08-18
Barge-in is the ability of a caller to interrupt the agent while it is speaking and have the agent stop and listen. Without it, the agent talks over the caller until it finishes whatever it planned to say, which is the defining sound of bad phone automation.
Why it matters when you are buying or building
People interrupt. They interrupt constantly, and they do it more with automation than with humans because they are trying to skip ahead. A caller who already knows what they want will start talking three words into the greeting. If the agent cannot hear them, they repeat themselves louder, then hang up.
Barge-in is a platform capability, so check it during evaluation, not after. Two questions:
- Does the agent actually stop speaking, or does it just start listening while the audio keeps playing? Only the first one is real barge-in. If audio keeps flowing, the caller hears themselves competing with a voice and gives up.
- How fast does audio cut off? A few hundred milliseconds is fine. Anything approaching a second still feels like being talked over.
What I have seen in production
The tuning problem is false triggers. If the interrupt threshold is too sensitive, the agent stops for a cough, a passing truck, or the caller saying "mhm" as backchannel acknowledgment. That last one is brutal, because the caller is signalling "keep going" and the agent hears "stop." You end up with an agent that cannot finish a sentence.
The environment decides the setting. Home-service callers phone from job sites and moving vehicles, and a sensitive threshold there is unusable. A jewelry customer calling from home is a quieter case and can take a hair trigger. There is no universal value, which means you have to test on real calls from realistic places. Testing from a quiet office will tell you nothing about the noisy case. See testing voice agents.
Two design habits that make barge-in matter less, which is the real win:
Keep responses short. An agent that speaks in one or two sentences and then stops gives the caller natural openings. Most barge-in complaints are really complaints about an agent that monologues. Fix that in the system prompt with an explicit length rule for voice.
Do not read lists aloud. If the agent has five options, it should offer two and ask. Long enumerations are what people interrupt.
Finally, when the caller does interrupt, the agent has to handle the abandoned turn gracefully. It should treat what it said as partially delivered and not assume the caller heard the end of it. That is a turn-taking concern, and it is where interruption handling either feels natural or feels like a reset.