feat: V1 - DAG编排/告警系统/Agent循环/知识库RAG/Webhook + 审核管理富上下文修复

This commit is contained in:
2026-08-13 00:45:39 +08:00
parent 135afa342f
commit 1a154b8957
+5
View File
@@ -2,6 +2,7 @@
from fastapi import APIRouter
from app.api.v1 import (
auth, tenants, users, projects, tasks, workers, reviews, artifacts, dashboard,
alerts, dag, webhooks, knowledge,
)
api_router = APIRouter(prefix="/api/v1")
@@ -14,3 +15,7 @@ api_router.include_router(workers.router, tags=["workers"])
api_router.include_router(reviews.router, tags=["reviews"])
api_router.include_router(artifacts.router, tags=["artifacts"])
api_router.include_router(dashboard.router, tags=["dashboard"])
api_router.include_router(alerts.router, tags=["alerts"])
api_router.include_router(dag.router, tags=["dag"])
api_router.include_router(webhooks.router, tags=["webhooks"])
api_router.include_router(knowledge.router, tags=["knowledge"])