INTUEO LABS INC.
Home
Managed AI Agents

Products

AI Receptionist

Answer and qualify calls with an AI front desk.

IVR

Smart routing flows for your phone system.

Resources

App Features

Explore all dashboard features and capabilities.

FAQ

Common questions about Voice AI platform.

Request a Demo

Talk with us about the best setup for your business.

Enterprise Solutions

Digital infrastructure for AI-ready businesses

Cloud & Web Infrastructure

High-performance digital foundations for the AI era.

Cognitive Growth & Analytics

Data science and predictive analytics for market dominance.

Spatial Computing & AR

Next-generation immersive brand experiences.

Schedule a Consultation

Discuss your enterprise infrastructure needs.

Intuey Assistant
Blog
Contact
Intueo Labs Inc.

Making AI Practical, Accessible, and Impactful...

Navigation

  • Home
  • Managed AI Agents
  • Voice AI
  • Enterprise Solutions
  • Intuey Assistant
  • Blog
  • Contact

Company

  • Blog
  • Careers

Stay Updated

Get the latest news and insights from Intueo Labs.

@intueo.ai+1 (604) 256-8253
© 2026 Intueo Labs Inc. All rights reserved.
PrivacyTerms of useAccessibilitySitemap
GPT Realtime Is Here: How We Put OpenAI's Speech-to-Speech Model Inside Our Voice AI Agents
Voice AI
9 min read

GPT Realtime Is Here: How We Put OpenAI's Speech-to-Speech Model Inside Our Voice AI Agents

By the Intueo Labs TeamJuly 8, 2026

Table of Contents

The old pipeline, and why it always sounded like oneWhat the Realtime API actually gives youHow we integrated it at IntueoWhat changed on real callsThe honest caveatsWhere this goesReferences

Share this article

If you have ever called a business and known within two seconds that you were talking to a machine, you already understand the problem gpt-realtime was built to solve. The tell was never intelligence. It was timing — that half-beat of dead air while your words were transcribed, shipped to a language model, turned back into text, and re-synthesized into speech. Every layer added delay, and delay is what makes a voice sound artificial.

OpenAI's Realtime API and its gpt-realtime family of models eliminate the relay entirely. One model listens to raw audio and responds with raw audio, in a single conversational stream 1[2]. We have spent the past stretch integrating it into the voice AI agents we deploy for clients, and we want to walk through what it is, why it matters, and what it actually took to make it production-ready for a real business phone line.

A glowing audio waveform flowing directly between a phone and an AI agent

The old voice AI stack was a game of telephone between three different models. gpt-realtime is one model that simply hears you and talks back.

The old pipeline, and why it always sounded like one

Traditional voice agents are a chain: a speech-to-text model transcribes the caller, a language model reasons over the transcript, and a text-to-speech model reads the answer aloud. Three models, three hops, three places to lose information [4].

The latency was the obvious cost, but the subtler one was everything the transcript threw away. Hesitation, tone, a caller talking over the agent, laughter, frustration — none of it survives transcription. The language model reasoned about a flattened version of the conversation, which is why pipeline agents interrupt badly, miss sarcasm, and plow ahead when a caller is clearly confused.

Comparison of a clunky three-stage pipeline versus a single seamless speech-to-speech model

Speech-to-speech models change the physics. Because gpt-realtime processes audio natively, it hears how something was said, not just what was said. It can respond to a change in tone, yield gracefully when interrupted mid-sentence, and match the caller's pacing — the things humans do without thinking and pipelines could never quite fake 1[2].

What the Realtime API actually gives you

For the technically curious, the shape of the integration is refreshingly simple. Your server mints an ephemeral key, the client opens a WebRTC or WebSocket connection to the realtime endpoint, and audio flows both ways over that single session [2]. For phone calls specifically, the API supports SIP, which is how a realtime model ends up answering an actual business phone number rather than a browser demo 2[5].

The production model, gpt-realtime-2.1 at the time of writing, supports the pieces a working agent needs: function calling for taking real actions mid-conversation, configurable latency and reasoning behavior, and instructions that persist across the whole session [3]. OpenAI's Agents SDK wraps this in a RealtimeAgent abstraction — define the agent, hand it tools, connect the session [3]. There are even specialized variants for live translation and transcription workflows [2].

Pipeline voice agentgpt-realtime agent
ArchitectureSTT → LLM → TTS, three models chainedOne speech-to-speech model, one stream
LatencyCompounding across every hopLow enough for natural turn-taking [1]
What the model "hears"A text transcriptTone, pacing, interruptions, emotion
Interruption handlingAwkward — mid-pipeline audio is hard to cancelNative — the model yields like a person
Taking actionsBetween turnsFunction calls mid-conversation [3]

How we integrated it at Intueo

Here is the part the launch posts do not cover: a great voice model is the mouth and ears of an agent, not the agent itself. A business phone line needs an agent that knows the business, remembers its callers, and can actually do things — and none of that ships in the box.

