From ea2aeb62bb04f646411e3363ad969d2806099ec5 Mon Sep 17 00:00:00 2001 From: MerCry Date: Thu, 26 Feb 2026 01:29:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3DeepSeek=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E7=A4=BA=E4=BE=8B=EF=BC=8C=E4=BD=BF=E7=94=A8deepseek?= =?UTF-8?q?=E4=BD=9C=E4=B8=BAprovider?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 5 ++--- README.md | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 22de4c4..db110b4 100644 --- a/.env.example +++ b/.env.example @@ -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) diff --git a/README.md b/README.md index eb438e2..a2ae926 100644 --- a/README.md +++ b/README.md @@ -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 ```