# from typing import List # class Tool: # description: str = "Calculate a score and a rank of the guess word, which indicate a distance from the secret word." # name: str = "evaluate_score" # inputs: List[str] = ["word", "puzzle_num"] # required: List[str] = ["word", "puzzle_num"] # def __init__(self, *args, **kwargs): # pass # def setup(self): # def __call__(self, *args, **kwargs): # args = [arg for arg in args] # kwargs = {k: v for k, v in kwargs.items()}