From 2e5ca0305eaeee4a3aac4754e69126af1c959a92 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Wed, 17 Dec 2025 17:42:39 +0000 Subject: [PATCH] Fix incorrect API usage --- trustgraph-flow/trustgraph/agent/react/service.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/trustgraph-flow/trustgraph/agent/react/service.py b/trustgraph-flow/trustgraph/agent/react/service.py index a4238e36..d4a4d72f 100755 --- a/trustgraph-flow/trustgraph/agent/react/service.py +++ b/trustgraph-flow/trustgraph/agent/react/service.py @@ -433,13 +433,11 @@ class Processor(AgentService): end_of_dialog=True, # Legacy fields for backward compatibility error=error_obj, - response=None, ) else: # Legacy format r = AgentResponse( error=error_obj, - response=None, ) await respond(r)