From 1f9f8cb76cac52591884f28e82132e658b1db9c9 Mon Sep 17 00:00:00 2001 From: goulustis Date: Mon, 13 Oct 2025 19:21:00 +0800 Subject: [PATCH] tool base --- lang_agent/base.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lang_agent/base.py diff --git a/lang_agent/base.py b/lang_agent/base.py new file mode 100644 index 0000000..ca51fe0 --- /dev/null +++ b/lang_agent/base.py @@ -0,0 +1,9 @@ +from typing import List, Callable +from abc import ABC, abstractmethod + + +class LangToolBase(ABC): + + @abstractmethod + def get_tool_fnc(self)->List[Callable]: + pass \ No newline at end of file