GPT-Live-1: OpenAI's full-duplex voice model, explained

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited September 11, 2026

Expert Verified
Two people having a natural conversation with an AI voice assistant, sound waves flowing between them

What GPT-Live-1 actually is

I build AI agents for a living, so when a new voice model ships I skip the demo reel and go straight for the architecture. GPT-Live-1 is worth the attention, because the change here is structural, not cosmetic.

OpenAI is shipping two versions: GPT-Live-1 and GPT-Live-1 mini. Both are what OpenAI calls a "new generation of voice models for natural human-AI interaction," and both now sit under ChatGPT Voice, which more than 150 million people use each week. GPT-Live-1 is the default for Go, Plus, and Pro; the mini is the default for Free.

The model is built on a full-duplex design, and it's also the smartest voice model OpenAI has shipped. When a question needs web search or deeper reasoning, GPT-Live-1 quietly hands that work to a frontier model behind the scenes (GPT-5.5 at launch inside ChatGPT) and keeps the conversation flowing while it waits. You also get nine remastered voices and visual answer cards for things like weather, stocks, sports, and maps. It's a big step up from the last generation of AI customer service software that bolted a voice on as an afterthought.

ChatGPT Voice showing a weather card for Denver while you talk, as taken from OpenAI
ChatGPT Voice showing a weather card for Denver while you talk, as taken from OpenAI

One nice touch on the safety side: since July 31, audio generated through GPT-Live carries SynthID watermarking, and OpenAI shipped a public tool to detect its provenance signals. The model also uses a fixed set of predefined voices and is designed not to imitate a real person, which sidesteps the voice-cloning problem that's dogged this space.

Why full-duplex is the real change

To see why this matters, you have to look at what came before. Voice AI has been through two awkward generations, and GPT-Live-1 is the third.

The first generation was cascaded. The original ChatGPT Voice chained three separate models together: speech-to-text to transcribe you, a language model to think, and text-to-speech to talk back. It worked, but every handoff added latency and lost a little context, so replies came out slow and stilted.

The second generation was turn-based, like ChatGPT Advanced Voice Mode. It processed audio inside a single model, which was smoother, but it still worked in discrete turns. It had to wait for you to stop speaking before replying, and because it detected turns from silence, a brief pause or a passing car could get mistaken for "your turn is over." That's the model interrupting you mid-thought.

GPT-Live-1 collapses those turns entirely. Instead of processing a sequence of separate messages, it continuously takes in audio while generating audio, and makes an interaction decision many times per second: speak, keep listening, pause, interrupt, or call a tool. That's what lets it do natural back-and-forth, keep a sense of timing, and even handle live translation.

The three eras of voice AI: cascaded, turn-based, and full-duplex GPT-Live-1
The three eras of voice AI: cascaded, turn-based, and full-duplex GPT-Live-1

The delegation trick: a fast talker with a smart backstage

The second architectural change is the clever one, and it's the thing most coverage glosses over. OpenAI decoupled the part that handles the conversation from the part that does the thinking.

GPT-Live-1 runs the live conversation. When a question needs search, real reasoning, or agentic work, it delegates that task to a separate backend model and keeps talking to you in the meantime. Inside ChatGPT that backend is GPT-5.5. In the API, you choose it yourself: GPT-6 Astra for complex issues, a leaner model for high-volume tasks like scheduling or order lookups, or even a third-party model.

GPT-Live-1 runs the conversation and delegates deep work to a backend model like GPT-6 Astra
GPT-Live-1 runs the conversation and delegates deep work to a backend model like GPT-6 Astra

There's a practical payoff here beyond "it feels smart." Because the conversation layer and the reasoning layer are separate, you can dial reasoning effort per interaction. ChatGPT exposes three levels: Instant for fast replies, then Medium and High when you want it to actually think. GPT-Live-1 Instant and the mini run on GPT-5.5 Instant in the background, while Medium and High reach for GPT-5.5 Thinking. It's the same idea I lean on when building AI agents: don't make one model do everything, match the depth to the job.

How good is it, really?