So our integration treats gpt-realtime as the conversational layer of a larger stateful agent. When a call comes in over SIP, the realtime session connects, and our agent supplies everything around it: the business's knowledge, the caller's history pulled from the agent's own memory, and a toolbelt of function calls wired into the client's real systems — booking slots on the calendar, looking up an order, updating the CRM, escalating to a human with full context 3[5].

An AI receptionist orb connected to calendar, CRM, memory, and phone systems during a live call

The memory piece matters most, and it is where our existing architecture paid off. Because our agents are stateful by design — something we wrote about when we fixed our AI receptionist's amnesia — the realtime session is not a blank slate. A repeat caller gets an agent that already knows their last conversation, and whatever happens on today's call is written back to the agent's memory when it ends. gpt-realtime made the conversation feel human. Statefulness makes the relationship feel human.

What changed on real calls

The upgrade is audible in the first exchange. Callers interrupt naturally and the agent stops talking — actually stops, instead of finishing its paragraph. Background noise no longer derails transcription because there is no transcription to derail. And the agent picks up on hesitation: when a caller sounds unsure, it slows down and offers to clarify rather than barreling toward a booking.

The operational wins are quieter but just as real. Fewer abandoned calls in the first ten seconds, which is where robotic-sounding agents lose people. Smoother handoffs, because the agent can keep talking naturally while a function call runs in the background. And a noticeable drop in the "can I just talk to a person?" escape hatch — not because we hid it, but because fewer callers feel the need to reach for it.

The honest caveats

We would be selling you something if we pretended it was all upside. Realtime audio sessions cost more than text pipelines, so per-minute economics matter and we engineer around them. Voice-native models introduce new failure modes — an agent that sounds completely human raises the bar for disclosure, which is why every agent we deploy identifies itself as an AI up front, in line with the rules we covered in our piece on AI voice agent disclosure requirements. And guardrails need rethinking when output is audio: you cannot regex a waveform, so behavioral constraints have to live in the agent layer, not a post-processing filter.

None of these are reasons to wait. They are reasons the model alone is not the product — the agent architecture around it is.

Where this goes

Speech-to-speech is not a feature release; it is the moment voice AI crossed from "impressive demo" to "infrastructure a business can answer its phone with." The models will keep improving and, notably, our architecture is model-agnostic — the same stateful agent that speaks through gpt-realtime today can speak through whatever is best next quarter, without losing a day of its memory.

If your business still routes callers through hold music and phone trees, this is the technology that replaces them. Talk to us and we will show you what your phone line sounds like with a realtime agent answering it.

References

  1. [1]OpenAI — Introducing gpt-realtime and Realtime API updates for production voice agents—https://openai.com/index/introducing-gpt-realtime/
  2. [2]OpenAI Platform — Realtime API documentation—https://platform.openai.com/docs/guides/realtime
  3. [3]OpenAI Agents SDK — Building voice agents with RealtimeAgent—https://openai.github.io/openai-agents-js/guides/voice-agents/
  4. [4]OpenAI Platform — Voice agents guide: speech-to-speech vs. chained architectures—https://platform.openai.com/docs/guides/voice-agents
  5. [5]OpenAI Platform — Connecting the Realtime API to phone calls with SIP—https://platform.openai.com/docs/guides/realtime-sip

Filed under

Voice AI
GPT Realtime
OpenAI
Speech-to-Speech
Realtime API
AI Receptionist
Stateful Agents

Ready to transform your business?

Join forward-thinking companies using Intueo Labs to automate customer service and operations.

Get Started NowExplore Solutions

Related Articles

Your AI Receptionist Has to Introduce Itself: The New Rules for AI Voice Agents
Voice AI

Your AI Receptionist Has to Introduce Itself: The New Rules for AI Voice Agents

AI voice agents are answering and making millions of business calls a day, and the law has quietly caught up. AI-generated voices are now regulated like robocalls, consent rules already apply, and disclosure requirements are tightening. This is a clear, sourced guide to what is actually legal in 2026, the mistakes that turn a helpful voice agent into a liability, and why we believe compliance has to be designed into a voice agent from the first line, not bolted on after launch.

June 24, 2026•9 min read
The Death of "Press 1 for Support": Why Voice AI Is Replacing Traditional IVR in 2026
Voice AI

The Death of "Press 1 for Support": Why Voice AI Is Replacing Traditional IVR in 2026

The enterprise call center is undergoing its biggest transformation in decades. As voice AI platforms now handle millions of calls per month, rigid keypad menus are being replaced by natural conversation. Here is what that shift means for your business.

May 26, 2026•7 min read
Voice AI That Actually Runs Your Front Desk
Voice AI

Voice AI That Actually Runs Your Front Desk

How an AI receptionist can keep your schedule clean, reduce no-shows, and connect calls directly to your calendar and CRM. Discover the difference between conversational bots and agentic voice systems.

December 14, 2025•7 min read