sim-so's picture
prompt update
b33d6d1
raw
history blame
328 Bytes
from typing import List
class Tool:
description: str = ""
name: str = ""
inputs: List[str] = ""
outputs: List[str] = ""
def __init__(self, *args, **kwargs):
pass
def __call__(self, *args, **kwargs):
args = [arg for arg in args]
kwargs = {k: v for k, v in kwargs.items()}