From 20275b30c830241b5dc279e329dcfed3b46d55b4 Mon Sep 17 00:00:00 2001 From: goulustis Date: Wed, 15 Oct 2025 15:52:00 +0800 Subject: [PATCH] comment out tools for now --- lang_agent/pipeline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang_agent/pipeline.py b/lang_agent/pipeline.py index 8ef48a3..6d50236 100644 --- a/lang_agent/pipeline.py +++ b/lang_agent/pipeline.py @@ -70,7 +70,8 @@ class Pipeline: # NOTE: placeholder for now, add graph later self.tool_manager:ToolManager = self.config.tool_manager_config.setup() memory = MemorySaver() - tools = self.tool_manager.get_tools() + # tools = self.tool_manager.get_tools() + tools = [] self.agent = create_react_agent(self.llm, tools, checkpointer=memory) # def respond(self, msg:str | List[SystemMessage, HumanMessage]):