OpenAI ran head-to-head human evaluations, and the numbers are genuinely lopsided against the old Advanced Voice Mode (AVM). Here's the shape of it.

BenchmarkWhat it measuresAVMGPT-Live-1 miniGPT-Live-1 (high)
Pairwise preferenceWhich conversation people preferred(baseline)69.2%75.7%
Flow of conversationMean rating out of 73.804.334.96
PleasantnessMean rating out of 73.824.475.19
GPQAExpert-level scientific reasoning45.3%74.9%84.2%
BrowseCompAgentic web search0.7%31.6%75.2%

That BrowseComp jump is the eye-catcher: from basically zero to 75.2%. That's the delegation architecture doing its job, since agentic search is exactly the kind of "deep work" GPT-Live-1 hands off to the backend model.

The API launch added two more numbers I'd trust for judging voice agents specifically. GPT-Live-1 improves Full Duplex Bench by 30 percentage points over GPT-Realtime-2.1, and paired with GPT-6 Astra at medium reasoning effort, it ranks #1 on Tau3, a benchmark for frontier voice-agent intelligence on end-to-end tasks across airline, retail, telecom, and banking support. If you care about support, those are the tasks that map to your actual work, and the ones your AI customer service metrics will actually move.

What people are actually saying

Benchmarks are one thing, living with the model is another. The early Hacker News thread asking people about their experience is a good, unvarnished read. The consensus is "the conversation quality is a real leap, the intelligence is uneven."

The person who started the thread put the upside plainly:

Hacker News

"Its conversational skills are an incredible leap from its predecessor: The acknowledgments it makes, and the natural flow it exhibits overall are awesome."

The live-translation and hands-free use cases are where it seems to shine most for regular users:

Hacker News

"I use it to help with learning a language (French) and have been leaning into the CarPlay app. The model has done surprisingly well in conversations where it has to go back and forth across languages in the same response."

But the same backchannels that make it feel human can grate. One commenter flagged the flip side of all those "mhmm"s:

Hacker News

"The new gpt-live feature tends to interrupt with 'human' sounding injections like 'hmm', 'huh' a bit too much."

That tracks with OpenAI's own honesty about limits: at launch it doesn't support voice with video or screen sharing in ChatGPT, and some non-English languages still get a non-native accent or gaps in fluency. Worth knowing before you promise multilingual customer support on it.

GPT-Live-1 in the API: the interesting part for builders

The API release on September 10 is where GPT-Live-1 stops being a ChatGPT feature and becomes something you can build on. The pitch to developers is that it collapses the old speech-to-text plus reasoning plus text-to-speech stack into one voice layer, so you're not hand-coding what happens when someone interrupts or trails off mid-sentence.

The headline capabilities OpenAI called out:

  • Interruption handling by reasoning over incoming and outgoing audio in a single model, avoiding the brittle handoffs of chained architectures.
  • Reasoning and tool-call delegation to a backend text model or a third-party model.
  • Tone, pace, and style control through the system prompt.
  • Telephony support, so you can deploy full-duplex voice agents on phone calls, from reservations to customer support.
  • Native ASR transcripts, alphanumeric understanding, and keyword biasing, plus turn detection for teams that still want explicit turn boundaries.

Early adopters are reporting real engineering wins, not just vibes. The language-learning app Speak found GPT-Live-1 cut interruptions during thinking pauses by almost 80% versus previous turn-based systems, according to co-founder and CTO Andrew Hsu. Yelp's Alex Levy said using it to answer reservation and food-order calls drove "meaningful improvements in call handling rates." A healthcare team even reported it "simplified our code base by 80% and removed 23K lines of code" compared with their cascaded build.

Pricing is refreshingly simple to state and easy to underestimate: $0.05 per minute for the front-end voice layer, and you bring the backend model and agent harness that fit your product. That second half is the real cost driver, because the voice layer is cheap and the reasoning you pair with it is not. OpenAI also pointed enterprises at OpenAI Presence, a higher-level way to deploy trusted voice agents on top of the same model.

What this means for customer support

Here's where I'd pump the brakes, because "OpenAI shipped a great voice model" and "you can now run AI voice support" are not the same sentence.

