MLAIA · Machine Learning & AI Approach
Signal & Audio AI

Voice AI Grows Up: Engineering Production Speech Systems in 2026

July 6, 2026 · 9 min read · By Dr. Yochai Edlitz, Founder & CEO, MLAIA

The voice AI market crossed $22 billion in 2026, and for the first time, the technology has matured enough that the hard engineering problems are no longer "can we make this work?" but "how do we make this reliable, fast, and economically viable at scale?" Sixty-seven percent of Fortune 500 companies have deployed some form of voice AI in customer-facing workflows — up from 41% in 2024. Yet most production systems engineering teams have had to learn the hard lessons themselves: latency that felt acceptable in a demo becomes intolerable at 500 concurrent calls; multilingual models that scored well on benchmarks collapse on regional accents; and the per-call economics that looked attractive at low volume don't hold when you're running 50,000 interactions a day.

This post is a production engineering guide, not a market overview. It covers the architectural decisions that define whether a voice AI system delivers or disappoints — from the fundamental choice between cascaded and end-to-end architectures, through the latency physics of real-time conversation, to the specific challenges of deploying voice AI in multilingual environments like Israel.

$22B
global voice AI market size in 2026
67%
Fortune 500 companies with production voice AI deployments
<500ms
end-to-end latency required for natural conversation feel
$0.40
typical per-call cost for AI vs $7–12 for human agents

1. The Architecture Decision That Defines Everything

When you set out to build a production voice AI system, the first and most consequential decision is architecture. There are two fundamentally different approaches, and the choice between them shapes every downstream engineering decision.

The cascaded pipeline: STT → LLM → TTS

The cascaded pipeline is the dominant pattern in production today. Speech-to-text (STT) converts the user's audio into a text transcript. A language model processes that transcript and generates a text response. Text-to-speech (TTS) synthesizes the response back into audio. Each stage is a discrete, independently optimizable component.

The advantages are substantial: each component can be swapped, fine-tuned, or replaced independently; failure modes are isolated and debuggable; the LLM operates on text, which means it benefits directly from the full sophistication of modern language models without any voice-specific adaptation; and mature tooling exists for monitoring each stage. Most enterprise voice AI systems running in production today are cascaded pipelines, and for good reason.

The disadvantage is latency. Each stage introduces processing time, and the stages are largely sequential. In a well-optimized cascaded pipeline, the STT model begins generating partial transcripts as the user speaks (streaming), the LLM begins generating tokens before the transcript is complete (speculative completion), and the TTS begins synthesizing as soon as the first sentence of the LLM response is ready (sentence-level streaming). Even with these optimizations, the physics of sequential processing impose a floor of roughly 300–600ms for the first audio byte out, depending on model sizes and infrastructure.

Speech-to-speech: the emerging alternative

Speech-to-speech (S2S) models — systems like GPT-4o Audio, Kyutai's Moshi, and Google's AudioLM derivatives — bypass the text representation entirely. They process audio input and generate audio output as a single end-to-end model, theoretically capturing paralinguistic information (tone, emotion, speaking rate, hesitation) that text transcripts discard.

The promise is compelling: sub-200ms response latency, more natural prosody, and the ability to respond to vocal affect rather than just word content. The production reality in 2026 is more nuanced. S2S models are significantly larger and more expensive to serve than cascaded equivalents. They are harder to fine-tune on domain-specific content because there's no text intermediate to adapt. Debugging a failure in an S2S system is substantially harder than debugging a failure in a cascaded pipeline where you can inspect the transcript and text response independently. And hallucination monitoring — critical in regulated applications — requires a text representation that S2S systems don't natively provide.

Dimension Cascaded (STT→LLM→TTS) Speech-to-Speech
Time to first audio byte 300–600ms (optimized) 100–250ms
Debuggability High — text at every stage Low — opaque end-to-end
Domain fine-tuning Straightforward via text Expensive, requires audio data
Per-call compute cost Lower (smaller independent models) Higher (large unified model)
Paralinguistic awareness Lost at STT stage Preserved end-to-end
Production maturity High — battle-tested Emerging — limited production data
Hallucination monitoring Text-based monitoring works Requires audio-level analysis

