You've already forked DataMate
* 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
12 lines
220 B
Python
12 lines
220 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(
|
|
prefix="/synthesis",
|
|
tags = ["synthesis"]
|
|
)
|
|
|
|
# Include sub-routers
|
|
from .ratio_task import router as ratio_task_router
|
|
|
|
router.include_router(ratio_task_router)
|