from fastapi import APIRouter from .health import router as health_router from .hf import router as hf_router api_router = APIRouter() api_router.include_router(health_router, prefix="/health") api_router.include_router(hf_router, prefix="/hf")