mirror of
https://github.com/yuruotong1/autoMate.git
synced 2025-12-26 05:16:21 +08:00
8 lines
175 B
Python
8 lines
175 B
Python
from langchain_core.tools import BaseTool
|
|
class BaseTool(BaseTool):
|
|
def run(self, **kwargs):
|
|
pass
|
|
|
|
def _run(self, **kwargs):
|
|
return self.run(**kwargs)
|