Skip to main content

Google Launches Gemini 3.8 Live With Extended Thinking for Voice Agents

3 min read

Gemini 3.8 Live adds a production audio model and an extended-thinking variant. Here are the migration changes, state signals, limits and prices.

Google Launches Gemini 3.8 Live With Extended Thinking for Voice Agents

Google has released Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking as generally available audio-to-audio models. The biggest migration risk is not the model name. It is the change in how a client decides that a thinking voice agent is actually idle.

The Gemini API changelog lists both models as GA on September 15, 2026. The standard model is designed for low-latency dialogue. The extended-thinking model can spend more time reasoning between conversational turns. Both accept text, images, audio and video, and can return text or audio.

The two models solve different voice loops

ModelBest fitImportant constraint
Gemini 3.8 LiveFast interactive voice and multimodal sessionsDoes not support thinking_level
Gemini 3.8 Live Extended ThinkingVoice tasks that need deeper reasoning between turnsAsynchronous mode only

Google documents a 131,072-token input limit and a 65,536-token output limit for each model. That does not mean a voice session should fill either window. Audio latency, interruptions and application memory still need their own budgets.

turnComplete no longer means the model is idle

In the extended-thinking model, a server message can include turnComplete: true while background reasoning continues. Google directs clients to the interaction_status field, which reports IN_PROGRESS or IDLE. A client that closes the microphone, commits state or starts a new request as soon as it sees turnComplete can interrupt the model’s reasoning path.

  1. Keep the session open when a response segment completes.
  2. Wait for interaction_status: IDLE before treating the interaction as finished.
  3. Log state transitions separately from audio chunks and transcript events.
  4. Test user interruption while the model reports IN_PROGRESS.

Extended Thinking exposes three reasoning levels

The extended model supports low, medium and high thinking levels. That is an operating trade-off, not a quality guarantee. Teams should measure response latency, task completion and interruption recovery at every level. High reasoning may help a complex planning turn and feel needlessly slow for a short confirmation.

The standard model also removes two old controls

Google says proactive audio is permanently enabled in the standard Gemini 3.8 Live model, while affective dialogue has been removed. Video frames are included by default. Migration tests should therefore cover silent periods, background speech, frames that arrive without an explicit toggle and applications that previously depended on affective-dialogue behavior.

Pricing turns voice design into a measurable budget

Standard Gemini 3.8 Live inputList price
Text$0.75 per 1M tokens
Audio$3 per 1M tokens, about $0.005 per minute
Image or video$1 per 1M tokens, about $0.002 per minute
Text output$4.50 per 1M tokens
Audio output$12 per 1M tokens, about $0.018 per minute
Google list prices checked September 15, 2026. Check the live pricing page before deployment.

For a useful estimate, record input audio minutes, output audio minutes, text tokens, video duration and abandoned sessions separately. A single blended per-minute number can hide expensive output-heavy conversations.

GA model does not erase the API preview notice

There is a documentation nuance worth preserving. The changelog and model pages label the models generally available, while the Live API capabilities page still says the Live API is in preview. The safest reading is that model lifecycle and API-surface status are separate. Procurement and reliability reviews should document both.

A migration test plan for real voice agents

  • Compare end-of-turn behavior using both turnComplete and interaction_status.
  • Replay long pauses, barge-in, noisy rooms and network reconnects.
  • Measure latency and completion at low, medium and high thinking levels.
  • Audit frames and audio retained by the application.
  • Set a cost ceiling for incomplete or abandoned sessions.

Our Gemini 3.8 Flash migration guide covers the text-model side of the release. The Lyria 3.5 API guide shows how to apply the same version, price and output-rights discipline to generated media.

The practical verdict

Gemini 3.8 Live makes Google’s production voice stack more explicit, but Extended Thinking changes the session contract. Teams that migrate the model ID without migrating their idle-state logic may ship a voice agent that cuts off its own reasoning.

Primary sources

Checked September 15, 2026. Model behavior, limits and prices come from Google. Migration risks and test recommendations are MustHave.ai analysis.

Leave a comment

Your email address will not be published. Required fields are marked *