Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# tools/base_tool.py
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
class BaseTool(ABC):
|
||||
@abstractmethod
|
||||
def get_functions(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def execute(self, function_name, **kwargs):
|
||||
pass
|
||||
Reference in New Issue
Block a user