From 7a32cb94a6d8a28080b85854ab6222df203f1917 Mon Sep 17 00:00:00 2001 From: Vidit Patankar Date: Sun, 31 May 2026 19:55:53 +0530 Subject: [PATCH] docs: remove nonexistent 'context' param from RealtimeRunner.__init__ docstring RealtimeRunner.__init__ accepts only starting_agent, model, and config. The docstring's "context" entry is a copy-paste leftover from run(), which is the method that actually takes context. Drop the stale line so the Args block matches the signature. Signed-off-by: Vidit Patankar --- src/agents/realtime/runner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/agents/realtime/runner.py b/src/agents/realtime/runner.py index e51a094d8f..9ce04daa85 100644 --- a/src/agents/realtime/runner.py +++ b/src/agents/realtime/runner.py @@ -38,7 +38,6 @@ def __init__( Args: starting_agent: The agent to start the session with. - context: The context to use for the session. model: The model to use. If not provided, will use a default OpenAI realtime model. config: Override parameters to use for the entire run. """