tool base

This commit is contained in:
2025-10-13 19:21:00 +08:00
parent 6b78e45e0f
commit 1f9f8cb76c

9
lang_agent/base.py Normal file
View File

@@ -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