添加 Copilot 聊天流式响应功能及相关配置

This commit is contained in:
2026-03-23 18:03:00 +08:00
parent b0acfb21ec
commit 21dd393aee
6 changed files with 316 additions and 1 deletions
+4
View File
@@ -18,6 +18,7 @@ from app.api.v1.endpoints import (
user_management, # 新增:用户管理
audit, # 新增:审计日志
meta,
copilot_chat,
)
from app.api.v1.endpoints.network import (
general,
@@ -110,3 +111,6 @@ api_router.include_router(project_data.router, tags=["Project Data"])
# Extension
api_router.include_router(extension.router, tags=["Extension"])
# Copilot Chat
api_router.include_router(copilot_chat.router, prefix="/copilot", tags=["Copilot"])