llmpt 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +6 -6
- package/package.json +1 -1
package/.env.example
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# LPT 提供商配置 -
|
|
1
|
+
# LPT 提供商配置 - 填入真实值后保存,重启服务生效
|
|
2
2
|
|
|
3
3
|
# OpenAI / 兼容接口
|
|
4
|
-
OPENAI_BASE_URL=https://api.openai.com/v1
|
|
5
|
-
OPENAI_API_KEY=sk-...
|
|
4
|
+
# OPENAI_BASE_URL=https://api.openai.com/v1
|
|
5
|
+
# OPENAI_API_KEY=sk-...
|
|
6
6
|
|
|
7
7
|
# Anthropic
|
|
8
|
-
ANTHROPIC_BASE_URL=https://api.anthropic.com
|
|
9
|
-
ANTHROPIC_API_KEY=sk-ant-...
|
|
8
|
+
# ANTHROPIC_BASE_URL=https://api.anthropic.com
|
|
9
|
+
# ANTHROPIC_API_KEY=sk-ant-...
|
|
10
10
|
|
|
11
11
|
# Ollama 本地(无需 apiKey)
|
|
12
|
-
OLLAMA_BASE_URL=http://localhost:11434
|
|
12
|
+
# OLLAMA_BASE_URL=http://localhost:11434
|