Sub-80ms RTT Voice Infrastructure: How Vobiz Delivers Production-Ready Low Latency for AI Agents (2026)
Sub-80ms RTT Voice Infrastructure: How Vobiz Delivers Production-Ready Low Latency for AI Agents (2026)
Table of Contents
Why Latency Is the Most Important Number in Voice AI
Latency is not a technical vanity metric. It is the variable that determines whether a caller experiences a conversation partner or a broken system — and the threshold at which it starts to matter is lower than most teams expect.
Research on human conversational turn-taking shows that in natural conversation, the average response offset is 0–200ms. Humans formulate responses before a speaker has finished their turn. Voice AI cannot do that — it must wait for end-of-turn detection before it can begin STT. That structural gap means telephony infrastructure latency is not a small overhead; it is a direct subtraction from an already tight budget.
The thresholds that production data consistently confirms:
| Response latency | Caller experience |
|---|---|
| < 300ms | Feels natural. Callers do not register the gap. |
| 300–700ms | Callers consciously notice. Conversation starts to feel "off." |
| 700–1,000ms | Upper limit for maintaining conversational flow. |
| Above 1,000ms | Abandonment rates spike 40%+. Callers hang up or talk over the AI. |
| Above 1,500ms | Callers report the conversation feels broken. |
The ITU-T G.114 recommendation for voice telephony specifies no more than 150ms of one-way transmission delay for good interactive quality. A voice AI stack has to fit STT inference, LLM generation, TTS synthesis, and all network traversal inside a window that telephony engineers have spent decades defending.
Your telephony infrastructure controls one specific segment of that budget: the carrier leg. That segment is what Vobiz is built to minimize.
The Latency Budget: Where Every Millisecond Goes
A typical voice AI pipeline for a production phone call looks like this:
| Pipeline stage | Typical range |
|---|---|
| Network ingress + SIP signaling | 150–250ms |
| Speech-to-text transcription | 100–300ms |
| LLM inference (time to first token) | 350–1,000ms |
| Text-to-speech synthesis | 200–2,000ms |
| Network egress back to caller | 150–250ms |
| Total (sequential, unoptimized) | 1,000ms–2.5 seconds |
As analysis across 4M+ production voice agent calls shows, median production voice AI today delivers 1,400–2,500ms — 2–6x over the 500ms conversational ceiling. The gap is not primarily in the AI models. It is in how the components are assembled, and specifically in the network traversal stages at either end.
There is also a hidden latency tax that teams rarely account for: audio format conversion. The PSTN delivers audio at 8kHz G.711 µ-law. STT models typically expect 16kHz PCM; TTS models often use 24kHz. Any mismatch triggers resampling, and resampling from 8kHz to 16kHz costs 50–150ms each way — every turn, every call, quietly spending budget that was never allocated. Vobiz handles this in the infrastructure layer, before audio reaches your AI pipeline.
Why 500–800ms Is Not a Benchmark Worth Celebrating
Industry blogs from large CPaaS platforms frequently cite "sub-800ms" as a meaningful achievement. Hitting 800ms consistently across carrier infrastructure is genuinely non-trivial engineering. But 800ms is not a bar that produces natural conversations. It is a bar that produces conversations that do not cause callers to immediately hang up.
The budget arithmetic explains the problem clearly. If the carrier leg alone costs 200ms — a number that many generic CPaaS platforms produce when handling Indian PSTN traffic — then the remaining pipeline (STT + LLM first token + TTS) has 600ms to complete to hit the 800ms ceiling. LLM inference alone, on a non-streaming model, routinely consumes 350–1,000ms. The math does not work.
The teams building production voice AI in 2026 — on Vapi, Retell AI, ElevenLabs, LiveKit, Pipecat — are investing heavily in streaming STT, streaming LLM token generation, and early TTS initiation to claw back milliseconds. That work is wasted if the carrier leg is eating 200ms before the AI has received a single audio packet.
Vobiz sets a stricter bar: average <80ms end-to-end RTT on the carrier leg, measured in production across thousands of concurrent calls. That leaves the budget where it belongs — available to the AI pipeline.
The Vobiz Latency Stack: Four Layers
The <80ms figure is not the result of a single optimization. It is the product of four distinct infrastructure decisions that compound.
1. Multi-Region SIP Trunks with Automatic Failover
Vobiz SIP trunks are provisioned across multiple regional points of presence with automatic failover — credential-based SIP digest authentication, unlimited concurrent channels, and elastic scaling that replaces the fixed-capacity PRI lines that legacy Indian telephony relied on.
The regional architecture matters for latency in a specific way: when a call originates on an Indian carrier and needs to reach a Vapi or Retell inference cluster, the number of network hops between the Vobiz SIP gateway and that cluster determines how much of the latency budget the carrier leg consumes. Multi-region deployment means the SIP gateway is geographically closer to both the Indian PSTN entry point and the AI inference cluster endpoint.
Automatic failover means that carrier-side instability — a routine operational reality in Indian telecom — does not produce call drops or latency spikes that are invisible to the application layer. The infrastructure absorbs them.
2. Direct RTP Media Paths Optimized for AI Workflows
Real-time Transport Protocol (RTP) carries the actual audio payload between Vobiz and the AI platform. Latency on this path is determined primarily by two things: buffering decisions and routing efficiency.
Generic CPaaS platforms often introduce unnecessary buffering at the media layer — a design choice that was rational for traditional telephony but is actively harmful for AI voice agents operating against a tight turn-taking budget.
Vobiz's RTP implementation is designed for the AI use case: direct media paths, no unnecessary buffering, and sub-packet-loss recovery mechanisms that keep the audio stream continuous on variable Indian networks without the stall-and-retransmit behavior that TCP-based transports impose. The result is that audio arrives at the STT layer as quickly as network physics allow.
3. Edge Resampling and Codec Handling in the Infrastructure Layer
The PSTN delivers audio at 8kHz G.711 µ-law. Modern AI voice models — whether Deepgram, AssemblyAI, Google Chirp, or Whisper — are trained on 16kHz or 24kHz audio. TTS models like ElevenLabs and Cartesia output at 24kHz. Every conversion between these formats costs time: 50–150ms per direction, applied to every turn of every call.
Vobiz handles the 8kHz PSTN ↔ 16kHz/24kHz AI model conversion in the infrastructure layer — at the edge, before audio reaches the application. Your STT pipeline receives audio at the sample rate it expects. Your TTS output is delivered back to the PSTN at the rate it expects. The conversion cost is absorbed by the infrastructure, not charged against your AI pipeline's latency budget.
This is a design decision that generic CPaaS platforms, built primarily around connecting two humans rather than a human and an AI model, have not been optimized for. Vobiz was.
4. Colocated AI Platform Interconnects
Vapi, Retell AI, LiveKit, ElevenLabs, Pipecat, Bolna, and Ultravox all connect to Vobiz via dedicated interconnects rather than traversing the public internet between the telephony and AI layers.
Every vendor boundary in a stitched voice AI pipeline is a latency hop: a TCP connection to establish, a TLS handshake to complete, a margin layer added by a third-party infrastructure provider sitting between two components that should be adjacent. When Vobiz and your AI platform interconnect directly at the infrastructure level, that inter-vendor hop disappears from the latency budget entirely. Audio from the PSTN reaches the AI inference layer with no additional routing through the public internet.
Why India Is a Harder Problem
India's telecom environment compounds every latency challenge that exists in any market. Three specific factors make the problem structurally harder here than in the US or EU:
Carrier fragmentation. India's mobile market is served primarily by Jio, Airtel, and Vodafone Idea — but the interconnection agreements, routing tables, and quality-of-service policies between these carriers and enterprise SIP providers are not standardized in the way they are in North American or European markets. A call that routes cleanly between two parties in one carrier combination may traverse multiple additional hops in a different combination, with latency that is invisible to the application layer.
Urban–rural network variability. India's wireless tele-density varies sharply: 8.25% urban vs 0.61% rural as of mid-2025 per TRAI data. An agent optimized for calls originating in Mumbai or Bengaluru will behave differently on calls from Tier 2 and Tier 3 cities — with higher packet loss rates, more variable jitter, and codecs that may not match what the AI pipeline expects. Robust RTP handling is not optional; it is the difference between a product that works across India and one that works in metro demos.
TRAI routing compliance. TRAI regulations govern how automated outbound calls are routed, what caller IDs can be presented, and what series numbers (140/160 series) are permitted for commercial calling. Generic global CPaaS platforms, built primarily for US/EU compliance frameworks, typically do not ship with TRAI-aware routing configurations. Teams using them end up either non-compliant or building compliance tooling on top of infrastructure that was not designed for it — adding complexity, cost, and latency in the process.
Vobiz was built specifically for this environment, not adapted to it after the fact.
What <80ms RTT Actually Gives Your AI Pipeline
The practical implication of a <80ms carrier leg is not an abstract benchmark improvement. It is a reallocation of latency budget that directly affects what your AI pipeline can do.
A carrier leg that costs 200ms forces your STT, LLM, and TTS to complete in 300ms to hit a 500ms total response time. That is a near-impossible constraint on any non-trivial LLM inference. Teams working under that constraint end up making compromises: smaller models with lower reasoning quality, aggressive response caching that reduces conversational flexibility, or accepting 800ms+ total latency that customers notice.
A carrier leg that costs 80ms gives the same pipeline 420ms to work with — enough headroom for a streaming LLM generating first tokens in 150ms, a TTS synthesis stage initiated concurrently, and a natural-feeling conversation that does not require the AI to be artificially constrained.
Specifically, <80ms RTT enables:
- Streaming STT and LLM token generation to work as designed, without the AI pipeline sitting idle waiting for audio to traverse unnecessary network hops
- More capable LLM models — larger context windows, tool calls, multi-step reasoning — without blowing the total latency budget
- Consistent behavior across urban and rural Indian callers, not just metro callers on ideal networks
- Headroom to absorb genuine network variability without the total response time crossing the perceptible-delay threshold
The Vobiz AI voice agent architecture is designed so that none of this requires custom configuration. The infrastructure behaves this way by default, across 130+ countries for DID numbers and outbound reach into 190+ countries.
Observability: Full Visibility Into the Call Path
Latency problems in voice AI are notoriously difficult to diagnose because the failure mode is silent. A call where the carrier leg added 300ms looks identical to a successful call from inside your application logs. The CRM records a connected call. The webhook fires. The STT transcription arrives. Nothing in the data shows that 300ms of the caller's patience was spent waiting for audio to traverse a poorly optimised SIP route.
Vobiz provides:
- Real-time call flow debugging — per-call visibility into SIP signaling, RTP stream quality, and media path routing, accessible from the Vobiz console
- Performance monitoring — latency percentiles, packet loss rates, and codec negotiation outcomes across all active calls, not just aggregates
- Webhook delivery on every call event — ring, answer, hangup, duration, and quality metrics per call, so downstream systems have the data to correlate telephony performance with AI pipeline outcomes
- WebRTC SDK for browser-based calling paths, with the same observability layer applied to WebSocket audio streams as to SIP
If your AI voice agents are producing unnatural pauses, dropped media, or audio quality degradation on Indian numbers, the cause is almost always in the carrier leg — not in the model. Observability at the infrastructure layer is how you confirm that, and how you fix it.
FAQs
What does sub-80ms RTT mean in the context of voice AI?
RTT (Round-Trip Time) on the carrier leg is the time for a SIP signaling packet to travel from Vobiz's infrastructure to the AI platform and back — before any audio has been processed. A sub-80ms carrier RTT means the AI pipeline receives audio and can begin STT processing with minimal infrastructure-imposed delay. Most generic CPaaS carriers produce 150–300ms on this segment for Indian traffic.
Why do global CPaaS platforms add more latency on Indian calls?
Global CPaaS platforms — built primarily for US and EU routing — handle Indian PSTN traffic by routing it through international SIP infrastructure not co-located with Indian carrier interconnects. This introduces multiple additional network hops between the Indian PSTN entry point and the AI inference cluster. Each hop adds latency. Vobiz is built with infrastructure specifically designed for Indian carrier routing, eliminating those unnecessary hops.
What is the resampling problem in voice AI, and how does Vobiz handle it?
The PSTN delivers audio at 8kHz G.711 µ-law. Most STT models expect 16kHz PCM; TTS models typically use 24kHz. Converting between these formats costs 50–150ms per direction — applied to every conversational turn. Vobiz handles the 8kHz ↔ 16kHz/24kHz conversion at the infrastructure edge, so the resampling cost never reaches the application layer or the AI pipeline's latency budget.
Does the <80ms figure hold across urban and rural Indian calls?
Vobiz's infrastructure is designed to handle India's network variability — including the significant quality difference between calls originating in metro areas versus Tier 2 and Tier 3 cities. The RTP media path implementation includes sub-packet-loss recovery that maintains stream continuity under variable network conditions. Specific performance on a given carrier combination can be verified through the Vobiz sandbox before production deployment.
Which AI voice platforms integrate with Vobiz?
Vobiz has production integrations with Vapi, Retell AI, ElevenLabs, LiveKit, Pipecat, Bolna, Ultravox, and OpenAI Realtime — all via SIP trunking or bidirectional WebSocket audio streaming. The full list and setup guides are in the Vobiz integrations overview at docs.vobiz.ai.
How can I verify Vobiz's latency claims before committing to production?
The Vobiz WebRTC Playground provides free sandbox credits for testing. You can place live calls through Vobiz infrastructure to your AI platform and measure the carrier-leg latency directly, on real Indian network paths, before deploying to production.