feat: 添加线索引擎、NLQ、场景检测、前端界面等核心功能模块

This commit is contained in:
freedakgmail
2026-06-16 08:15:15 +08:00
parent 7b1e2b10a8
commit 48340f6011
62 changed files with 6772 additions and 65 deletions
+4
View File
@@ -7,7 +7,9 @@ from contextlib import asynccontextmanager
from fastapi import FastAPI
from app import __version__
from app.api.clues import router as clues_router
from app.api.datahub import router as datahub_router
from app.api.nlq import router as nlq_router
from app.config import get_settings
@@ -26,6 +28,8 @@ app = FastAPI(
)
app.include_router(datahub_router)
app.include_router(clues_router)
app.include_router(nlq_router)
@app.get("/health")