feat: AI聊天室多Agent协作讨论平台
- 实现Agent管理,支持AI辅助生成系统提示词 - 支持多个AI提供商(OpenRouter、智谱、MiniMax等) - 实现聊天室和讨论引擎 - WebSocket实时消息推送 - 前端使用React + Ant Design - 后端使用FastAPI + MongoDB Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
14
backend/routers/__init__.py
Normal file
14
backend/routers/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
API路由模块
|
||||
"""
|
||||
from . import providers
|
||||
from . import agents
|
||||
from . import chatrooms
|
||||
from . import discussions
|
||||
|
||||
__all__ = [
|
||||
"providers",
|
||||
"agents",
|
||||
"chatrooms",
|
||||
"discussions",
|
||||
]
|
||||
Reference in New Issue
Block a user