FD900's picture
Create base.py
f04d051 verified
raw
history blame
245 Bytes
class Tool:
name = ""
description = ""
inputs = {}
output_type = "string"
def __init__(self, **kwargs):
pass
def forward(self, **kwargs):
raise NotImplementedError("Tool must implement forward method.")