The practical recommendation for 2026: if your latency requirement is above 400ms first-audio-byte and your use case requires domain adaptation or compliance monitoring, build on a cascaded pipeline with aggressive streaming optimization. If you're building a consumer conversational product where naturalness is paramount and latency is sub-400ms, S2S is worth prototyping — but plan for limited debuggability and higher infrastructure costs.

2. The Sub-500ms Latency Budget

Human conversation has a remarkably narrow tolerance window. Psychoacoustic research places the threshold for "natural" turn-taking latency at approximately 200ms — that's how quickly humans respond to each other in fluid conversation. In practice, voice AI systems can get away with 400–500ms before users consciously register awkward pauses, and up to 700ms before the interaction starts to feel robotic. Beyond 1 second, the experience degrades sharply and callers begin to disengage.

Breaking down a typical cascaded pipeline latency budget (target: 450ms first audio byte):

Total: 280–620ms. The range is wide because each component has high variance depending on model size, hardware, and optimization level. The components that most teams underinvest in are VAD endpoint detection (which controls how quickly the system decides the user has finished speaking) and LLM first-token latency (which is dominated by model size and quantization choices).

The Streaming Imperative: A non-streaming pipeline — one that waits for complete STT output before starting LLM inference, and complete LLM output before starting TTS — has a latency floor of approximately 1.5–3 seconds. This is not a production architecture for conversational voice AI. Every stage must stream: VAD must emit word-level boundaries, LLM inference must begin on partial transcripts, and TTS must synthesize sentence-by-sentence as tokens arrive. Teams that discover this late in development face a non-trivial re-architecture effort.

3. The Economics: $0.40 vs $7–12 Per Call

The business case for voice AI in customer service and telephony applications is built on a stark cost differential. Human agents in a typical contact center cost $7–12 per handled interaction when fully-loaded (salary, benefits, training, management overhead, facility costs). A well-engineered voice AI system handling the same interaction costs $0.30–0.55 at current API and infrastructure rates.

That $0.40 figure breaks down approximately as follows for a 3-minute automated call:

The total lands at roughly $0.40, with TTS typically being the largest single cost component. This is also the component with the most variance: ElevenLabs-quality neural TTS at $0.30/1000 characters versus Google WaveNet at $0.016/1000 characters represents a 19× difference in TTS cost alone, which translates to a meaningful difference in per-call economics at scale. The right TTS choice is a function of voice quality requirements and call volume.

One important caveat: the 95th percentile of calls handled by AI is not the same as the 95th percentile of calls that humans handle. Voice AI systems today still struggle with highly ambiguous requests, strong emotional states, and multi-party scenarios. The practical model is a hybrid: AI handles the 60–75% of interactions that are routine and well-structured; human agents handle the tail. The effective per-interaction cost for the hybrid model is substantially lower than pure-human, even though the AI portion isn't fully autonomous.

4. The STT Landscape: Open-Source vs Cloud

Speech-to-text has seen more competitive disruption in the past two years than any other component of the voice AI stack. OpenAI's Whisper — released as open weights — established a new benchmark for accuracy and multilingual coverage, and the derivative ecosystem (Faster-Whisper, WhisperX, Distil-Whisper) has made high-quality ASR deployable on commodity hardware. At the same time, commercial STT providers have responded with models that significantly outperform vanilla Whisper on real-time streaming, speaker diarization, and domain-specific vocabulary.

Whisper and its derivatives

OpenAI's Whisper large-v3 remains a strong baseline for offline and near-realtime transcription, particularly for languages beyond English. The open-weights model runs on a single A10G GPU and handles most European and Middle Eastern languages including Hebrew with reasonable accuracy. Faster-Whisper (CTranslate2 backend) delivers 4–6× throughput improvement over the original PyTorch implementation with identical accuracy — this is the go-to for on-prem deployment where controlling costs and data residency matters. Distil-Whisper-large-v3 trades ~1.5% WER degradation for 5.8× faster inference, making it the practical choice when latency is critical and a GPU farm isn't available.

