ERP/backend/.env.example
2026-01-03 19:18:40 +08:00

19 lines
473 B
Plaintext
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_PROVIDER=qwen
QWEN_API_KEY=sk-9bf015da696048eea231085615892b68
QWEN_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions
# 文心一言配置
WENXIN_API_KEY=your_wenxin_api_key_here
WENXIN_SECRET_KEY=your_wenxin_secret_key_here
# 本地模型配置如Ollama
LOCAL_AI_URL=http://localhost:11434/api/generate
LOCAL_MODEL=llama2
# 数据库配置
DATABASE_URL=sqlite:///production.db
# 其他配置...