Why Voice Agents Play by Different Rules
A text-based chat agent has no deadline. A user typing into a chat window will wait two, three, even five extra seconds for a genuinely good answer without registering it as a problem — the interaction is asynchronous by nature, and a thinking indicator absorbs the wait. A voice agent has no such grace period, because it is bound by a timing expectation nobody had to teach anyone: the rhythm of human conversation itself.
That rhythm is not a vague impression — it has been measured directly. A landmark cross-linguistic study published in the Proceedings of the National Academy of Sciences in 2009 recorded natural conversation across ten typologically unrelated languages, from English and Japanese to Tzeltal and Yélî Dnye, and found a strikingly consistent pattern: the gap between one speaker finishing a turn and the next speaker starting has an overall mode of 0 milliseconds and a cross-linguistic median of about 100 milliseconds, with the large majority of turn transitions landing between 0 and 200 milliseconds. That number is close to the physical limit of how quickly a human can plan and launch a spoken response — people are, in effect, starting to formulate their reply before the other person has finished talking.
This guide is written for the operator deciding how to architect a voice agent that will actually run on real phone lines — not for a speech researcher already deep in acoustic modeling. It covers where the latency budget actually goes, how to choose between a cascade pipeline and a unified speech-to-speech model, how barge-in and turn-taking are engineered in practice, what telephony integration actually requires, and — because vendor pages routinely skip this — the regulatory and security questions that decide whether a voice agent should be making outbound calls at all.
The Latency Budget: Where the Milliseconds Go
"Fast model" and "fast agent" are not the same claim, and conflating them is the most common mistake in this space. A voice agent's end-to-end latency — measured from the instant a caller stops talking to the instant the agent's audio starts playing — is the sum of several independent stages, each with its own budget and its own levers.
| Stage | Typical Latency | The Lever That Actually Shortens It |
|---|---|---|
| Speech-to-text (STT) | 100-300ms | Streaming partial transcripts to the LLM before the caller finishes talking, rather than waiting for a final transcript |
| LLM response generation | 350ms-1,000ms | A smaller or distilled model for simple, high-frequency turns; prompt caching for repeated system context |
| Text-to-speech (TTS) | 90-200ms | Streaming audio as it's generated instead of waiting for the full response to synthesize |
| Network round trips | 50-200ms | Co-locating STT, LLM, and TTS providers on the same cloud region, or using a unified speech-to-speech model with no inter-vendor hop |
| Combined (best case) | ~600ms-1.7s | Still 3-8x the ~100ms human conversational baseline — the honest target, not a finish line |
Two engineering patterns do more to close this gap than swapping any single vendor for a marginally faster one. The first is streaming rather than waiting at every stage: streaming partial transcripts from STT into the LLM before the caller has finished their sentence, and streaming synthesized audio from TTS as soon as the first few words of a response are ready rather than waiting for the full utterance to render. The second is model-size routing — using a smaller, cheaper, faster model for short, predictable turns (confirmations, simple lookups) and reserving a larger model only for turns that genuinely need it, rather than paying the same latency tax on every single exchange in a call.
Our own general-purpose guide to AI agent latency engineering covers streaming, parallel tool calls, speculative decoding, and model routing in more depth for agents generally; everything in that guide applies to the LLM stage of a voice pipeline specifically, layered underneath the STT and TTS latency this article covers on top of it.
Cascade Pipelines vs. Unified Speech-to-Speech Models
There are two fundamentally different ways to architect the core of a voice agent, and the choice shapes almost every other decision downstream of it.
| Approach | How It Works | Strength | Weakness | Best Fit |
|---|---|---|---|---|
| Cascade pipeline | Separate STT, LLM, TTS | Full transcript visibility, swap any component, easiest to debug and eval | More stitching latency, more vendor coordination | Most production voice agents in 2026; teams that need to swap components or keep detailed transcripts |
| Unified speech-to-speech | One model, audio in and out | No inter-stage stitching latency, often more natural prosody and emotional tone | Vendor lock-in, less visibility into intermediate reasoning | Greenfield builds already committed to one ecosystem (OpenAI, Google, or AWS) |
A cascade pipeline keeps speech-to-text, the language model, and text-to-speech as separate, swappable components — Deepgram or AssemblyAI for transcription, any LLM provider, and ElevenLabs or Cartesia for synthesis, stitched together with a framework like Pipecat or LiveKit Agents. Its advantage is visibility and flexibility: you have a full text transcript at every stage for logging and evaluation, and you can swap any single component — a better TTS voice, a cheaper STT provider — without touching the rest of the stack. Its cost is stitching latency: every hop between vendors adds a network round trip on top of each stage's own processing time.
A unified speech-to-speech model collapses that into one model that takes audio in and produces audio out directly, with no intermediate text-generation stage a developer can inspect. OpenAI's Realtime API (the gpt-realtime model family), Google's Gemini Live API — generally available on Vertex AI and built on Gemini's Flash Native Audio model — and Amazon's Nova 2 Sonic on Bedrock are the three major production examples as of 2026. Nova 2 Sonic in particular now integrates natively with Amazon Connect and with third-party telephony providers including Twilio, Vonage, and AudioCodes, as well as the open-source frameworks Pipecat and LiveKit, which narrows one of the traditional gaps between the unified and cascade approaches.
Barge-In and Turn-Taking: The Hardest Part to Get Right
Barge-in — a caller interrupting the agent mid-sentence and the agent actually stopping to listen — is the single most under-tested mechanism in voice agent builds, and it's the one most likely to make a technically fast agent still feel broken to a real caller.
The mechanism underneath barge-in is Voice Activity Detection (VAD), scoring the incoming audio stream continuously while the agent is still speaking. A production-grade implementation combines three signals rather than relying on any one alone: an energy threshold (commonly tuned in the range of -45 to -35 dBFS) to catch genuine speech volume, a voice-versus-noise classifier to distinguish an actual human voice from background sound, and a minimum-duration guard — typically 200 to 300 milliseconds of sustained voice — before the system commits to treating it as a real interruption rather than a cough, a door closing, or a moment of line noise.
- Too sensitive: The agent stops talking every time a dog barks, a TV plays in the background, or the caller clears their throat — it feels twitchy and unreliable rather than responsive.
- Too conservative: Callers learn they have to raise their voice or talk over the agent repeatedly to be heard at all, which reads as the agent not listening rather than as the agent being deliberate.
- Correctly tuned: The agent yields the floor within roughly 200-300ms of genuine speech onset and stays quiet through background noise — which requires tuning against real phone-line audio, not clean studio recordings, before launch.
Turn-taking is the conversational policy layered on top of barge-in detection: deciding not just whether the caller is speaking, but whether a pause means they're finished or just thinking. Semantic turn-detection — using the content of what's been said so far, not just silence duration, to judge whether a turn is actually complete — is where the newer unified speech-to-speech models and modern VAD libraries are investing specifically, since a caller who pauses mid-sentence to think should not trigger the agent jumping in.
Telephony Integration: SIP, WebRTC, and the PSTN Bridge
Everything above assumes audio is already flowing between a caller and your agent — telephony is the layer that actually makes that connection exist, and it's where a voice agent build most often collides with infrastructure most AI teams have never had to touch before.
A call from a traditional phone number travels over the PSTN (the Public Switched Telephone Network) and needs to be bridged into an IP-based system your agent can process — that bridge is handled by SIP (Session Initiation Protocol) trunking, the standard signaling protocol for setting up, managing, and tearing down a call over an IP network. A web-based voice interaction — a caller talking to an agent embedded in a browser or app rather than dialing a phone number — instead typically uses WebRTC, the browser-native standard for real-time audio and video. A production voice agent handling real phone calls needs to speak SIP at minimum, and increasingly WebRTC as well if it also supports in-app or in-browser voice interactions.
Three tiers of provider sit underneath this, and picking the right one depends on how much of the stack you want to own. A CPaaS provider that owns its own telecom infrastructure — Telnyx or Bandwidth — gives you the lowest-level control and typically the lowest per-minute cost at scale. A CPaaS provider that orchestrates across partner carriers rather than owning the network — Twilio, historically the default choice — trades some of that control for broader ecosystem maturity and documentation. And an open-source real-time media layer — LiveKit's WebRTC-based media server, paired with LiveKit Agents, or Pipecat, the BSD-licensed framework built by Daily for pipelining audio through STT, an LLM, and TTS — sits a level above raw telephony, letting you assemble your own pipeline against whichever underlying SIP or WebRTC provider you choose.
The Vendor Landscape in 2026
Voice AI infrastructure attracted serious capital through 2026, and the funding activity is a genuinely useful signal for which platforms are likely to still be well-supported a year from now — not a substitute for evaluating the product directly.
| Vendor | Category | Notable 2026 Development | Date |
|---|---|---|---|
| ElevenLabs | TTS / conversational AI platform | $500M Series D at $11B valuation; cut conversational AI pricing to $0.10/minute | Feb 4, 2026 (funding) |
| Deepgram | STT / voice AI infrastructure | $130M Series C at $1.3B valuation, newest unicorn in voice AI | Jan 13, 2026 |
| Vapi | Bundled voice agent platform | $50M Series B at ~$500M valuation; Amazon Ring routes 100% of inbound support calls through it | May 12, 2026 |
| Retell AI | Bundled voice agent platform | Reported to have reached $50M ARR without a disclosed funding round, per industry coverage | As reported, 2026 |
| Bland AI | Bundled voice agent platform | Positioned by third-party comparisons around high-volume outbound calling | As reported, 2026 |
| OpenAI (Realtime API) | Unified speech-to-speech model | Audio input priced at $32/million tokens (~$0.06/min), output at $64/million tokens (~$0.24/min) | Current pricing, 2026 |
| Google (Gemini Live API) | Unified speech-to-speech model | General availability on Vertex AI, built on the Gemini Flash Native Audio model | 2026 |
| Amazon (Nova 2 Sonic) | Unified speech-to-speech model | Native integration with Amazon Connect, Twilio, Vonage, AudioCodes, LiveKit, and Pipecat | Dec 2025 launch |
| Twilio / Telnyx / Bandwidth / SignalWire | Telephony / CPaaS layer | SIP trunking, PSTN bridging, and managed STIR/SHAKEN signing | Ongoing infrastructure layer |
A methodology note, because this table is doing comparative work: we scored these vendors here only on funding status, scale signal (reported call volume, named enterprise customers), and pricing where publicly stated — all dated and attributed to the specific source. We deliberately did not score, rank, or repeat any vendor's own claimed accuracy, containment, deflection, or ROI figures, because none of the vendors above published a methodology alongside those numbers that would let a reader verify them independently. If a vendor's sales material cites a specific accuracy or resolution-rate percentage, ask for the underlying evaluation methodology before treating it as comparable to another vendor's number — the two are very unlikely to have been measured the same way.
For a deeper comparison of the orchestration frameworks underneath several of these platforms — not voice-specific, but directly relevant if you're routing tool calls or multi-agent handoffs behind a voice front end — see our AI agent orchestration frameworks guide.
Regulatory Status: TCPA, Disclosure, and STIR/SHAKEN
Voice agents that call real phone numbers — especially outbound — sit inside one of the most actively litigated corners of telecom law in the country, and getting the precise status of each rule right matters more here than almost anywhere else in this guide, because "in force," "vacated," and "proposed" carry genuinely different obligations.
| Rule or Question | Current Status | Detail |
|---|---|---|
| AI-generated voice = "artificial voice" under the TCPA | In force | FCC Declaratory Ruling FCC 24-17, adopted Feb 8, 2024 — no vacatur found as of this writing |
| FCC's "one-to-one consent" rule for telemarketing calls using an artificial voice | Vacated nationwide | Eleventh Circuit, Insurance Marketing Coalition v. FCC, Jan 24, 2025 — FCC reinstated the prior rule |
| FCC's prior express written consent requirement (as applied in TCPA litigation) | Rejected within the Fifth Circuit; not a nationwide rule change | Fifth Circuit, Bradford v. Sovereign Pest Control, Feb 26, 2026 — held oral consent can suffice, creating a circuit split |
| Federal requirement to disclose an AI voice is being used on a call | Proposed, not binding | FCC NPRM adopted Aug 7, 2024; not finalized as of this writing, with trackers estimating late 2026 or later |
| STIR/SHAKEN caller ID authentication and robocall mitigation certification | In force, ongoing obligation | FCC call-authentication rules; annual Robocall Mitigation Database recertification; third-party signing rules effective Sept 2025 |
The core substantive rule is settled and in force: the FCC's Declaratory Ruling FCC 24-17, adopted February 8, 2024, affirmed that an AI-generated voice qualifies as an "artificial voice" under the Telephone Consumer Protection Act — meaning a robocall using an AI-generated voice is subject to the same prior-consent requirements as any prerecorded call, and we found no indication this specific ruling has been vacated or stayed.
What is genuinely unsettled is the mechanics of that consent. The Eleventh Circuit vacated the FCC's stricter "one-to-one consent" rule nationwide on January 24, 2025, in Insurance Marketing Coalition Limited v. FCC, holding the FCC had exceeded its statutory authority; the FCC subsequently reinstated the prior consent rule. Just over a year later, on February 26, 2026, the Fifth Circuit held in Bradford v. Sovereign Pest Control of TX, Inc. that the TCPA permits either oral or written consent for autodialed or artificial-voice telemarketing calls, explicitly rejecting the FCC's written-consent-only reading — a holding that applies within that circuit specifically, per the Supreme Court's Loper Bright framework giving courts latitude to interpret the statute independent of FCC regulations, rather than a nationwide rule change. The practical upshot: verify your specific consent posture against current law in the jurisdictions you actually operate in, rather than assuming a single compliance template holds everywhere.
A separate, still-proposed rule would require disclosing that a caller is talking to AI at all. The FCC adopted a Notice of Proposed Rulemaking on August 7, 2024 that would establish new consent and identification disclosure requirements specifically for AI-generated calls and texts. It has not been finalized into a binding rule as of this writing, and industry trackers following the docket estimate a final rule is unlikely before late 2026 at the earliest, with current FCC leadership's stated deregulatory priorities a real factor in further delay. Treat it as a rule to design toward, not one you're already bound by federally — while checking independently whether your state has moved faster with its own disclosure requirement.
Finally, every call your agent places or receives over the PSTN runs through the STIR/SHAKEN caller ID authentication framework, which your telephony or CPaaS provider is required to implement on the IP portions of its network, alongside an annually recertified robocall mitigation plan filed in the FCC's Robocall Mitigation Database. New third-party signing rules effective September 2025 require a provider with a signing obligation to sign calls with its own certificate rather than a third party's — worth confirming directly with your telephony vendor if you're placing outbound calls at meaningful volume.
Security: Audio Prompt Injection and Voice Cloning
A voice agent that listens to an open phone line is processing untrusted input continuously, in real time, from anyone who can get a call connected to it — and prompt injection through that audio channel is not a solved problem. Treat it as a genuine, live attack surface, not a hypothetical one this guide is raising out of caution.
Audio is a structurally different injection surface than text or an uploaded image, because it doesn't require a file upload or a crafted document — it's captured continuously over an open line, which makes an always-listening agent exposed to instructions spoken directly into the call in real time. Published research through 2026 has demonstrated "concurrent" audio injection techniques that embed semantically instruction-like content designed to hijack a multimodal agent's attention away from a legitimate speaker's concurrent speech, and separate benchmarking work has specifically measured how large audio-language models respond when adversarial audio is injected alongside normal conversational input.
Voice cloning adds a second, related risk specific to this modality: a caller impersonating another person's voice to social-engineer either a human agent or an AI voice agent into an action it shouldn't take. Caller-ID spoofing compounds it further — the same STIR/SHAKEN framework covered above exists specifically because caller ID has historically been trivial to fake.
What It Actually Costs to Run, Per Minute
Voice agent economics are genuinely per-minute, not per-request the way most text agent pricing works, and the number varies enough by architecture that a vendor's headline price is rarely the whole answer.
On the unified speech-to-speech side, OpenAI's Realtime API prices audio input at $32 per million tokens — roughly $0.06 per minute of audio — and audio output at $64 per million tokens, roughly $0.24 per minute, with a substantially cheaper cached-input rate available for repeated system context across a call. On the cascade side, ElevenLabs cut its conversational AI pricing to $0.10 per minute in early 2026, which covers its own text-to-speech and orchestration layer but not a separately billed STT or LLM cost if you're not running its full bundled stack end to end. Telephony itself — the SIP trunk or CPaaS leg carrying the actual phone call — is typically a smaller, separate per-minute line item on top of whichever AI stack sits behind it.
The honest way to budget this is to model your full stack's blended per-minute cost against your real expected call volume and average call length, not to compare a single vendor's headline number against another's — a bundled platform's all-in per-minute price and a self-assembled cascade stack's summed STT-plus-LLM-plus-TTS-plus-telephony cost are answering the same question from two different starting points.
A Worked Scenario: A 40-Location Dispatch Line
To make the latency and cost tradeoffs concrete, consider an illustrative scenario — not a client engagement, but a worked example built from the real figures cited throughout this guide. A regional home-services operator running 40 locations fields roughly 3,000 inbound dispatch calls a month, each averaging four minutes: routing a caller to the right local crew, confirming an appointment window, and escalating anything unusual to a human dispatcher.
At 3,000 calls averaging four minutes, that's 12,000 minutes of monthly call volume. A cascade pipeline built on a mid-tier STT provider, a routing-sized LLM for the simple confirmation turns, and a streaming TTS voice could reasonably target the 600ms-1.7s latency band this guide describes as achievable, with per-minute AI costs — excluding telephony — landing somewhere between the ElevenLabs-style $0.10/minute conversational tier and a fuller custom stack, depending on which STT and LLM combination is chosen; telephony itself adds a separate, smaller per-minute charge from whichever SIP or CPaaS provider carries the calls. The arithmetic that actually matters for a decision here is comparative, not a single number: at this volume, the operator is weighing a bundled platform's simpler all-in per-minute price against the lower marginal cost, but higher up-front engineering cost, of a custom cascade stack — and the honest answer depends on the operator's specific call complexity and growth trajectory, not on which architecture is abstractly "better."
The part of this scenario most operators underestimate isn't the AI cost at all — it's the barge-in tuning work. A dispatch line fields calls from job sites, moving trucks, and outdoor locations with real background noise, which is exactly the condition under which a poorly tuned VAD either interrupts constantly or can't be interrupted at all. Budgeting real time against that specific tuning step, against real call recordings rather than clean studio audio, is what separates a pilot that works in a demo from one that holds up on a Tuesday afternoon with a crew running a leaf blower in the background.
A Build Order That Avoids the Common Failure Modes
Generalizing from the tradeoffs covered above into an actual build sequence for an operator adding a voice agent:
| Step | What to Do | Type of Change | What Goes Wrong Without It | Why This Order |
|---|---|---|---|---|
| 1 | Decide cascade vs. unified speech-to-speech before writing any integration code | Architecture decision | You build against one latency and debugging model, then discover mid-build you need the other's tradeoffs | Map your actual requirement for transcript visibility, component-swapping, and vendor lock-in tolerance first. |
| 2 | Prototype on a bundled platform before committing to a custom stack | Product validation | Weeks spent building custom telephony and pipeline infrastructure before confirming voice AI even fits the use case | Vapi, Retell, or Bland gets a real, testable pilot live in days, not weeks. |
| 3 | Tune barge-in against real phone-line audio, not clean studio audio | QA / tuning | An agent that works in a demo but can't handle a caller in a car or a noisy kitchen | Test the VAD energy threshold and minimum-duration guard against actual PSTN call recordings before launch. |
| 4 | Instrument full call transcripts and a real eval set before scaling volume | Logging / observability | No way to measure whether the agent is actually handling calls correctly at scale, only anecdotal spot-checks | Build a held-out set of realistic call scenarios and track pass rate and cost-per-resolution over time, not just uptime. |
| 5 | Document your TCPA consent mechanism and STIR/SHAKEN posture in writing before outbound launch | Governance / compliance | The first real complaint or carrier flag becomes the moment you improvise a compliance answer | Confirm with your telephony provider exactly how consent is captured and how STIR/SHAKEN signing is handled on your account. |
| 6 | Move off the bundled platform only once you've hit a specific, named limitation | Ongoing | A costly rebuild driven by a preference for owning more of the stack rather than an actual constraint | Pipecat or LiveKit Agents directly, once per-minute cost, a compliance gap, or a component swap the platform won't allow forces the move. |
The order matters for the same reason it does in any agent build: the expensive mistakes in voice agent projects are almost always architectural decisions made too early or too late, not model-quality problems. Deciding cascade versus unified before writing integration code, and deciding whether to own telephony infrastructure only after hitting a specific limitation on a bundled platform, are the two decisions most worth getting right in the order shown above rather than reversing.
What This Costs to Build
Voice agent work scopes the same way the rest of our agent-architecture work does: a discovery phase that maps your real latency and call-volume requirements before any code changes, a single-workflow build for a first, well-scoped call type, a platform build for operators handling several call types, and an enterprise band for organizations with real regulatory exposure.
| Engagement | Price | Timeline | What's Included |
|---|---|---|---|
| Discovery + architecture audit | $9k-$22k | 2-4 weeks | Real call-volume mapping, latency requirements, and whether a bundled platform or custom cascade pipeline fits your use case |
| Single-workflow build | $28k-$70k | 4-9 weeks | One voice agent handling one well-scoped call type, tuned barge-in, and a full transcript-and-eval pipeline |
| Multi-workflow platform build | $70k-$180k | 9-16 weeks | Inbound and outbound across several call types, shared telephony infrastructure, and centralized evaluation |
| Enterprise / regulated build | $180k-$420k+ | 14-24 weeks | Documented TCPA consent and disclosure policy, STIR/SHAKEN-compliant telephony, and HIPAA- or PCI-scoped architecture where applicable |
Senior-led delivery runs $150 to $225 per hour, retainers run $2,500 to $9,500 per month, and every engagement carries a 30-day post-launch warranty. Book a discovery call at calendly.com/frenchydigital/discovery-call or call +1 (424) 272-5601, and you receive a written, fixed-price phased proposal within five business days.
Red Flags to Check Before You Commit
A short, consolidated list worth checking against any voice agent vendor or platform pitch, gathered from the specific claims this guide had to verify or refuse above.
| Claim | Why It's a Red Flag |
|---|---|
| A vendor claims their voice agent "feels human" with a specific millisecond latency figure and no measurement methodology | The one rigorously sourced number in this space is the ~100ms human conversational baseline from peer-reviewed research (Stivers et al., 2009) — a vendor's own unaudited latency claim, measured under unstated network and call conditions, is not the same kind of evidence. |
| A platform says it's "TCPA compliant" with no mention of which specific consent requirement it's built around | The one-to-one consent rule was vacated nationwide, and the written-consent-only reading was rejected within the Fifth Circuit — a bare compliance claim with no stated consent mechanism doesn't tell you what it's actually compliant with. |
| Someone describes an AI-voice disclosure requirement as if it's already federal law | It's a proposed rule (NPRM adopted August 2024) that had not been finalized as of this writing — treat any compliance deadline built around it as an estimate, not a fact, and check your state's own rules independently. |
| A vendor's adoption or call-volume figure has no stated date or measurement window attached | Funding valuations and call-volume claims in this space move fast — a number with no date attached (this guide dates every one it cites) tells you nothing about current standing. |
| A voice agent vendor claims prompt injection or voice cloning "isn't a risk" for their platform | Published 2026 research has demonstrated real audio injection techniques against multimodal agents; treat any claim that this is a solved problem, for any vendor, as unverified until you've seen their specific mitigation architecture. |
Limitations and What We Could Not Verify
This guide is explicit about where its own verification stopped. The specific latency breakdown in the latency-budget table (100-300ms STT, 350ms-1,000ms LLM, 90-200ms TTS, 50-200ms network) reflects a range synthesized from vendor-published technical guides and benchmark pages, attributed as such — we did not independently run a controlled latency benchmark across these vendors ourselves, and a specific deployment's real numbers will vary by provider, region, and call complexity. Cartesia's reported synthesis-latency figures and other vendor-specific performance claims referenced in this space generally are vendor-reported rather than independently audited, and we have not included any specific unattributed number as fact.
We did not independently verify Retell AI's reported $50M ARR figure or Bland AI's outbound-volume positioning beyond the third-party industry coverage cited — both are reported here as industry-reported claims, not audited figures. We also did not test any vendor's platform hands-on as part of writing this guide; the architecture, latency, and telephony descriptions above reflect each vendor's own documentation and named press coverage, not our own benchmarking.
The regulatory landscape described in this guide — particularly the Fifth Circuit's February 2026 ruling and the still-pending FCC disclosure NPRM — is genuinely unsettled and actively moving; a reader making a real compliance decision should verify current status directly with counsel before it factors into a launch timeline, rather than treating this guide's September 2026 snapshot as still current by the time they read it. Finally, this is a fast-moving infrastructure space — several of the vendors and models referenced shipped meaningful updates within the twelve months before this guide was written, and per-minute pricing in particular should be reconfirmed directly against each vendor's current pricing page before it factors into a budget.
Get Your Voice Agent Architecture Audited in One Call
Book a free 60-minute discovery call with Frenchy Digital, a senior-led Black-owned Los Angeles agency. We map your real latency budget, tune barge-in against your actual call volume, and send a written, fixed-price phased proposal within 5 business days.
1517 S Bentley Ave Unit 204, Los Angeles CA 90025
Frequently Asked Questions
Sources & References
- 1PNAS — Stivers et al., "Universals and Cultural Variation in Turn-Taking in Conversation" (2009)↗
- 2Federal Communications Commission — Declaratory Ruling FCC 24-17 on AI-Generated Voices Under the TCPA↗
- 3Harvard Journal of Law & Technology Digest — FCC Cracks Down on AI-Powered Robocalls↗
- 4Justia — Insurance Marketing Coalition Limited v. FCC, No. 24-10277 (11th Cir. Jan. 24, 2025)↗
- 5Womble Bond Dickinson — Fifth Circuit Rejects FCC's Prior Express Written Consent Requirement (Bradford v. Sovereign Pest Control)↗
- 6Federal Register — Implications of AI Technologies on Protecting Consumers From Unwanted Robocalls and Robotexts (NPRM)↗
- 7Federal Communications Commission — Combating Spoofed Robocalls With Caller ID Authentication (STIR/SHAKEN)↗
- 8Federal Register — Call Authentication Trust Anchor, Third-Party Signing Rules↗
- 9OpenAI — Introducing gpt-realtime and Realtime API Updates for Production Voice Agents↗
- 10Google Cloud Blog — How to Use Gemini Live API Native Audio in Vertex AI↗
- 11AWS — Announcing Amazon Nova 2 Sonic for Real-Time Conversational AI↗
- 12AWS Documentation — Nova 2 Sonic Model Card (Amazon Bedrock)↗
- 13TechCrunch — ElevenLabs Raises $500M From Sequoia at an $11 Billion Valuation↗
- 14Deepgram — Press Release: Deepgram Raises $130M Series C at $1.3B Valuation↗
- 15TechCrunch — Vapi Hits $500M Valuation as Amazon Ring Chose Its AI Platform Over 40 Rivals↗
- 16GlobeNewswire — Vapi Raises $50M Series B as It Reaches 1 Billion Calls↗
- 17arXiv — Piggybacking on Perception: Stealthy Concurrent Audio Prompt Injections Against Multimodal LLM Agents↗
- 18arXiv — Evaluating Robustness of Large Audio Language Models to Audio Injection: An Empirical Study↗
- 19GitHub — pipecat-ai/pipecat: Open Source Framework for Voice Agents and Real-Time AI↗
- 20Deepgram — Voice Agent Architecture: STT, LLM, and TTS Pipeline Design Guide↗
- 21Telnyx — Voice AI Agents Compared on Latency: 2026 Benchmarks↗