Deepgram Nova-3

Deepgram's Nova-3 is consistently the strongest choice for English-first production applications where streaming latency is the primary constraint. Nova-3 delivers word-level timestamps, real-time partial transcripts with low word error rate, and purpose-built speaker diarization — all at $0.0043/minute. Its streaming latency (time from word spoken to word in transcript) runs approximately 200–300ms in production, which is lower than Whisper streaming variants. The tradeoff is multilingual support: Nova-3's Hebrew and Arabic accuracy lags behind English by a meaningful margin.

Google Speech-to-Text v2 and Azure Speech

Google's STT v2 and Azure Cognitive Services Speech both offer strong multilingual coverage including Hebrew, Arabic, and code-switching between them. Both provide streaming APIs with competitive latency and built-in telephony integrations (8kHz G.711 support without upsampling). For deployments that are already cloud-committed to GCP or Azure, the native integrations simplify infrastructure. Google's chirp_2 model, announced in late 2025, delivers notably better accuracy on accented speech across 100+ languages including Hebrew.

On-Prem STT Considerations: For Israeli defense, healthcare, and regulated financial deployments where no audio can transit the public internet, the self-hosted path is Faster-Whisper large-v3 on an on-prem GPU or a bare-metal cloud instance with data residency guarantees. The model runs comfortably on an NVIDIA A10G (24GB VRAM) at 40–60 concurrent real-time streams. For Hebrew-specific production use, a fine-tuned Whisper variant trained on Israeli telephone speech data substantially outperforms the base multilingual model.

5. The Israeli Voice AI Ecosystem

Israel has a disproportionately large voice AI ecosystem relative to its market size, driven by a combination of strong NLP research (Hebrew is a morphologically complex language that generated significant academic work), defense and intelligence applications that pushed voice recognition development decades before the commercial market, and a dense startup culture in the audio and speech space.

Verbit

Verbit is the most prominent Israeli company operating at the intersection of voice AI and transcription, with a focus on the legal, education, and media verticals. Its hybrid AI-plus-human correction model has been its commercial differentiator — AI handles the bulk transcription, human specialists handle the accuracy-critical corrections. The company has raised over $550M and serves clients across 50+ countries. For enterprises evaluating transcription infrastructure, Verbit's API is worth assessing against Deepgram and Rev.ai for accuracy on accented or domain-specific speech.

Hyro

Hyro builds conversational AI for healthcare, specifically targeting patient-facing voice interactions in hospital and clinic settings. Its architecture is domain-specific: rather than a general LLM, Hyro uses a hybrid approach with a knowledge graph representing the healthcare facility's specific information (department locations, appointment types, provider availability) combined with NLP for intent classification. This makes it significantly more accurate and hallucination-resistant for its target domain than a general-purpose LLM-based voice agent, at the cost of requiring structured knowledge ingestion. Active in Israel and the US healthcare market.

Hi Auto

Hi Auto focuses on drive-through and quick-service restaurant (QSR) voice AI — one of the most demanding acoustic environments for speech recognition due to background noise, multiple simultaneous speakers, and the need for near-perfect order accuracy. The company has deployed in hundreds of locations in Israel and the US, and its acoustic preprocessing pipeline for high-noise environments is a notable engineering differentiator. For any voice AI application in challenging acoustic environments (factory floors, open-plan offices, outdoor settings), Hi Auto's acoustic preprocessing approach is a useful reference architecture.

Voiceitt

Voiceitt works at the intersection of voice AI and accessibility, focusing specifically on users with non-standard speech patterns — people with ALS, cerebral palsy, stroke survivors, and others whose speech deviates significantly from the training distribution of standard STT models. The company's approach of training personalized acoustic models on small amounts of user-specific audio is a technically interesting counterpoint to the trend toward large universal models. For any voice AI application targeting accessibility or serving user populations with diverse speech patterns, Voiceitt's personalization architecture is worth studying.

