From 0512ada793b323a0f28269c01968c7f0203b2331 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Mon, 2 Mar 2026 00:13:41 -0800 Subject: [PATCH] feat(agent): include tools in agent status output Added the tools attribute to the AIAgent class's status output, ensuring that the current tools used by the agent are included in the status information. This enhancement improves the visibility of the agent's capabilities during runtime. --- run_agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run_agent.py b/run_agent.py index 3190a854..ca155f60 100644 --- a/run_agent.py +++ b/run_agent.py @@ -1153,6 +1153,7 @@ class AIAgent: "session_start": self.session_start.isoformat(), "last_updated": datetime.now().isoformat(), "system_prompt": self._cached_system_prompt or "", + "tools": self.tools or [], "message_count": len(cleaned), "messages": cleaned, }