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:
16
backend/.env.example
Normal file
16
backend/.env.example
Normal file
@@ -0,0 +1,16 @@
|
||||
# MongoDB配置
|
||||
MONGODB_URL=mongodb://localhost:27017
|
||||
MONGODB_DB=ai_chatroom
|
||||
|
||||
# 服务配置
|
||||
HOST=0.0.0.0
|
||||
PORT=8000
|
||||
DEBUG=true
|
||||
|
||||
# 安全配置(生产环境请修改)
|
||||
SECRET_KEY=your-secret-key-change-in-production
|
||||
ENCRYPTION_KEY=your-encryption-key-32-bytes-long
|
||||
|
||||
# 代理配置(可选)
|
||||
# DEFAULT_HTTP_PROXY=http://127.0.0.1:7890
|
||||
# DEFAULT_HTTPS_PROXY=http://127.0.0.1:7890
|
||||
Reference in New Issue
Block a user