6. Hebrew and Multilingual Engineering Challenges

Hebrew presents a distinctive set of engineering challenges for voice AI that are worth understanding in detail, both because Israeli enterprises deploying voice AI will encounter them directly and because they illustrate the class of problems that emerge in any morphologically complex language.

The code-switching problem

Israeli speech in professional and commercial settings almost never stays in pure Hebrew. Technical terms, brand names, English-origin words, and switches to full English sentences are constant. A customer service interaction about a software product might contain 60% Hebrew, 30% English technical vocabulary, and 10% borrowed words that could be transcribed in either language. Standard ASR models are trained on "clean" single-language audio and degrade significantly on code-switched input. The production solution requires either a model specifically trained on code-switched Hebrew-English audio or a multi-language hypothesis approach where the transcription engine maintains competing hypotheses in both languages and selects based on downstream language model probability.

Morphological complexity

Hebrew is a root-and-pattern morphological system where prefixes, suffixes, and infixes carry grammatical meaning that is critical for semantic interpretation. The word "מהבנק" (from the bank) contains a preposition, a definite article, and a noun fused into a single orthographic unit. STT models that operate at the word level rather than the morpheme level lose this information. For downstream intent classification and entity extraction tasks, morphological segmentation as a post-processing step significantly improves accuracy compared to treating Hebrew words as atomic tokens.

TTS quality for Hebrew

Naturalness in Hebrew TTS lags English by roughly two generations. The best available Hebrew neural TTS voices (Google WaveNet Hebrew, Amazon Polly Hebrew) are intelligible but not conversational — they sound formal and slightly robotic compared to equivalent English models. ElevenLabs added Hebrew support in 2025, and its Hebrew voices represent the current state of the art for naturalness, though at higher cost. For production deployments where voice quality is a significant user experience factor, voice cloning with a custom Hebrew voice actor recording roughly 2–4 hours of prompted speech is a viable path using current voice cloning technology. The resulting custom voice substantially outperforms off-the-shelf Hebrew TTS on naturalness metrics.

Right-to-left considerations in integration

This seems obvious but is frequently missed: any system component that logs, displays, or processes Hebrew text must handle right-to-left text direction. This includes logging infrastructure, transcript viewers, quality review interfaces, and any customer-facing text that includes Hebrew. The failure mode — Hebrew characters displayed in the wrong order or mixed with LTR content incorrectly — creates confusing transcripts that impede human review of AI behavior. UTF-8 encoding is universal in modern infrastructure, but RTL rendering support is not universally tested.

7. Production Monitoring and Quality Metrics

Voice AI systems have a monitoring problem that most teams underestimate: the primary failure mode is quality degradation that doesn't trigger any error or alert. A cascaded pipeline where the STT model is transcribing correctly, the LLM is generating coherent responses, and the TTS is synthesizing intelligibly can still be delivering a bad user experience if any of the following are true: the transcription is accurate but the LLM's response is factually wrong; the LLM response is accurate but the TTS prosody is awkward at a particular phrase; or the system is technically functioning but failing to handle a class of requests that has grown in frequency.

The monitoring stack for a production voice AI system needs to track four distinct quality dimensions:

Transcription accuracy (STT quality)

Track word error rate on a sample of calls with ground-truth transcripts. This requires either human review of a random call sample or a secondary high-accuracy STT pass as a reference. Particularly monitor for accuracy degradation on product-specific vocabulary, proper nouns, and domain jargon — these are the words that matter most for intent classification and where standard models are weakest. A 2% overall WER improvement that comes entirely from common words but leaves domain vocabulary at 15% WER has no practical benefit.

Conversation completion and handoff rate

