| 123456789101112131415161718192021222324252627282930 |
- # LLM配置 (从HelloAgents继承,如需覆盖可在此配置)
- # 模型名称
- LLM_MODEL_ID=your-model-name
- # API密钥
- LLM_API_KEY=your-api-key-here
- # 服务地址
- LLM_BASE_URL=your-api-base-url
- # 超时时间(可选,默认60秒)
- LLM_TIMEOUT=60
- # 服务器配置
- HOST=0.0.0.0
- PORT=8000
- # CORS配置
- CORS_ORIGINS=http://localhost:5173,http://localhost:3000
- # 日志级别
- LOG_LEVEL=INFO
- # Unsplash API Credentials
- UNSPLASH_ACCESS_KEY=""
- UNSPLASH_SECRET_KEY=""
- # 高德地图API配置
- AMAP_API_KEY=your_amap_api_key_here
|