GPT-Live-1 solves the conversation problem, and it solves it well. The stop-start rhythm that made phone bots feel robotic is largely gone. On spoken support benchmarks like Tau3 and its telecom variant, GPT-Live-1 clearly outperforms the previous generation. If your bottleneck was "the voice experience feels like a 2019 IVR," this fixes it.

What it does not solve is the resolution problem. The model, by design, is the ears and mouth. It has no idea what your refund policy is, whether this customer's order actually shipped, or which of your 400 help articles answers their question. All of that lives in the backend model, the agent harness, and the business context you wire up, which is the genuinely hard part of AI for customer service automation. It's the difference between a slick demo and a real AI copilot for customer service.

The voice model is one layer; you still need an AI support teammate that knows your help center and resolves the ticket
The voice model is one layer; you still need an AI support teammate that knows your help center and resolves the ticket

So the honest read is: GPT-Live-1 is infrastructure. It's a beautiful voice layer that any support product can now build on. The differentiator moves up a level, to the teammate that actually knows your company and can resolve the ticket. That's the same reason the build-vs-buy question keeps mattering: wiring up the voice is the easy 20%, and getting a reliable agent that you'd trust with real customers is the other 80%. If you're mapping that out, our customer support AI implementation guide walks the harder half.

Try eesel

If you're looking at GPT-Live-1 and thinking about support, the thing to solve isn't the voice, it's the teammate behind it. That's what I work on. eesel is an AI teammate platform where you hire a ready-to-work AI support teammate that learns from your help center, past tickets, and macros, then joins your existing helpdesk and starts resolving conversations.

The part that pairs naturally with a model like GPT-Live-1 is the discipline around it. Before an eesel teammate ever touches a live customer, you can simulate it against thousands of your own historical tickets to see exactly what it would have said and what it would have resolved. I've watched confident-sounding bots quietly give wrong answers, which is precisely why that dry run over real history exists, instead of flipping a switch and hoping.

The eesel AI helpdesk dashboard, where an AI teammate resolves tickets across your support channels
The eesel AI helpdesk dashboard, where an AI teammate resolves tickets across your support channels

And because the theme of GPT-Live-1 is programmatic voice, it's worth knowing eesel is drivable the same way. Beyond the dashboard, there's an eesel CLI plus an MCP server, so you can operate the same teammate from a terminal, wire it into scripts, or let a coding agent like Claude Code or Codex inspect its instructions, propose a change, and review the test responses before anything ships. It's the agent-friendly way to manage the resolution layer that a voice model like GPT-Live-1 sits in front of. You can try eesel for free and simulate it on your own tickets in a few minutes.

Frequently Asked Questions

What is GPT-Live-1?
GPT-Live-1 is OpenAI's full-duplex voice model, meaning it can listen and speak at the same time instead of waiting for you to finish. It powers the new ChatGPT Voice experience and is also available in the OpenAI API. For deeper questions it delegates to a backend model like GPT-5.5, so it stays conversational while the real reasoning happens behind the scenes. It sits alongside other AI in customer service tools as the voice layer, not the whole agent.
How much does GPT-Live-1 cost in the API?
GPT-Live-1 pricing is $0.05 per minute for the front-end voice layer, and you pay separately for whatever backend reasoning model and agent harness you pair it with. That per-minute unit is only part of the story, so it's worth reading up on AI customer support cost savings before you budget a full voice deployment.
How is GPT-Live-1 different from ChatGPT Advanced Voice Mode?
Advanced Voice Mode was turn-based: it waited for silence before replying, which made it interrupt at awkward moments. GPT-Live-1 uses a full-duplex architecture, so it can acknowledge you mid-sentence, stay quiet when you pause, and keep talking while it works. OpenAI's own evaluations show GPT-Live-1 is preferred 75.7% of the time over Advanced Voice Mode.
Can I use GPT-Live-1 for customer support?
Yes, GPT-Live-1 supports telephony and scored well on spoken support benchmarks, so it's a strong voice layer for phone support. But the model only handles the conversation. To actually resolve tickets you still need an agent that knows your help center, which is where an AI agent for customer service like eesel comes in.
Which ChatGPT plans include GPT-Live-1?
GPT-Live-1 is the default model powering ChatGPT Voice for Go, Plus, and Pro users, while GPT-Live-1 mini is the default for Free users. It rolled out globally across iOS, Android, and ChatGPT.com. If you're comparing assistants, our roundup of the best AI chatbot for customer service is a good next read.
Does GPT-Live-1 replace human support agents?
Not on its own. GPT-Live-1 makes voice conversations feel natural, but resolving an issue depends on the reasoning model and business context behind it. The honest framing is closer to AI vs human customer support: the model handles rhythm, a well-trained teammate handles resolution, and people handle the hard edge cases.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
Illustration of a per-minute voice cost meter with sound waves, in OpenAI teal
Trending

GPT-Live-1 pricing: what the $0.05/min API really costs

GPT-Live-1 pricing is $0.05 per minute in the API, plus the backend model and harness you pair it with. Here is the full breakdown, the ChatGPT plans, and the real per-conversation cost.

Rama Adi NugrahaRama Adi NugrahaSep 11, 2026
Illustration of a custom AI inference chip on a circuit board next to a row of servers
Trending

OpenAI's Jalapeño chip: what it is and why it matters

OpenAI's Jalapeño is its first custom AI chip, an inference ASIC built with Broadcom. Here's what it does, the benchmark numbers, and why it matters.

Alicia Kirana UtomoAlicia Kirana UtomoAug 30, 2026
Editorial illustration of a large language model reasoning over a long stream of documents
Trending

Kimi K3 review: Moonshot's open frontier model, tested

A hands-on Kimi K3 review: the 2.8T open model's architecture, benchmarks, real pricing, and what the launch-week community actually thinks.

Alicia Kirana UtomoAlicia Kirana UtomoJul 21, 2026
Illustrated hero banner for GPT-5.6 Luna, OpenAI's fastest and cheapest model tier, with a crescent moon and speed motif
Trending

GPT-5.6 Luna: OpenAI's fastest, cheapest model tier explained

GPT-5.6 Luna is the fastest, cheapest tier of OpenAI's new model family, at $1/$6 per 1M tokens. Here is what it does, what it costs, and where you can use it.

Alicia Kirana UtomoAlicia Kirana UtomoJul 10, 2026
Illustration of a self-hosted AI agent runtime running as a single binary
Trending

ZeroClaw review: the open-source AI agent runtime, honestly tested

An honest ZeroClaw review: what the open-source, Rust-based AI agent runtime does brilliantly, where its security story wobbles, and who should skip it.

Rama Adi NugrahaRama Adi NugrahaJul 19, 2026
Two people talking across a table while an audio-visual AI model watches, listens and speaks in the same loop
Trending

SeedRealtime: what ByteDance's audio-visual model actually does

SeedRealtime is ByteDance's audio-visual full-duplex model. Here is what it does, what ByteDance published, and what you can actually call today.

Alicia Kirana UtomoAlicia Kirana UtomoAug 18, 2026
Illustration of a compact model chip routing a token down two lit expert paths out of many dim ones, for an Inkling-Small explainer
Trending

Inkling-Small explained: a 276B model with 12B doing the work

What Inkling-Small actually is: a 276B/12B open-weights MoE from Thinking Machines, the context window the docs and the providers disagree on, what a million tokens really costs, and where it belongs in a support stack.

Rama Adi NugrahaRama Adi NugrahaAug 4, 2026
Illustration of Inkling, Thinking Machines Lab's open-weights AI model
Trending

Inkling explained: Thinking Machines' open-weights AI model

What Inkling actually is: Thinking Machines Lab's first open-weights model, its real benchmarks, what it costs to run, and whether it belongs anywhere near a support queue.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Illustration representing the Kimi K3 large language model by Moonshot AI
Trending

Kimi K3 explained: Moonshot's open frontier model

A plain-English guide to Kimi K3, Moonshot AI's 2.8-trillion-parameter open model: what it is, how it performs, what it costs, and whether it is worth switching to.

Alicia Kirana UtomoAlicia Kirana UtomoJul 17, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free