A voice agent can sound inexpensive until a caller pauses, changes topic, waits for a tool, or stays connected for half an hour. Gemini 3.8 Live and GPT-Live-1 make that risk visible in different ways: Gemini uses token accounting with persistent-context effects, while GPT-Live-1 publishes a simple $0.05-per-minute voice-layer price. For production teams, the better choice is not the lower headline number; it is the meter that matches how your sessions behave.
The short answer for production teams
Google’s Live API documentation identifies the model string gemini-3.8-live in its session-resumption example. Google’s current Live documentation also states that audio is billed as tokens and that retained context can be processed again on later turns. OpenAI’s GPT-Live-1 announcement lists $0.05 per minute for the front-end voice layer, with backend reasoning and tools priced separately.
That creates a practical split:
| Production need | Better starting point | Why |
|---|---|---|
| Predictable voice-layer budgeting | GPT-Live-1 | Wall-clock session time is easier to forecast than growing audio context |
| Token-level optimization | Gemini 3.8 Live | Active context, compression, and modality choices can be tuned |
| Long conversations with controlled memory | Gemini 3.8 Live, if engineered carefully | Compression and resumption are explicit parts of the API design |
| Fast phone-agent deployment | GPT-Live-1 | OpenAI positions the model for full-duplex telephony and backend delegation |
| A call that may sit silent | Neither without guardrails | GPT-Live-1 charges session time; Gemini can still accrue context and transport costs |
The key qualification is that Google’s Gemini API pricing page does not show a separate Gemini 3.8 Live price row in the material reviewed here. Do not substitute Gemini 3.1 Flash Live rates for Gemini 3.8 Live in a finance forecast.
Gemini 3.8 Live vs GPT-Live-1 billing units
Gemini 3.8 Live: audio tokens, context, and compression
Google’s Live API best-practices guide says native audio accumulates at approximately 25 tokens per second of audio. The same guide explains that a persistent session can rebill accumulated context on subsequent turns. As the conversation grows, a new response may therefore carry a larger historical input than the previous response.
The rough model is:
Gemini session cost
= current audio and text usage
+ retained context reprocessed across turns
+ output audio and thinking usage
+ optional transcription usage
+ tools and infrastructure
Compression changes the curve. Google documents ContextWindowCompressionConfig and a sliding-window strategy for long sessions. In the example documented by Google, compression triggers at 25,000 tokens with an 8,000-token sliding window. The exact production setting should be tested against recall and tool accuracy rather than copied blindly.
Transcripts can add another charge. Google says enabling inputAudioTranscription or outputAudioTranscription creates additional text-token usage on top of native audio billing. A team that needs searchable transcripts should include that surcharge in its per-resolution model.
GPT-Live-1: wall-clock voice-session time
OpenAI lists GPT-Live-1 at $0.05 per minute, billed at per-second granularity, for the front-end voice layer. The simple arithmetic is:
| Session length | GPT-Live-1 voice-layer cost |
|---|---|
| 5 minutes | $0.25 |
| 30 minutes | $1.50 |
| 1 hour | $3.00 |
| 8 hours continuously open | $24.00 |
Silence is the key caveat. The published minute-based price is tied to session time, not just the seconds in which the caller speaks. A 30-minute call with ten minutes of silence still occupies the session for 30 minutes.
GPT-Live-1 is also not the complete agent bill: OpenAI describes it as a voice layer that can delegate deeper reasoning and tool calls, so add backend tokens, tools, telephony, storage, monitoring, and human transfers separately.
Long-session economics: four scenarios
The following comparison uses published GPT-Live-1 arithmetic and formulas rather than inventing a Gemini 3.8 price.
1. Five-minute appointment call
GPT-Live-1 contributes $0.25 before backend reasoning and telephony. Gemini 3.8 Live cannot be priced defensibly until Google publishes or exposes the applicable rate for the exact model ID.
For Gemini, measure audio input seconds, audio output seconds, retained-context tokens, transcription tokens, and tool calls from actual sessions. A short call is where token billing may look attractive, but only if the prompt and context are bounded.
2. Thirty-minute support call
GPT-Live-1 contributes $1.50 for the voice layer. The number is easy to budget but does not tell you whether the call resolved the issue.
Gemini’s cost depends on how much audio is retained and how often the session generates turns. Two 30-minute calls can have materially different token footprints if one contains continuous speech and the other contains long pauses, repeated explanations, or multimodal input.
3. A silent hold or delayed tool
GPT-Live-1 continues charging while the session remains open. The operational control is a strict silence timeout or an explicit handoff state.
Gemini is not automatically “free while silent.” The connection, tool orchestration, context policy, and any later turn still belong in the cost model. Treat silence as a product-state problem, not merely a provider-pricing detail.
4. An all-day listening session
At GPT-Live-1’s published voice-layer rate, eight continuously open hours cost $24. Ten such sessions cost $240 per day, before backend models and other infrastructure.
Gemini’s token model may be more efficient for sparse interactions if the application avoids sending unnecessary audio and compresses history. It may be less predictable if the application retains raw conversation context and allows unlimited conversational loops. An always-on design should be load-tested, not extrapolated from a five-minute demo.
Production constraints that change the spreadsheet
Context and connection lifetime
Google’s session-management documentation documents uncompressed audio-only sessions at 15 minutes and audio-video sessions at 2 minutes. The same documentation describes individual WebSocket connections as lasting around 10 minutes, separately from the logical session lifetime. Production clients need both context compression and session resumption.
Google’s resumption handles remain valid for two hours after the last session terminates. The server also sends GoAway before a connection closes. Missing these events can turn a long call into a dropped call, duplicate tool action, or lost caller state.
Concurrency is a separate cost
A minute price answers “what does an open session cost?” It does not answer “how many sessions can I run at once?” GPT-Live-1 documentation describes capacity in concurrent sessions, with reported tiers ranging from 25 sessions at Tier 1 to 500 at Tier 5. A sudden call spike can hit that ceiling even when monthly spend is within budget. OpenAI’s GPT-Live-1 model reference should be checked for the current concurrency entitlement before launch.
For Gemini, record concurrent WebSockets, reconnect rates, compression events, and quota errors. Token throughput and simultaneous sessions are different bottlenecks.
Telephony and the audio bridge
A phone agent adds costs outside either model. Gemini’s phone-integration guide uses a bridge such as Twilio Media Streams. It describes conversion between Twilio’s 8 kHz μ-law audio, Gemini’s 16 kHz PCM input, and Gemini’s 24 kHz PCM output. That relay adds carrier, transport, compute, and operational work.
GPT-Live-1’s full-duplex positioning may reduce custom interruption orchestration, but it does not remove carrier charges or backend work. Compare complete call cost, not just inference cost.
“I shipped a Gemini Live voice agent for marketing intake. It kept hanging mid-booking.” — @ramanpal, reporting a
turnCompletehandling bug on Gemini 3.8 Live Extended Thinking (X).
This is one developer’s early deployment report, not a measured failure rate. It is still a useful reminder that protocol semantics can cost more than a small difference in token price.
The decision rule I would use
Choose GPT-Live-1 when the voice layer is the main uncertainty and finance needs a clean duration-based estimate. Put hard limits around silence, maximum call duration, concurrency, and backend reasoning. The $0.05 figure is a floor for the voice layer, not a total cost per call.
Choose Gemini 3.8 Live when your team can instrument token usage and benefits from context compression, multimodality, or token-level control. Start with a bounded workflow, not an open-ended assistant. Track cost per completed task, not cost per minute:
cost per successful resolution
= total model + tool + telephony + infrastructure cost
/ completed valid resolutions
Before committing, run the same call mix through both systems and capture median and p95 duration, audio seconds, retained-context tokens, transcription usage, tool retries, transfer rate, reconnects, and resolution rate. The winner is the system that keeps those metrics stable as calls get longer.
FAQ
Is Gemini 3.8 Live officially available?
Google’s current session-management documentation uses gemini-3.8-live in a session-resumption example. Verify access, region, quotas, and the exact pricing row in your Google project before production rollout.
Does GPT-Live-1 charge for silence?
Its published price is per minute of front-end voice-session time, billed per second. Plan on session time—including silence—being chargeable unless your account contract says otherwise.
Is GPT-Live-1’s $0.05 per minute the total call cost?
No. OpenAI describes the amount as the front-end voice-layer price. Backend reasoning, tools, telephony, storage, monitoring, and human escalation are additional cost centers.
Can Gemini context compression make a long session free?
No. Compression is a context-management mechanism, not a zero-cost mode. It can limit retained history and help avoid duration limits, but live audio, output, tools, and infrastructure remain billable or operationally relevant.
Which model is cheaper for long voice sessions?
There is no defensible universal answer until the applicable Gemini 3.8 Live rate and your traffic shape are known. GPT-Live-1 is easier to forecast; Gemini may reward careful context and input management. Measure both against completed resolutions.
A production voice agent is not priced by its first pleasant conversation. It is priced by the long tail: silence, retries, context growth, reconnects, and calls that still need a human. Build the meter into the architecture before choosing the model.