---
type: "post"
stable_id: "post:gpt-live-continuous-media-loop"
slug: "gpt-live-continuous-media-loop"
title: "GPT-Live Separates The Conversation Loop From Deep Reasoning"
description: "GPT-Live keeps full-duplex audio on a dedicated stateful path while reasoning, tools, persistence, and context compaction run asynchronously."
retrieval_nugget: "The architectural unit is not a voice turn but a continuous media loop. Slow reasoning is delegated off-path, model instances are warmed and switched without interrupting audio, and speculative conversation state is separated from the authoritative transcript."
published_at: "2026-08-03"
updated_at: "2026-08-06"
record_date: "2026-08-03"
date_kind: "published_at"
topics: ["voice-ai","realtime-systems","agents","architecture","state-management"]
entities: ["OpenAI","GPT-Live","WebRTC"]
source_urls: ["https://openai.com/index/continuous-voice-interaction-with-gpt-live/"]
source_format: "article"
editorial_timing: {"lane":"regular_hourly","scheduled_at":"2026-08-07T09:00:00+03:00","real_news_delta":"owner-approved primary-source mechanism or merged analysis"}
visual_decision: {"status":"included","reason":"the central mechanism is a flow, loop, architecture, decision, or state transition that benefits from a diagram","reviewed_by":"codex"}
schema_version: "newruntime-agent-readable-v0.2"
status: "published"
visuals: [{"role":"hero","src":"/images/drip/gpt-live-continuous-media-loop/gpt-live-continuous-media-loop.webp","alt":"A whiteboard architecture diagram showing a continuous full-duplex media loop, asynchronous reasoning and tools, and speculative state becoming an authoritative record.","caption":"New Runtime synthesis from How we built a realtime system for responsive voice AI in six months."}]
routes: {"html":"https://newruntime.com/posts/gpt-live-continuous-media-loop/","markdown":"https://newruntime.com/posts/gpt-live-continuous-media-loop.md","json":"https://newruntime.com/posts/gpt-live-continuous-media-loop.json"}
---

# GPT-Live Separates The Conversation Loop From Deep Reasoning

## Retrieval answer

The architectural unit is not a voice turn but a continuous media loop. Slow reasoning is delegated off-path, model instances are warmed and switched without interrupting audio, and speculative conversation state is separated from the authoritative transcript.

GPT-Live replaces turn-detection-first voice architecture with a continuous full-duplex media loop. Audio streams into and out of a stateful voice model; deeper reasoning, tool calls, persistence, and application logic sit behind an asynchronous boundary, so a slow backend cannot stall speech.

State is handled as a live migration problem. A replacement model instance can be warmed with the current context, run alongside the active instance, and take over when ready. The same mechanism supports context compaction without an audible pause. Continuous speech is also represented in two forms: a speculative view that can change and an authoritative transcript for analytics and downstream systems.

The reusable pattern is a small latency-critical loop plus asynchronous intelligence. Voice, computer control, and other realtime agents can stay responsive while slower reasoning remains useful. The transport details matter too: OpenAI says its WARP work collapses WebRTC startup from six round trips to one, while production shadow traffic exposed CPU, network, geography, and session-lifecycle limits that ordinary GPU load tests missed.
