concaption
01/27/2026, 5:24 PMVapi Support Bot
01/27/2026, 5:25 PMCall ID: 019bf277-6597-722c-8766-02acaa857c94
Issue: Agent's voice is choppy and distorted
Audio: [link to recording]
Expected: Clear, natural-sounding agent voice
For more details, see the [Vapi issue reporting guide](https://docs.vapi.ai/issue-reporting).
Source:
- [How to Report Issues Effectively](https://docs.vapi.ai/issue-reporting)concaption
01/27/2026, 5:32 PMGyanendra
01/28/2026, 2:54 PMChiranjeet Mishra
01/30/2026, 3:56 AMoptimize_streaming_latency = 3, which prioritizes speed over audio quality
• You’re using the eleven_turbo_v2_5 model, which is optimized for web playback, not phone calls
• When this audio is converted to Twilio’s μ-law 8kHz telephony format, it becomes choppy and distorted
• Logs also show Emit Disabled But Requested Event: output, meaning some audio chunks were blocked before delivery
Recommended fix
To resolve this, we recommend the following changes to your voice configuration:
1. Reduce streaming latency
• Change optimizeStreamingLatency from 3 → 2
2. Switch to a phone-optimized model
• Replace eleven_turbo_v2_5 with eleven_multilingual_v2, which performs much better over PSTN calls
Here’s an example configuration you can copy:
"voice": {
"provider": "11labs",
"voiceId": "dN8hviqdNrAsEcL57yFj",
"model": "eleven_multilingual_v2",
"optimizeStreamingLatency": 2
}
Fallback option
You already have Cartesia configured as a fallback voice. If you still notice issues after making the above changes, we recommend testing Cartesia as the primary voice, as it’s generally very stable for telephony use cases.
Please apply these updates and test a few inbound calls. Let us know how it sounds afterward, and we’ll be happy to continue tuning things if needed.
Best regards,
Kyle
Vapi SupportConcaption
01/30/2026, 2:25 PMConcaption
02/02/2026, 1:56 PMChiranjeet Mishra
02/03/2026, 11:14 AM