pi-opencode-go-provider 1.0.8 → 1.0.9
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/README.md +2 -1
- package/models.json +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,9 +69,10 @@ pi
|
|
|
69
69
|
| Model | API | Type | Context | Max Tokens | Input Cost | Output Cost |
|
|
70
70
|
|-------|-----|------|---------|------------|------------|-------------|
|
|
71
71
|
| DeepSeek V4 Flash | Completions | Text | 1.0M | 384K | $0.07 | $0.14 |
|
|
72
|
-
| DeepSeek V4 Pro | Completions | Text | 1.0M | 384K | $0.43 | $0.87 |
|
|
72
|
+
| DeepSeek V4 Pro (New) | Completions | Text | 1.0M | 384K | $0.43 | $0.87 |
|
|
73
73
|
| GLM-5.1 | Completions | Text | 203K | 33K | $1.40 | $4.40 |
|
|
74
74
|
| GLM-5.2 | Completions | Text | 1.0M | 131K | $1.40 | $4.40 |
|
|
75
|
+
| GLM-5.3 | Completions | Text | 1.0M | 131K | $1.40 | $4.40 |
|
|
75
76
|
| GPT-5.6 Luna (2x usage) | Responses | Text + Image | 1.1M | 128K | $0.10 | $0.60 |
|
|
76
77
|
| Grok 4.5 | Responses | Text + Image | 500K | 500K | $2.00 | $6.00 |
|
|
77
78
|
| Hy3 | Completions | Text | 256K | 64K | $0.14 | $0.58 |
|
package/models.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"id": "glm-5.3",
|
|
4
|
+
"name": "GLM-5.3",
|
|
5
|
+
"api": "openai-completions",
|
|
6
|
+
"baseUrl": "https://opencode.ai/zen/go/v1",
|
|
7
|
+
"reasoning": true,
|
|
8
|
+
"input": [
|
|
9
|
+
"text"
|
|
10
|
+
],
|
|
11
|
+
"cost": {
|
|
12
|
+
"input": 1.4,
|
|
13
|
+
"output": 4.4,
|
|
14
|
+
"cacheRead": 0.26,
|
|
15
|
+
"cacheWrite": 0
|
|
16
|
+
},
|
|
17
|
+
"contextWindow": 1000000,
|
|
18
|
+
"maxTokens": 131072
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"id": "qwen3.7-plus",
|
|
4
22
|
"name": "Qwen3.7 Plus",
|
|
@@ -166,7 +184,7 @@
|
|
|
166
184
|
},
|
|
167
185
|
{
|
|
168
186
|
"id": "deepseek-v4-pro",
|
|
169
|
-
"name": "DeepSeek V4 Pro",
|
|
187
|
+
"name": "DeepSeek V4 Pro (New)",
|
|
170
188
|
"api": "openai-completions",
|
|
171
189
|
"baseUrl": "https://opencode.ai/zen/go/v1",
|
|
172
190
|
"reasoning": true,
|
package/package.json
CHANGED