Google’s Gemini 3.8 Live (including the Extended Thinking variant) and OpenAI’s GPT‑Live‑1 were released within five days, each introducing a different way to keep a voice agent responsive while background work runs. The change matters because latency, cost, and orchestration complexity directly affect how AI engineers, platform teams, and SREs design, deploy, and operate real‑time voice agents.
Architecture Differences
Gemini 3.8 Live Extended Thinking embeds speech, reasoning, and tool execution inside a single stateful session. When a function is marked NON_BLOCKING, the model can continue speaking, ask follow‑up questions, or provide status updates while the external API call proceeds. The standard Gemini 3.8 Live skips this step to reduce latency and token usage.
GPT‑Live‑1 separates the voice front‑end from a backend reasoning model (e.g., GPT‑6 Astra, Luna, or a third‑party model). The voice model handles full‑duplex conversation, while the backend processes tool calls and complex reasoning. The two layers communicate through side‑band channels that the application must orchestrate.
Operational Implications
Both approaches must handle user interruptions. Gemini keeps the background work inside the same session, but developers have limited visibility into when a tool call stops. OpenAI places cleanup responsibility on the application, requiring explicit cancellation of pending jobs to avoid stale answers.
From an SRE perspective, Gemini’s single‑session model reduces the number of moving parts but may obscure internal tool‑call lifecycles, affecting observability. GPT‑Live‑1’s split architecture increases orchestration load, demanding reliable coordination logic, timeout handling, and context propagation between the voice and reasoning services.
Cost and Benchmark Considerations
Pricing differs sharply. Gemini 3.8 Live charges $0.005 per minute of audio input and $0.018 per minute of output; Extended Thinking adds reasoning token costs and extra fees for live video or document inputs. GPT‑Live‑1 costs $0.05 per voice minute for the front‑end alone, with separate billing for the backend reasoning model and any function calls.
Benchmark results are not directly comparable because each vendor used different tests. Gemini reports an 82.6 score on the Artificial Analysis Speech‑to‑Speech Quality Index and leads on complex task‑completion benchmarks. GPT‑Live‑1, paired with GPT‑6 Astra at medium effort, achieved 86.2 % Pass@1 on a spoken customer‑service evaluation and outperformed GPT‑Realtime‑2.1 on a full‑duplex benchmark.
Related CloudNinjas coverage: AI engineering.
What This Means For Practitioners
- Design choice: Choose Gemini’s integrated session if you prefer fewer orchestration components and can tolerate limited visibility into tool‑call termination.
- Orchestration burden: Opt for GPT‑Live‑1 only if you have mature coordination logic and need the flexibility of swapping backend reasoners.
- Cost management: Model per‑minute voice costs carefully; Gemini’s lower audio rates may be offset by reasoning token fees, while GPT‑Live‑1’s higher voice rate can balloon with heavy backend usage.
- Observability: Implement tracing or logging around tool‑call lifecycles regardless of the chosen model to detect stale work after interruptions.
- Benchmark relevance: Treat published scores as indicative, not definitive, because test setups differ; run your own workload‑specific evaluations before committing.


