tree-of-thought-llm/tasks/base.py
2023-05-24 00:34:41 +02:00

14 lines
234 B
Python

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