HomeArtificial Intelligence

Artificial Intelligence

Google Gemini 3.8 Live Brings Background Reasoning to Voice Agents: What Developers Need to Know

Google's Gemini 3.8 Live and Live Extended Thinking are now generally available for real-time voice applications, with background reasoning and asynchronous tool calls.

Studio microphone with pop filter representing real-time AI voice applications
Studio microphone with pop filter representing real-time AI voice applications
Research-based guidePrimary references and a decision framework are included below.How we research →

Google is pushing voice AI further into the territory of real-time agents. Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking are now generally available through the Gemini Live API, with the second model designed to keep reasoning and calling tools in the background while a spoken interaction continues.

Google's September release notes describe Gemini 3.8 Live as the default option for low-latency voice experiences and Gemini 3.8 Live Extended Thinking as the higher-reasoning option for more complex, multi-step tasks. Both are native audio-to-audio models based on Gemini 3 Pro and can accept audio, images, video and text.

That combination matters because the difficult part of a useful voice agent is no longer simply speech recognition or natural-sounding audio. The harder problem is what happens when the user asks the agent to do something that takes time: search for information, call a business system, check a calendar, analyze a document or combine several tool results without making the conversation feel frozen.

Image: Zzubnik, via Wikimedia Commons. The image was released into the public domain.

The Extended Thinking model changes the conversation loop

Traditional voice assistants often expose a simple pattern. The user speaks, the assistant stops to process, a tool runs, and the user waits for an answer. That delay becomes increasingly awkward as the task gets more complex.

Gemini 3.8 Live Extended Thinking is designed around a different model. Google says it can continue background reasoning and asynchronous function calls while streaming audio. In practice, that means an agent can acknowledge a request, keep the user informed and continue working instead of treating every tool call as a blocking event.

That is particularly relevant for customer-service, scheduling, support and enterprise-assistant workflows where a single request may trigger multiple systems.

The standard Gemini 3.8 Live also supports asynchronous function calling but is positioned for faster, cost-efficient dialogue. The Extended Thinking version spends more reasoning effort when the task requires deeper multi-step work.

Existing integrations may need code changes

The new behavior is not just a model upgrade. It can change assumptions inside the client application.

Google's documentation warns developers that turnComplete: true no longer necessarily means the server has finished all work when using Extended Thinking. Background reasoning or asynchronous tool calls can continue after that signal.

Applications therefore need to keep listening for additional server messages and monitor the interaction status before treating a turn as fully idle. A client that closes the session, updates the interface too early or ignores later messages could miss a tool request or final audio response.

This is the kind of implementation detail that can matter more than a benchmark score. A voice agent feels reliable when its state transitions are predictable. Background work improves fluidity only if the application correctly tracks what the model is still doing.

The context window is large enough for substantial sessions

Google's model card lists an input context window of up to 128K tokens and output of up to 64K tokens for the new audio models.

That gives developers room for longer conversations, visual context, instructions and tool results. But a large context window is not the same as perfect memory. Long sessions can still become expensive, redundant or harder to manage if every previous interaction is retained without summarization.

Teams building persistent voice agents should decide what needs to remain in active context, what can be summarized and what should be stored externally. Sensitive information also deserves separate treatment rather than being kept in a conversation simply because the context window allows it.

Voice quality is only one part of the evaluation

Google highlights strong benchmark results for the new models. Gemini 3.8 Live Extended Thinking is presented as a leading system on speech-to-speech and agentic voice evaluations, while the standard Live model also ranks highly in preference-based voice testing.

Those numbers are useful signals, but production voice systems encounter problems that benchmarks do not fully capture. Real users interrupt. Connections degrade. Background noise changes. Accents and domain-specific names create transcription errors. Tools time out. APIs return partial data.

A serious evaluation should therefore include interruption handling, latency distribution, failed tool recovery, confirmation behavior and the amount of human correction needed after a call.

For high-impact tasks, developers should also test whether the agent knows when to slow down and ask for confirmation. A fast voice experience is not valuable if the system confidently performs the wrong external action.

Real-time visual input expands the use cases

The models are multimodal, so voice does not have to operate alone. Google lists text, images, audio and video as supported inputs.

That opens use cases where the user can speak while showing the system what they are looking at. A support agent could discuss a device while receiving camera input. A field worker could ask questions about visible equipment. A user could navigate an interface while describing a problem verbally.

The main design challenge is determining which modality should be trusted for which task. Audio may contain an ambiguous instruction while the image provides context, or the visual feed may be stale while the user has already moved on. Multimodal systems need clear state management rather than simply feeding every available signal into one session.

Google is making voice more agentic, not merely more conversational

The broader direction is the most important part of the launch.

Voice assistants were historically built around short commands and immediate responses. The new generation is being designed to operate tools, maintain context and work through multi-step tasks while preserving the rhythm of conversation.

That moves voice closer to an interface for agents rather than an alternative keyboard.

For businesses, the opportunity is obvious: fewer forms, fewer menus and more natural interactions with internal systems. The risk is equally clear. A voice system connected to business tools can take consequential actions faster than a user can inspect every intermediate step.

Our human-in-the-loop AI guide explains why approval requirements should increase with the consequence and reversibility of an automated action.

Bottom line

Gemini 3.8 Live and Live Extended Thinking show where real-time AI interfaces are heading. The standard model targets fluid, scalable conversation, while Extended Thinking is designed for tasks that need deeper reasoning and background tool execution without forcing the conversation to stop.

The most important upgrade is not simply better speech quality. It is the ability to keep working while the user is still in the interaction.

Developers should treat the release as both a capability upgrade and an integration change. Existing clients need to understand the new asynchronous state model, and production teams should test real calls rather than relying only on leaderboard performance. If those pieces work together, voice agents can become significantly more useful than the command-and-response assistants they are replacing.

Editorial research note

How we reached this guidance

We reviewed Google DeepMind's Gemini 3.8 Audio model card, Gemini API release notes and model documentation. Benchmark figures are presented as Google-reported or third-party leaderboard results cited by Google, and the article distinguishes general availability from independent proof of production reliability.

Decision framework

ScenarioRecommendationWhy
A developer needs low-latency conversational voice without heavy reasoningStart with Gemini 3.8 LiveGoogle positions the standard Live model for scalable, low-latency dialogue and asynchronous tool use.
A voice agent must solve multi-step tasks while continuing the conversationEvaluate Gemini 3.8 Live Extended ThinkingThe Extended Thinking variant can continue background reasoning and asynchronous tool calls during live audio sessions.
An existing Live API client assumes turnComplete means all work is finishedUpdate session state handling before migratingGoogle says background reasoning or tool work can continue after turnComplete, so clients must monitor interaction status and later server messages.
A team chooses a model from benchmark rankings aloneTest latency, interruptions, tool reliability and cost on real callsVoice-agent performance depends on network conditions, tool chains, accents, domain vocabulary and conversation design beyond benchmark scores.

Primary references

Reviewed on September 16, 2026. Unless an article explicitly states that TECHMUNDI performed hands-on testing, our guides are research-based and do not present specification or documentation review as first-hand product testing.