I swapped the TTS in my voice agent and it cut the lag people actually feel more than anything else

Reddit r/AI_Agents Models

Summary

The author shares their experience swapping the TTS in their voice agent to a custom model (Banter 1) designed for bilingual Arabic-English conversations, which significantly reduced perceived lag.

I have been building Banter 1, a text to speech model aimed at voice agents that need Arabic and English in the same conversation. The reason I started: most stacks I tried nailed English and then treated Arabic as an afterthought, so it came out flat, mispronounced, or in the wrong dialect, and code switching mid sentence fell apart. I would rather hear where it breaks than where it shines, so if you build bilingual agents: how are you handling this today, and does mine actually hold up against what you use? Separate voices per language or one model for both?
Original Article

Similar Articles

Your voice agent probably isn't slow because of the LLM.

Reddit r/AI_Agents

A developer debunks the common belief that LLM latency is the primary cause of slow voice agents, explaining that delays often stem from earlier stages like audio capture, VAD, and STT. They recommend logging specific latency metrics and testing various STT/TTS providers and orchestration frameworks to diagnose issues.

6 months running a production voice agent for service businesses. The latency math is way harder than the demos suggest.

Reddit r/ArtificialInteligence

After 6 months running a voice AI agent for service businesses, the author reveals that real-world latency is bimodal (median ~800ms, p95 ~2.4s) and this p95 determines user perception. Issues like VAD misfires, function call degradation with long prompts, and TTS quality matter more than LLM choice, with multilingual support adding significant costs.

Latency matters more than model selection when building AI tutoring systems

Reddit r/AI_Agents

A practitioner argues that speech start latency—not model selection—is the critical factor in AI tutoring systems, recommending targets under 1 second for speech start and highlighting streaming TTS as the highest-leverage optimization. The post outlines a full pipeline from ASR through TTS and avatar sync, identifying where latency compounds most.