- 新增 Go 语言后端服务(server/),包含用户认证、Agent管理、数据库连接等API - 新增 Python Agent 服务(agent/),实现Agent核心逻辑和工具集 - 前端从原生HTML迁移到Vue.js框架(web/src/) - 添加 Docker Compose 支持(docker-compose.yml) - 添加项目架构文档(docs/ARCHITECTURE.md) - 添加环境变量示例(.env.example)和本地启动脚本(start-local.ps1) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
# JWT 配置
|
|
JWT_SECRET=your-secret-key-change-in-production
|
|
|
|
# LLM 提供商 (openai / anthropic)
|
|
LLM_PROVIDER=openai
|
|
|
|
# OpenAI API Key
|
|
OPENAI_API_KEY=your-openai-api-key
|
|
|
|
# Anthropic API Key
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key
|