From 2aea94c200b03097a0fe5c5e4c4eda13d9174071 Mon Sep 17 00:00:00 2001 From: goulustis Date: Fri, 10 Oct 2025 21:45:27 +0800 Subject: [PATCH] more notes --- lang_agent/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang_agent/pipeline.py b/lang_agent/pipeline.py index fc01ebd..8932f46 100644 --- a/lang_agent/pipeline.py +++ b/lang_agent/pipeline.py @@ -55,7 +55,7 @@ class Pipeline: api_key=self.config.api_key, base_url=self.config.base_url) - # self.agent = self.llm # NOTE: placeholder for now, add graph later + # NOTE: placeholder for now, add graph later memory = MemorySaver() tools = [] self.agent = create_react_agent(self.llm, tools, checkpointer=memory)