From 232c69d78574287f4146284ec05230ec106e6de4 Mon Sep 17 00:00:00 2001 From: goulustis Date: Fri, 28 Nov 2025 17:38:48 +0800 Subject: [PATCH] add notes --- lang_agent/base.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lang_agent/base.py b/lang_agent/base.py index 21d99cd..c19be63 100644 --- a/lang_agent/base.py +++ b/lang_agent/base.py @@ -9,6 +9,9 @@ from langgraph.graph.state import CompiledStateGraph class LangToolBase(ABC): + """ + class to inherit if to create a new local tool + """ @abstractmethod def get_tool_fnc(self)->List[Callable]: @@ -37,4 +40,7 @@ class GraphBase(ABC): class ToolNodeBase(GraphBase): @abstractmethod def get_streamable_tags(self)->List[List[str]]: + """ + returns names of llm model to listen to when streaming + """ return [["tool_llm"]] \ No newline at end of file