Google AI Releases Gemini 3.5 Transcribe: A Speech-to-Text Model Reporting 2.6% Average WER Across 85+ Languages
Google released Gemini 3.5 Transcribe as two distinct API endpoints: `gemini-3.5-transcribe` (Interactions API for pre-recorded audio) and `gemini-3.5-transcribe-live` (Live API for bidirectional streaming), each with different feature sets, limits, and pricing. Word error rates of 4.0% (streaming) and 2.6% (non-streaming) per Artificial Analysis, with a 70% improvement in time-to-final-transcription over the previous Chirp 3 model. Smart mode (disfluency removal, self-correction resolution) can
Analysis
TL;DR
- Google released Gemini 3.5 Transcribe as two distinct API endpoints:
gemini-3.5-transcribe(Interactions API for pre-recorded audio) andgemini-3.5-transcribe-live(Live API for bidirectional streaming), each with different feature sets, limits, and pricing. - Word error rates of 4.0% (streaming) and 2.6% (non-streaming) per Artificial Analysis, with a 70% improvement in time-to-final-transcription over the previous Chirp 3 model.
- Smart mode (disfluency removal, self-correction resolution) cannot be combined with word-level timestamps or speaker diarization, forcing a design tradeoff between readable summaries and auditable transcripts.
- Hard constraints include 10-minute live session limits, no speaker diarization or word timestamps on the Live API, and API-only deployment with no open weights or self-hosting option.
- Coverage spans 85+ languages with automatic detection and mid-sentence code-switching support; ecosystem integrations include LiveKit, Pipecat, Agora, Vercel, and Google's own consumer products.
Why It Matters
This release establishes a new benchmark for production-grade speech-to-text with industry-leading latency improvements, making it immediately relevant for anyone building real-time voice agents, live captioning systems, or multilingual transcription pipelines. The deliberate split between streaming and batch endpoints—and the mutual exclusivity of smart mode with diarization/timestamps—forces architectural decisions that will shape how developers design voice-driven applications going forward.
Technical Details
- Dual API architecture: The Live API delivers sub-second continuous transcription via 100ms chunks of raw 16-bit PCM at 16kHz mono, emitting
interim_input_transcriptionfor partials andinput_transcriptionon turn finalization, with support for automatic, hybrid, and manual voice-activity detection. The Interactions API handles pre-recorded files up to 1 hour (30 minutes with diarization or word timestamps enabled) and provides speaker diarization, word-level start/end offsets, and custom vocabulary biasing (up to 1,000 terms, optimal below 100). - Verbatim vs. Smart modes: Verbatim returns raw transcription including fillers and false starts; Smart removes disfluencies and resolves spoken self-corrections inline (e.g., "Um, so for the meeting, I think we should, uh, invite Alice and, wait no, Bob and Carol" becomes "For the meeting, I think we should invite Bob and Carol"), but Smart mode is mutually exclusive with word timestamps and diarization.
- Performance benchmarks: Artificial Analysis reports 4.0% WER for streaming and 2.6% for non-streaming; multilingual FLEURS benchmark shows 5.50% streaming and 5.04% non-streaming across top languages and locales. Language coverage exceeds 85 locales with automatic detection and code-switching handled without configuration.
- Deployment model: API-only managed service with no open weights. Pricing approximately $0.005/min for batch and $0.009/min for live. Developer track available via Gemini API free tier on Google AI Studio; enterprise track through Gemini Enterprise Agent Platform with provisioned throughput, compliance controls, and volume discounts. Both tracks currently in public preview.
- Ecosystem integrations: Live API already integrated with LiveKit, Pipecat, Agora, Fishjam, Vercel, and Vision Agents. Powers Rambler on Android, Gemini app on macOS, Google Antigravity, with Chrome integration forthcoming.
Industry Insight
- The forced separation between streaming and batch capabilities—particularly the inability to combine Smart mode with diarization or word timestamps—means production systems will likely require dual API calls for applications needing both readable summaries and auditable records, increasing latency and cost; architects should plan for this tradeoff early rather than discovering it post-deployment.
- The 10-minute hard limit on Live API sessions and the absence of speaker diarization in streaming mode signal that Google is targeting real-time voice agent use cases over long-form meeting transcription; teams building enterprise meeting tools should rely on the Interactions API for post-call processing rather than attempting to stretch the Live API beyond its intended scope.
- The API-only, no-open-weights strategy reinforces the trend of major providers locking transcription capabilities behind managed services, which benefits teams prioritizing speed-to-market but creates vendor lock-in risk for regulated or cost-sensitive organizations; the enterprise track with content-non-improvement guarantees and compliance controls is a meaningful differentiator for healthcare, legal, and financial verticals.
Disclaimer: The above content is generated by AI and is for reference only.