fix: 修正DeepSeek配置示例,使用deepseek作为provider
This commit is contained in:
parent
f2d29dc2c4
commit
ea2aeb62bb
|
|
@ -1,16 +1,15 @@
|
||||||
# AI Service Environment Variables
|
# AI Service Environment Variables
|
||||||
# Copy this file to .env and modify as needed
|
# Copy this file to .env and modify as needed
|
||||||
|
|
||||||
# LLM Configuration
|
# LLM Configuration (OpenAI)
|
||||||
AI_SERVICE_LLM_PROVIDER=openai
|
AI_SERVICE_LLM_PROVIDER=openai
|
||||||
AI_SERVICE_LLM_API_KEY=your-api-key-here
|
AI_SERVICE_LLM_API_KEY=your-api-key-here
|
||||||
AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
|
AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
|
||||||
AI_SERVICE_LLM_MODEL=gpt-4o-mini
|
AI_SERVICE_LLM_MODEL=gpt-4o-mini
|
||||||
|
|
||||||
# If using DeepSeek
|
# 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_API_KEY=your-deepseek-api-key
|
||||||
# AI_SERVICE_LLM_BASE_URL=https://api.deepseek.com/v1
|
|
||||||
# AI_SERVICE_LLM_MODEL=deepseek-chat
|
# AI_SERVICE_LLM_MODEL=deepseek-chat
|
||||||
|
|
||||||
# Ollama Configuration (for embedding model)
|
# Ollama Configuration (for embedding model)
|
||||||
|
|
|
||||||
|
|
@ -61,9 +61,8 @@ AI_SERVICE_LLM_BASE_URL=https://api.openai.com/v1
|
||||||
AI_SERVICE_LLM_MODEL=gpt-4o-mini
|
AI_SERVICE_LLM_MODEL=gpt-4o-mini
|
||||||
|
|
||||||
# 或使用 DeepSeek
|
# 或使用 DeepSeek
|
||||||
# AI_SERVICE_LLM_PROVIDER=openai
|
# AI_SERVICE_LLM_PROVIDER=deepseek
|
||||||
# AI_SERVICE_LLM_API_KEY=your-deepseek-api-key
|
# 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
|
# AI_SERVICE_LLM_MODEL=deepseek-chat
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue