From 0d16571d401c137e5e7e57d421b58c66e5c2330a Mon Sep 17 00:00:00 2001 From: masterbatcoderman10 Date: Fri, 17 Oct 2025 11:40:33 +0400 Subject: [PATCH] Fix: Corrected f-string syntax error in agent.py --- libs/python/agent/agent/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/python/agent/agent/agent.py b/libs/python/agent/agent/agent.py index 9339e9a8..fb119a68 100644 --- a/libs/python/agent/agent/agent.py +++ b/libs/python/agent/agent/agent.py @@ -533,7 +533,7 @@ class ComputerAgent: # Perform function call function = self._get_tool(item.get("name")) if not function: - raise ToolError(f"Function {item.get("name")} not found") + raise ToolError(f"Function {item.get('name')} not found") args = json.loads(item.get("arguments"))