From 50d3e652ecabe7637216074a43bb04df106327f6 Mon Sep 17 00:00:00 2001 From: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com> Date: Fri, 7 Nov 2025 10:17:10 -0800 Subject: [PATCH] Removed optional ID from FunctionResultContent (#2011) --- python/packages/core/agent_framework/openai/_responses_client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/packages/core/agent_framework/openai/_responses_client.py b/python/packages/core/agent_framework/openai/_responses_client.py index 54e0527a3b..647963dd97 100644 --- a/python/packages/core/agent_framework/openai/_responses_client.py +++ b/python/packages/core/agent_framework/openai/_responses_client.py @@ -510,7 +510,6 @@ class OpenAIBaseResponsesClient(OpenAIBase, BaseChatClient): # 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: