OpenAI released two new Realtime API models on July 6, 2026: gpt-realtime-2.1 and gpt-realtime-2.1-mini. If you are running production voice agents on gpt-realtime-2, the upgrade to 2.1 costs nothing in money or migration effort — same price, same endpoint, same session API, meaningfully lower latency.

Here is what changed, what it means for your build, and which tier to pick.


What Shipped

gpt-realtime-2.1 — An incremental update to gpt-realtime-2. Same endpoint (v1/realtime), same session API, same pricing. The model strings change; everything else stays the same. You get better performance automatically once you flip the model name.

gpt-realtime-2.1-mini — A new mid-tier reasoning model for voice. This is not the old gpt-realtime-mini restickered. It costs more than the original mini but significantly less than the full model, and it brings reasoning capability that the original mini lacked.


GPT-Realtime-2.1: What Improved

25% Lower P95 Latency

This is the headline number. The p95 latency — the slowest 5% of responses — dropped by at least 25% through improved caching. The improvement matters most for production deployments where tail latency creates noticeable pauses. A call center running thousands of concurrent sessions will notice this more than a solo demo app.

This is not a change in the model’s reasoning speed. It is a caching improvement: the system reuses computation for common session patterns more aggressively, which cuts the long tail. Your p50 latency may be unchanged; your p99 will improve.

Better Audio Processing

Three specific improvements in the audio stack:

Alphanumeric recognition. The model now handles sequences like phone numbers, order IDs, confirmation codes, and serial numbers more reliably. If your voice agent asks users to read back confirmation codes and you were seeing misrecognitions, this directly targets that.

Silence and noise handling. The model is less likely to activate on background noise or produce spurious turns from ambient audio. This matters for call center deployments where agents may be in noisy environments or where customers use speakerphones.

Interruption behavior. When the user starts speaking while the model is speaking, the barge-in detection and stream cancellation is more reliable. The behavioral edge case — user starts speaking, model keeps talking for a half-second — should be rarer.

Same Reasoning and Tool Configuration

The reasoning effort levels (minimal, low, medium, high, xhigh) are unchanged. Parallel tool calling behavior is unchanged. The session API schema is unchanged. If you tuned these in gpt-realtime-2, your configuration carries over without modification.


Pricing: Same as GPT-Realtime-2

Text input Audio input Audio output
gpt-realtime-2.1 $4.00/1M $32.00/1M $64.00/1M
gpt-realtime-2 $4.00/1M $32.00/1M $64.00/1M

The pricing is identical. This is a free upgrade. There is no reason to stay on gpt-realtime-2 once you confirm 2.1 behavior is what you expect.


GPT-Realtime-2.1-Mini: The New Mid-Tier

The original gpt-realtime-mini was an aggressive cost optimization — $0.60/1M audio input versus $32.00/1M for the full model, a 53x gap. The tradeoff was capability: it lacked configurable reasoning, and its audio quality on complex tasks was noticeably lower.

gpt-realtime-2.1-mini fills the gap between them:

Text input Audio input Audio output
gpt-realtime-2.1 $4.00/1M $32.00/1M $64.00/1M
gpt-realtime-2.1-mini $0.60/1M $10.00/1M $20.00/1M
gpt-realtime-mini $0.60/1M $0.60/1M $2.40/1M

The mini is 3.2x cheaper on audio input than the full 2.1, versus the original mini’s 53x gap. The tradeoff profile shifts: gpt-realtime-2.1-mini brings the 2.1 quality improvements (better noise handling, alphanumeric recognition, configurable reasoning) at a meaningful discount from the full model.

This makes gpt-realtime-2.1-mini the right choice for:

  • FAQ-style voice agents: Short, low-reasoning interactions where cost matters more than tail quality
  • High-volume pipelines: If you are running tens of thousands of sessions per day and your workload does not need high or xhigh reasoning effort
  • Internal tooling: Voice agents where business users tolerate slightly more variation in response quality

It is not the right choice for:

  • Medical, legal, or compliance intake where accuracy is paramount
  • Customer-facing agents where every call represents significant revenue
  • Cases where your evaluations show meaningful quality degradation at mini reasoning effort

If you were using gpt-realtime-mini in production, re-evaluate. gpt-realtime-2.1-mini costs more per token but may reduce error rates enough to lower your true cost-per-completed-call.


Migration: What to Change

For gpt-realtime-2 users, the migration is one string:

Before:

{
  "type": "session.update",
  "session": {
    "model": "gpt-realtime-2",
    "reasoning_effort": "medium"
  }
}

After:

{
  "type": "session.update",
  "session": {
    "model": "gpt-realtime-2.1",
    "reasoning_effort": "medium"
  }
}

That is the complete migration for most deployments. All other session parameters, tool definitions, VAD configuration, voice selection, and event handling remain unchanged.

Recommended before flipping production:

  1. Run a sample of your existing test calls through gpt-realtime-2.1 and compare transcription accuracy on alphanumeric sequences your users typically provide
  2. Check barge-in behavior on your edge cases (background noise, speakerphone, fast speech)
  3. Confirm your downstream tooling handles the same event types — no new event types were added or removed in 2.1

No Deprecation Timeline Announced

As of July 7, 2026, OpenAI has not announced a deprecation date for gpt-realtime-2 or gpt-realtime-mini. There is no urgency beyond “this is a free upgrade and you should take it.” Plan the migration in your next sprint rather than treating it as an emergency.


Builder Decision Table

Your current setup Action
gpt-realtime-2 in production Upgrade to gpt-realtime-2.1. Same price, better latency. Target next sprint.
gpt-realtime-mini in production Evaluate gpt-realtime-2.1-mini. Run quality evals. May cost more per token but fewer failed interactions.
Both in production (routing by use case) Upgrade gpt-realtime-2gpt-realtime-2.1. Separately evaluate gpt-realtime-minigpt-realtime-2.1-mini.
Still on gpt-4o-realtime-preview That model was shut down May 12, 2026. You are already broken. Start with gpt-realtime-2.1.
Not yet building voice Start with gpt-realtime-2.1 as your baseline for new evaluations. Do not start on the older 2.0 variants.

The upgrade from gpt-realtime-2 to gpt-realtime-2.1 is one of the rarer cases in this space: genuinely free, no breaking changes, measurable improvement. Take it.