update dep

This commit is contained in:
朱潮 2026-05-20 16:12:29 +08:00
parent 86c58ffccf
commit 5b378fcdf6

View File

@ -81,12 +81,10 @@ from utils.log_util.logger import init_with_fastapi
logger = logging.getLogger('app')
# Import route modules
<<<<<<< Updated upstream
from routes import chat, files, projects, system, skill_manager, database, memory
=======
from routes import chat, files, projects, system, skill_manager, database, memory, bot_manager, knowledge_base, payment, voice
from routes.mcp_resources import router as mcp_resources_router
>>>>>>> Stashed changes
from routes.webdav import wsgidav_app
@ -215,8 +213,6 @@ app.include_router(skill_manager.router)
app.include_router(database.router)
app.include_router(memory.router)
<<<<<<< Updated upstream
=======
# 注册语音对话路由
app.include_router(voice.router)
@ -231,7 +227,6 @@ app.include_router(mcp_resources_router)
# 挂载 WsgiDAVWSGI 应用通过 WSGIMiddleware 集成到 ASGI
>>>>>>> Stashed changes
# Register the file management API routes
app.include_router(file_manager_router)