The fraction of interactions that reach successful completion without escalation to a human agent is the most direct measure of system effectiveness. Track this at the intent level: a system that completes 95% of simple FAQ interactions but escalates 40% of billing dispute interactions is telling you something specific about a capability gap. Handoff rate alone is not a sufficient metric — a system that never escalates also doesn't exist, and a system with an artificially low escalation threshold is hiding bad interactions behind human labor.

Latency percentiles (p50, p95, p99)

Median latency is not the right metric for voice AI because users experience the tail, not the average. A system with 300ms median first-audio-byte latency but 1.8 second p99 latency will generate complaints from a predictable fraction of users who encounter the tail. Monitor p95 and p99 latency broken down by call phase — the STT streaming lag, LLM TTFT, and TTS synthesis latency should all be individually observable. Latency spikes in production often have identifiable upstream causes (LLM provider throttling, network congestion, VAD misconfiguration on noisy audio) that are only diagnosable with per-component telemetry.

LLM response quality scoring

Automated quality scoring for LLM responses in voice contexts uses a secondary LLM as a judge, evaluating each response for factual accuracy, relevance, appropriate tone, and adherence to guardrails. This adds cost (approximately $0.005–0.02 per call at GPT-4o-mini pricing for the judge) but provides the only automated signal about response quality at scale. For regulated applications, this automated scoring plus a human review queue for flagged interactions is the minimum viable compliance framework.

Voice AI is the first AI application where users form an opinion within the first three seconds. A model that takes 700ms to respond and then says something slightly awkward loses the user in a way that a chatbot or document AI never does — because the failure is instant, embodied, and interpreted as incompetence. This is why production voice AI engineering is as much about p99 latency as it is about accuracy.

8. Where Voice AI Is Heading in the Next 18 Months

The trajectory of production voice AI over the next 18 months is shaped by three forces that are already visible in the current generation of systems.

First, speech-to-speech will cross a production viability threshold. GPT-4o's voice mode and Moshi demonstrated that S2S latency and quality can reach a bar that users find acceptable. The remaining barriers — cost, debuggability, and fine-tuning — are engineering problems that will be solved, not fundamental limitations. By late 2027, the most naturalistic consumer voice AI applications will likely be S2S rather than cascaded.

Second, voice cloning will become a mainstream deployment pattern. Custom voices trained on a specific organization's brand voice or a real person's recorded speech will replace off-the-shelf TTS voices in most enterprise deployments. The quality gap between a custom cloned voice and a generic neural TTS voice is already large enough that it's a meaningful differentiator in customer experience. The technology to create a good custom voice from 2–4 hours of audio is available today.

Third, real-time call analysis will become standard infrastructure. A voice AI system that only monitors completed calls is missing most of its operational signal. Real-time side-channel analysis — a separate model observing the conversation as it happens and flagging escalation triggers, compliance risks, or upsell opportunities — is emerging as a standard capability in enterprise voice deployments. The architecture is already well-understood; what's lagging is the deployment of the monitoring models alongside the conversation models.

For Israeli enterprises, these trends layer on top of the multilingual challenge: the models that will define the next generation of voice AI are predominantly trained on English and Mandarin data, and the gap in Hebrew voice AI quality relative to English will widen before it narrows unless organizations invest in Hebrew-specific voice data and fine-tuning. This is the constraint that most Israeli voice AI deployments are currently navigating — and where partner organizations with deep audio AI and Hebrew NLP expertise provide the most concrete value.


About MLAIA

MLAIA — Machine Learning & AI Approach — is an Israeli AI consulting firm specializing in production-grade ML systems across signal processing, audio AI, medical, defense, and enterprise domains. Led by Dr. Yochai Edlitz (PhD, Weizmann Institute), MLAIA builds voice AI pipelines that work in production: low-latency cascaded architectures, Hebrew and multilingual STT optimization, custom voice cloning, and real-time monitoring infrastructure. Based in Yavne, Israel; serving clients globally.

Building a production voice AI system?

We help teams design and deploy voice AI pipelines that meet latency, quality, and cost requirements — including Hebrew and multilingual deployments in regulated environments.

Talk to Our Voice AI Team →