fix: 修正DeepSeek配置示例,使用deepseek作为provider

This commit is contained in:
MerCry 2026-02-26 01:29:37 +08:00
parent f2d29dc2c4
commit ea2aeb62bb
2 changed files with 3 additions and 5 deletions

View File

@ -1,16 +1,15 @@
# AI Service Environment Variables
# Copy this file to .env and modify as needed
# LLM Configuration
# LLM Configuration (OpenAI)
AI_SERVICE_LLM_PROVIDER=openai
AI_SERVICE_LLM_API_KEY=your-api-key-here
AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
AI_SERVICE_LLM_MODEL=gpt-4o-mini
# If using DeepSeek
# AI_SERVICE_LLM_PROVIDER=openai
# AI_SERVICE_LLM_PROVIDER=deepseek
# AI_SERVICE_LLM_API_KEY=your-deepseek-api-key
# AI_SERVICE_LLM_BASE_URL=https://api.deepseek.com/v1
# AI_SERVICE_LLM_MODEL=deepseek-chat
# Ollama Configuration (for embedding model)

View File

@ -61,9 +61,8 @@ AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
AI_SERVICE_LLM_MODEL=gpt-4o-mini
# 或使用 DeepSeek
# AI_SERVICE_LLM_PROVIDER=openai
# AI_SERVICE_LLM_PROVIDER=deepseek
# AI_SERVICE_LLM_API_KEY=your-deepseek-api-key
# AI_SERVICE_LLM_BASE_URL=https://api.deepseek.com/v1
# AI_SERVICE_LLM_MODEL=deepseek-chat
```