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.
Files changed (2) hide show
  1. package/.env.example +6 -6
  2. package/package.json +1 -1
package/.env.example CHANGED
@@ -1,12 +1,12 @@
1
- # LPT 提供商配置 - 复制此文件为 .env 并填入真实值
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmpt",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "LLM Proxy Trace - local LLM proxy that captures full traces with real-time Web dashboard",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",