Files
lang-agent/lang_agent/base.py
2025-10-13 19:21:00 +08:00

9 lines
174 B
Python

from typing import List, Callable
from abc import ABC, abstractmethod
class LangToolBase(ABC):
@abstractmethod
def get_tool_fnc(self)->List[Callable]:
pass