2025-11-23 10:55:04 +08:00
|
|
|
from fastapi import APIRouter
|
|
|
|
|
|
2025-12-06 16:47:17 +08:00
|
|
|
from . import chat, health, luckysheet_ws, tasks, lightrag
|
2025-11-23 10:55:04 +08:00
|
|
|
|
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
|
|
|
api_router.include_router(tasks.router, tags=["tasks"])
|
|
|
|
|
api_router.include_router(chat.router, tags=["chat"])
|
2025-12-06 16:47:17 +08:00
|
|
|
api_router.include_router(lightrag.router, tags=["lightrag"])
|
2025-11-23 10:55:04 +08:00
|
|
|
|
|
|
|
|
root_router = APIRouter()
|
|
|
|
|
root_router.include_router(health.router, tags=["health"])
|
2025-11-29 05:16:23 +08:00
|
|
|
root_router.include_router(luckysheet_ws.router)
|