From b882deb0797786ca0c999a6848770c0ff58ebbea Mon Sep 17 00:00:00 2001 From: Ilia Ilmer Date: Thu, 4 Sep 2025 22:24:56 -0400 Subject: [PATCH] code typo: missing threads_id --- docs/running_agents.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/running_agents.md b/docs/running_agents.md index b86888784..e51b109cf 100644 --- a/docs/running_agents.md +++ b/docs/running_agents.md @@ -100,6 +100,7 @@ async def main(): # Create session instance session = SQLiteSession("conversation_123") + thread_id = "thread_123" # Example thread ID with trace(workflow_name="Conversation", group_id=thread_id): # First turn result = await Runner.run(agent, "What city is the Golden Gate Bridge in?", session=session)