OpenAI details GPT-Live: full-duplex voice AI that drops turn detection

OpenAI has published a technical deep dive into GPT-Live, its third-generation voice AI system, revealing an architecture that eliminates the turn detector from the audio path entirely. The system is full-duplex, meaning it can listen and speak simultaneously, removing the bottleneck that made previous voice assistants feel either interruptive or sluggish. The engineering post, written by Justin Uberti and Zahan Malkani, traces the evolution from cascaded speech-to-text-to-speech pipelines thro

2 min
OpenAI details GPT-Live: full-duplex voice AI that drops turn detection

OpenAI has published a technical deep dive into GPT-Live, its third-generation voice AI system, revealing an architecture that eliminates the turn detector from the audio path entirely. The system is full-duplex, meaning it can listen and speak simultaneously, removing the bottleneck that made previous voice assistants feel either interruptive or sluggish.

The engineering post, written by Justin Uberti and Zahan Malkani, traces the evolution from cascaded speech-to-text-to-speech pipelines through speech-to-speech models, and explains why both remained fundamentally turn-based. In older systems, a small "turn detector" model had to decide when a user finished speaking before the larger model could begin inference. Guess too early and the user gets cut off. Guess too late and the response feels delayed.

GPT-Live puts a voice model directly in control of the conversation. Audio streams in and out continuously. When deeper reasoning or tool use is needed, the system delegates to frontier models like GPT-5.5 on an asynchronous path that cannot stall the media loop. The voice model keeps talking while the heavy lifting happens behind the scenes.

The media frontend and inference logic were rewritten in Go, replacing a previous Python asyncio implementation. OpenAI says the new system's p95 latency matches the old system's p50. WebRTC handles transport, with built-in mechanisms for packet loss, clock drift, and connection changes. Audio frames arrive on schedule because the system minimizes buffering and blocking throughout.

Stateful inference brings its own challenges. Voice sessions can run long, context grows continuously, and model instances spin up and down with demand. OpenAI built a handoff mechanism that warms a replacement model instance alongside the existing one, prefills it with current session context, runs both in parallel, and cuts over when the new instance is ready.

The architecture creates a clean separation between the core voice path and application logic. Tools, policies, and backend behavior can change without touching the media frontend. This foundation already powers ChatGPT Voice features including computer control and agent coordination in the desktop app.

The post does not specify pricing, availability, or API access timelines for GPT-Live.

Sources

[How we built a realtime system for responsive voice AI in six months](https://openai.com/index/continuous-voice-interaction-with-gpt-live) - OpenAI, August 3, 2026

Written by

More to read

  • AM Intelligence Orders 9,000 Nvidia Vera Rubin Systems for B AI Infrastructure Project

    Indian AI infrastructure platform AM Intelligence (AMI) has placed a binding purchase order for 9,000 Nvidia Vera Rubin computing systems. The procurement represents one of the earliest hyperscale commitments for Nvidia's next-generation Rubin architecture across Asia and anchors an $8 billion capital expenditure initiative to build 1 gigawatt (GW) of dedicated AI computing capacity. The first phase of the deployment will take place at AMI's upcoming data center facility in Hyderabad, India. Th

    1 min
  • LLM Evaluation Frameworks in Production: Comparing Promptfoo, DeepEval, Ragas, and Inspect Architecture, Metric Calibration, and Quality Gate Economics

    Testing large language model applications in production requires shifting from deterministic software unit tests to probabilistic evaluation harnesses. Traditional software engineering relies on binary assertions (assert output == expected), but generative models exhibit non-deterministic outputs, variable token distributions, and nuanced semantic drift across prompt revisions, model updates, and temperature configurations. To prevent regressions and quantify system capabilities before deployme

    1 min
  • SmoothQuant: Mathematical Foundations, Per-Channel Outlier Migration, and Hardware-Efficient W8A8 Inference in Large Language Models

    SmoothQuant: Mathematical Foundations, Per-Channel Outlier Migration, and Hardware-Efficient W8A8 Inference in Large Language Models Serving large language models (LLMs) in production environments presents two distinct hardware bottlenecks. During the autoregressive generation (decode) phase with small batch sizes, inference is memory-bandwidth bound, as billions of parameters must be streamed from High Bandwidth Memory (HBM) to on-chip SRAM for every generated token. Conversely, during the pro

    1 min