Files
hefanli 1d19cd3a62 feature: add data-evaluation
* feature: add evaluation task management function

* feature: add evaluation task detail page

* fix: delete duplicate definition for table t_model_config

* refactor: rename package synthesis to ratio

* refactor: add eval file table and  refactor related code

* fix: calling large models in parallel during evaluation
2025-12-04 09:23:54 +08:00

12 lines
222 B
Python

from fastapi import APIRouter
router = APIRouter(
prefix="/evaluation",
tags = ["evaluation"]
)
# Include sub-routers
from .evaluation import router as evaluation_router
router.include_router(evaluation_router)