Spaces:
Runtime error
Runtime error
File size: 532 Bytes
ab01137 b33d6d1 ab01137 b33d6d1 ab01137 b33d6d1 ab01137 b33d6d1 ab01137 b33d6d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# 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()}
|