From b90a34228f722811c360247d22e0a8b424ffac30 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 7 Jan 2026 18:03:58 -0500 Subject: [PATCH] Update 19c to remove pausing audio and input --- examples/foundational/19c-openai-realtime-live-video.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/foundational/19c-openai-realtime-live-video.py b/examples/foundational/19c-openai-realtime-live-video.py index 2c4c59b82..5c1a90777 100644 --- a/examples/foundational/19c-openai-realtime-live-video.py +++ b/examples/foundational/19c-openai-realtime-live-video.py @@ -135,10 +135,6 @@ Remember, your responses should be short. Just one or two sentences, usually. Re await maybe_capture_participant_screen(transport, client, framerate=1) await task.queue_frames([LLMRunFrame()]) - await asyncio.sleep(3) - logger.debug("Unpausing audio and video") - llm.set_audio_input_paused(False) - llm.set_image_input_paused(False) @transport.event_handler("on_client_disconnected") async def on_client_disconnected(transport, client):