nl2sql-bench / server /tasks /__init__.py
ritvik360's picture
Upload folder using huggingface_hub
a39d8ef verified
raw
history blame contribute delete
363 Bytes
"""Auto-registers all tasks by importing them."""
from .easy import SimpleFilterTask
from .medium import JoinAggregationTask
from .hard import AnalyticsWindowTask
from .base import get_task, all_task_names, BaseTask
__all__ = [
"SimpleFilterTask",
"JoinAggregationTask",
"AnalyticsWindowTask",
"get_task",
"all_task_names",
"BaseTask",
]