DEV Community

Thor 雷神 Schaeff for Google AI

Posted on Originally published at blog.google

Build real-time voice applications with Gemini 3.8 Live and 3.5 Transcribe

Yesterday, we released new Gemini Live models in the Gemini API and Google AI Studio, expanding our developer suite for building real-time, voice-first product experiences: 

Gemini 3.8 Live and 3.8 Live Extended Thinking: Gemini 3.8 Live brings a step change to our native speech-to-speech models, capable of performing tasks while maintaining dialogue. For complex requests, 3.8 Live Extended Thinking delivers deeper reasoning, ranking #1 on Artificial Analysis’ Speech-to-Speech leaderboard.

Gemini 3.5 Transcribe: Our dedicated speech-to-text model brings highly precise transcription across 85+ languages. Released last month, it achieved an average Word Error Rate (WER) of 4.0% (streaming) and 2.6% (non-streaming).

Gemini 3.8 Live & 3.8 Live Extended Thinking: Build more intelligent conversational agents

Our new models, Gemini 3.8 Live and 3.8 Live Extended Thinking enable developers to build voice agents that can reason and execute tasks while maintaining the flow of conversations. Key capabilities include: 

  • Asynchronous function calling: Execute API and tool calls in the background while continuing to stream audio responses to the user
  • Visual context: Ground dialogue in live visual inputs to help enable agents that can understand what users say and see
  • Alphanumeric precision: Accurately parse confirmation codes, claim numbers, and technical data
  • Multilingual support: Reach global audiences with coverage for 97+ languages and accent consistency
  • Incremental content updates: Seamlessly merge real-time audio with structured data to return context-aware responses

3.8 Live Extended Thinking also supports configurable thinking to help handle complex, multi-step reasoning in the background, while responding or narrating its progress in the main conversation. These models represent a step-change from our previous live models and provide a more streamlined alternative to cascaded architectures.

Ambr AI Testimonial

Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking are available via the Live API. Competitively priced at $0.005/min for audio input and $0.018/min* for audio output, they allow developers to scale voice applications with industry-leading performance.

AA Speech to Speech Index

Developers can also access the models through Agora, Fishjam, LangChain, LiveKit, Pipecat, Vercel, and Vision Agents, our Live API integration partners that handle media streaming infrastructure for real-world deployment.

Integration Partner logos

Gemini 3.5 Transcribe: Convert streamed speech to text

Real-time speech understanding is critical for voice-first interfaces. Last month, we released Gemini 3.5 Transcribe for low-latency transcription with high precision, achieving a 4.0% WER, and useful features: 

  • Automatic code-switching: Handle intra-sentence and inter-sentential code- and language-switching without manual configuration
  • Custom vocabulary biasing: Steer speech recognition toward domain-specific terms, uncommon jargon, company names, and proper nouns by passing a custom_vocabulary list of up to 1,000 terms
  • Smart transcription mode: Deliver polished, reader-ready transcripts with structured formatting, self-corrections, and disfluency removal that eliminates filler words

3.5 Transcribe supports 85+ languages and provides a strong listening engine for voice experiences and stateless tasks like sub-second captioning, call center agents, and real-time audio analytics. You can also access the model via the Interactions API to transcribe audio files up to 1 hour long with structured timestamps and speaker labeling. Read our developer guide to learn more.

Our complete audio suite for developers

To get started, try out the models in ai.studio/live, clone example apps from GitHub, or equip your agent with our live api skill.

You can also create audio experiences with our speech and music generation models, all available in the Gemini API:

The mic is yours, and we can’t wait to hear what you build!

Top comments (3)

Collapse
 
fm profile image
Fayaz

Love the async. live API 🥰

Questions:

"$0.005/min for audio input and $0.018/min* for audio output"

  1. What does the star (*) in output pricing mean?
  2. What if I use audio input and text output? How would the price be calculated then?
Collapse
 
unitbuilds profile image
UnitBuilds
  • in google models generally means 'it's this price... until it isnt...' not terrible thing tbh, it's just that the larger the context window, the more expensive it gets. Most AI providers have the crossover around 250k tokens, after which cost practically doubles.
Collapse
 
zira125 profile image
Zira

The asynchronous tool-call detail is the part I’d pressure-test first. Continuing the audio stream while a tool runs is great UX, but it makes delivery semantics explicit: what should the user hear if the tool times out, returns partial data, or completes after the conversation has moved on? I’d model each call with an idempotency key and a cancellable state machine, then surface queued, running, committed, and failed states instead of letting the voice layer imply success. The 85+ language coverage and custom vocabulary are useful, but production quality will depend just as much on those boundaries as on WER.