You've already forked DataMate
* feat: Implement data synthesis task management with database models and API endpoints * feat: Update Python version requirements and refine dependency constraints in configuration * fix: Correctly extract file values from selectedFilesMap in AddDataDialog * feat: Refactor synthesis task routes and enhance file task management in the API * feat: Enhance SynthesisTaskTab with tooltip actions and add chunk data retrieval in API
12 lines
238 B
Python
12 lines
238 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(
|
|
prefix="/synthesis",
|
|
tags = ["synthesis"]
|
|
)
|
|
|
|
# Include sub-routers
|
|
from .generation_api import router as generation_router_router
|
|
|
|
router.include_router(generation_router_router)
|