OpenAI opened GPT-Live-1 to developers through its API on September 10, 2026, priced at 0.05 dollars per minute for the voice layer. It is the same full-duplex model that has powered ChatGPT Voice since July, meaning it listens and speaks at the same time rather than waiting for you to finish a sentence. For developers, the practical effect is collapsing the traditional three-part voice stack, speech-to-text plus a language model plus text-to-speech, into a single model.
What does full-duplex actually mean here?
Earlier voice systems, including ChatGPT’s own Advanced Voice Mode, relied on turn detectors: small helper models guessing when a user had stopped speaking. Guess too early and the system cuts you off mid-sentence; guess too late and you get an awkward silence. Because detection was based on silence, a brief pause or background noise could be mistaken for the end of a turn.
GPT-Live discards that approach. It processes incoming audio while simultaneously generating outgoing speech, deciding several times per second whether to listen, speak, pause, or allow an interruption. That is what enables backchanneling, the "mhmm" and "yeah" sounds humans make to signal attention, and it lets a caller interrupt or change direction mid-conversation without derailing the exchange.
How does it stay fast while still being smart?
By splitting the work across two paths. Audio streams between the device and the voice model over a dedicated low-latency fast path. Heavier work, web searches, code execution, or deep reasoning, is delegated asynchronously to a frontier model in the background, off the live audio path. Crucially, GPT-Live keeps talking while that happens, maintaining conversational flow instead of going silent. At launch in ChatGPT it delegated to GPT-5.5; in the API, developers can pair it with their own backend model, which is the more significant change.
What do developers get in the API?
- Interruption handling that reasons over both sides of the audio stream simultaneously
- Native ASR transcripts and response text, plus keyword biasing and strong alphanumeric recognition, useful for phone numbers, order IDs, and addresses
- Optional explicit turn detection, if application logic still needs turn boundaries
- System-prompt control over tone, pacing, expressiveness, language, and response length
- Telephony support for deploying agents directly onto phone calls
- Background noise handling so cafe chatter or a second speaker does not derail a session
Yelp is an early production user, applying GPT-Live-1 to restaurant reservation calls specifically because those conversations do not follow a script and callers frequently interrupt or change details mid-call.
What are the honest caveats?
Independent latency benchmarks are thin. OpenAI has not published an end-to-end latency figure, and when Agora Media Lab tested GPT-Live-1 against Advanced Voice on an iPhone 13 across 30 trials, it found GPT-Live’s median time from end of user speech to first audible output was only about 205 milliseconds better. That is a real improvement but well short of the qualitative leap the marketing implies, and the genuine gain is arguably in conversational feel rather than raw speed. Background noise handling is a stated capability that has not been independently stress-tested across messy real-world environments.
It is also worth keeping the product lines straight: GPT-Live is the consumer-facing family behind ChatGPT Voice, while GPT-Realtime is the separate API family, with gpt-realtime-2.1 released July 6. They are related but follow distinct release and access timelines.
Who should build on it now?
Teams building phone-based agents, support lines, or any interface where interruption and natural pacing matter most have the clearest case, particularly since the pricing is per-minute on the voice layer rather than per-token. Teams that need verified latency guarantees for a contractual SLA should wait for independent numbers. This continues the broader industry shift toward treating speed as a product dimension in its own right, the same bet behind OpenAI’s Ultrafast inference tier, and it builds directly on the capabilities covered in our guide to ChatGPT’s Advanced Voice Mode.
See OpenAI’s own GPT-Live announcement for the full architecture description.




