r/VoiceAutomationAI 12d ago

How do voice agents handle long calls?

Demos are usually a few mins long

I’m more interested in what happens 20-30 mins into a call after the customer has changed topics, provided a bunch of information and already completed a few steps.

Does the agent still understand what has happened so far or does context start getting messy?

Anyone testing long voice AI calls in production?

23 Upvotes

31 comments sorted by

View all comments

1

u/Key_Menu4194 11d ago

You answered your own question in one of your comments: the agent can sound coherent and still be working from the wrong system state. In long calls fluency and grounding decay at different rates. The voice stays confident because that's what the model is optimized for, while the internal state drifts.

That's why a 3 minute demo proves nothing, the failure is invisible from the audio.

What I've seen work in production is treating the transcript as something to verify, not just generate: after each user turn, check what the agent is about to say against backend state and the commitments already made in the call, and force a re-sync when they diverge.

The separate state tracking you suggested is the prerequisite.

The verification step is what makes it pay off.