tree-of-thought-llm/tasks/base.py

14 lines
234 B
Python
Raw Normal View History

2023-05-23 22:34:41 +00:00
DATA_PATH = './data'
class Task:
def __init__(self):
pass
def __len__(self) -> int:
pass
def get_input(self, idx: int) -> str:
pass
def test_output(self, idx: int, output: str):
pass