Files
worklist/backend/.env
2026-01-13 09:38:11 +00:00

18 lines
535 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AI服务配置用于AI润色功能
# 支持多个AI服务商OpenAI、Anthropic、Google、自定义端点等
AI_MODEL=gpt-3.5-turbo
AI_API_KEY=your_api_key_here
# AI_API_BASE=https://your-custom-endpoint.com/v1 # 可选自定义API端点
# AI_CUSTOM_PROVIDER=openai # 可选自定义端点的API格式
AI_TEMPERATURE=0.7
AI_MAX_TOKENS=500
# 兼容旧配置
OPENAI_API_KEY=your_openai_api_key_here
# 数据库配置
DATABASE_URL=sqlite:///worklist.db
# Flask配置
SECRET_KEY=your-secret-key-here