From d8ca6ee9b64432d9f8969629dfc3919280ad59a9 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Wed, 26 Nov 2025 15:06:40 +0000 Subject: [PATCH] Updating for tests --- trustgraph-flow/trustgraph/agent/react/agent_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trustgraph-flow/trustgraph/agent/react/agent_manager.py b/trustgraph-flow/trustgraph/agent/react/agent_manager.py index 9311a57b..c684d113 100644 --- a/trustgraph-flow/trustgraph/agent/react/agent_manager.py +++ b/trustgraph-flow/trustgraph/agent/react/agent_manager.py @@ -273,7 +273,7 @@ class AgentManager: logger.info("DEBUG: About to call agent_react with streaming=True") # Get streaming response response_text = await client.agent_react( - variables=variables, + variables, # Positional for backward compat with tests streaming=True, chunk_callback=on_chunk ) @@ -302,7 +302,7 @@ class AgentManager: logger.info("DEBUG: About to call agent_react with streaming=False") response_text = await client.agent_react( - variables=variables, + variables, # Positional for backward compat with tests streaming=False ) logger.info(f"DEBUG: agent_react returned, got response")