9 lines
174 B
Python
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 |