From 7565a559ad66fbc4356cb678eff53aef86c3ee75 Mon Sep 17 00:00:00 2001 From: peterychang <49209570+peterychang@users.noreply.github.com> Date: Tue, 2 Sep 2025 10:35:06 -0400 Subject: [PATCH] Having the same ID in the func output causes problems with long running (#558) --- python/packages/main/agent_framework/openai/_responses_client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/packages/main/agent_framework/openai/_responses_client.py b/python/packages/main/agent_framework/openai/_responses_client.py index 015c687eb4..c2793cbf0c 100644 --- a/python/packages/main/agent_framework/openai/_responses_client.py +++ b/python/packages/main/agent_framework/openai/_responses_client.py @@ -789,7 +789,6 @@ class OpenAIResponsesClientBase(OpenAIHandler, ChatClientBase): # call_id for the result needs to be the same as the call_id for the function call args: dict[str, Any] = { "call_id": content.call_id, - "id": call_id_to_id.get(content.call_id), "type": "function_call_output", } if content.result: