pi-hypercharm-provider 1.3.7 → 1.3.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/README.md CHANGED
@@ -15,7 +15,7 @@ _Hyperoptimized coding models — DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, GPT
15
15
 
16
16
  ## Features
17
17
 
18
- - **29+ AI Models** including DeepSeek V4 Flash/Pro, GLM 5/5.1, Kimi K2.5/K2.6, Qwen3.6/3.7, MiniMax M2.7, Gemma 4, GPT-OSS, and Llama
18
+ - **31+ AI Models** including DeepSeek V4 Flash/Pro, GLM 5/5.1, Kimi K2.5/K2.6, Qwen3.6/3.7, MiniMax M2.7, Gemma 4, GPT-OSS, and Llama
19
19
  - **DeepSeek Native Thinking** — Uses the `deepseek` thinking format for Charm Hyper requests, with native `reasoning_effort` on models that publish levels
20
20
  - **OpenAI-compatible API** via Charm Hyper's `/v1/chat/completions` endpoint
21
21
  - **Official Catalog Sync** from Charm's typed `/v1/provider` endpoint, matching `@charmland/pi-hyper-provider`
@@ -30,18 +30,20 @@ _Hyperoptimized coding models — DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, GPT
30
30
  | DeepSeek V4 Flash 0731 | Text | 1.0M | 384K | $0.44 | $1.32 |
31
31
  | DeepSeek V4 Pro | Text | 1.0M | 384K | $2.40 | $4.80 |
32
32
  | DeepSeek V4 Pro 0813 | Text | 1.0M | 262K | $1.44 | $4.31 |
33
- | Gemma 4 26B A4B | Text | 256K | 26K | $0.11 | $0.41 |
34
- | GLM-5 | Text | 203K | 20K | $0.90 | $2.80 |
35
- | GLM-5.1 | Text | 203K | 3K | $1.31 | $4.27 |
33
+ | Gemma 4 26B A4B | Text | 256K | 26K | $0.12 | $0.42 |
34
+ | GLM 5.3 | Text | 1.0M | 262K | $1.52 | $4.79 |
35
+ | GLM 5.3 Flash | Text + Image | 1.0M | 131K | $0.16 | $0.54 |
36
+ | GLM-5 | Text | 203K | 20K | $0.91 | $2.93 |
37
+ | GLM-5.1 | Text | 203K | 3K | $1.33 | $4.31 |
36
38
  | GLM-5.2 | Text | 1.0M | 33K | $1.52 | $4.79 |
37
- | gpt-oss-120b | Text | 128K | 13K | $0.18 | $0.68 |
39
+ | gpt-oss-120b | Text | 128K | 13K | $0.19 | $0.70 |
38
40
  | Kimi K2.5 | Text | 262K | 26K | $0.54 | $2.85 |
39
41
  | Kimi K2.6 | Text + Image | 262K | 26K | $1.03 | $4.36 |
40
42
  | Kimi K2.7 Code | Text + Image | 262K | 16K | $1.03 | $4.36 |
41
43
  | Kimi K3 | Text + Image | 1.0M | 16K | $3.27 | $16.33 |
42
44
  | Llama 3.3 70B Instruct | Text | 128K | 13K | $0.61 | $1.04 |
43
- | Llama 4 Maverick 17B 128E Instruct FP8 | Text | 430K | 43K | $0.28 | $0.93 |
44
- | MiniMax M2.7 | Text | 262K | 7K | $0.40 | $1.50 |
45
+ | Llama 4 Maverick 17B 128E Instruct FP8 | Text | 430K | 43K | $0.27 | $0.90 |
46
+ | MiniMax M2.7 | Text | 262K | 7K | $0.42 | $1.61 |
45
47
  | MiniMax M3 | Text + Image | 512K | 512K | $0.33 | $1.31 |
46
48
  | Qwen3 Coder 480B A35B Instruct INT4 Mixed AR | Text | 106K | 11K | $0.45 | $2.15 |
47
49
  | Qwen3 Next 80B A3B Instruct | Text | 262K | 26K | $0.12 | $1.14 |
package/models.json CHANGED
@@ -140,10 +140,10 @@
140
140
  "text"
141
141
  ],
142
142
  "cost": {
143
- "input": 0.11,
144
- "output": 0.408,
143
+ "input": 0.12,
144
+ "output": 0.42,
145
145
  "cacheRead": 0,
146
- "cacheWrite": 0.055
146
+ "cacheWrite": 0.06
147
147
  },
148
148
  "contextWindow": 256000,
149
149
  "maxTokens": 25600,
@@ -154,6 +154,69 @@
154
154
  "maxTokensField": "max_tokens"
155
155
  }
156
156
  },
157
+ {
158
+ "id": "glm-5.3",
159
+ "name": "GLM 5.3",
160
+ "reasoning": true,
161
+ "thinkingLevelMap": {
162
+ "off": null,
163
+ "minimal": null,
164
+ "low": "low",
165
+ "medium": null,
166
+ "high": "high",
167
+ "xhigh": null,
168
+ "max": "max"
169
+ },
170
+ "input": [
171
+ "text"
172
+ ],
173
+ "cost": {
174
+ "input": 1.52432,
175
+ "output": 4.79072,
176
+ "cacheRead": 0.283088,
177
+ "cacheWrite": 0
178
+ },
179
+ "contextWindow": 1048576,
180
+ "maxTokens": 262144,
181
+ "compat": {
182
+ "supportsStore": false,
183
+ "supportsReasoningEffort": true,
184
+ "thinkingFormat": "deepseek",
185
+ "maxTokensField": "max_tokens"
186
+ }
187
+ },
188
+ {
189
+ "id": "glm-5.3-flash",
190
+ "name": "GLM 5.3 Flash",
191
+ "reasoning": true,
192
+ "thinkingLevelMap": {
193
+ "off": null,
194
+ "minimal": null,
195
+ "low": "low",
196
+ "medium": null,
197
+ "high": "high",
198
+ "xhigh": null,
199
+ "max": "max"
200
+ },
201
+ "input": [
202
+ "text",
203
+ "image"
204
+ ],
205
+ "cost": {
206
+ "input": 0.16332,
207
+ "output": 0.5444,
208
+ "cacheRead": 0.031575200000000005,
209
+ "cacheWrite": 0
210
+ },
211
+ "contextWindow": 1048576,
212
+ "maxTokens": 131072,
213
+ "compat": {
214
+ "supportsStore": false,
215
+ "supportsReasoningEffort": true,
216
+ "thinkingFormat": "deepseek",
217
+ "maxTokensField": "max_tokens"
218
+ }
219
+ },
157
220
  {
158
221
  "id": "glm-5",
159
222
  "name": "GLM-5",
@@ -171,10 +234,10 @@
171
234
  "text"
172
235
  ],
173
236
  "cost": {
174
- "input": 0.9,
175
- "output": 2.804,
237
+ "input": 0.91,
238
+ "output": 2.934,
176
239
  "cacheRead": 0,
177
- "cacheWrite": 0.45
240
+ "cacheWrite": 0.455
178
241
  },
179
242
  "contextWindow": 202752,
180
243
  "maxTokens": 20275,
@@ -202,10 +265,10 @@
202
265
  "text"
203
266
  ],
204
267
  "cost": {
205
- "input": 1.314,
206
- "output": 4.268,
268
+ "input": 1.332,
269
+ "output": 4.312,
207
270
  "cacheRead": 0,
208
- "cacheWrite": 0.657
271
+ "cacheWrite": 0.666
209
272
  },
210
273
  "contextWindow": 202750,
211
274
  "maxTokens": 3276,
@@ -264,10 +327,10 @@
264
327
  "text"
265
328
  ],
266
329
  "cost": {
267
- "input": 0.178,
268
- "output": 0.68,
330
+ "input": 0.188,
331
+ "output": 0.7,
269
332
  "cacheRead": 0,
270
- "cacheWrite": 0.089
333
+ "cacheWrite": 0.094
271
334
  },
272
335
  "contextWindow": 128072,
273
336
  "maxTokens": 13107,
@@ -453,10 +516,10 @@
453
516
  "text"
454
517
  ],
455
518
  "cost": {
456
- "input": 0.284,
457
- "output": 0.934,
519
+ "input": 0.274,
520
+ "output": 0.8992,
458
521
  "cacheRead": 0,
459
- "cacheWrite": 0.142
522
+ "cacheWrite": 0.137
460
523
  },
461
524
  "contextWindow": 430000,
462
525
  "maxTokens": 43000,
@@ -475,10 +538,10 @@
475
538
  "text"
476
539
  ],
477
540
  "cost": {
478
- "input": 0.404,
479
- "output": 1.496,
541
+ "input": 0.424,
542
+ "output": 1.612,
480
543
  "cacheRead": 0,
481
- "cacheWrite": 0.202
544
+ "cacheWrite": 0.212
482
545
  },
483
546
  "contextWindow": 262100,
484
547
  "maxTokens": 6553,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-hypercharm-provider",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "HyperCharm provider extension for pi - Access DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, and GPT-OSS models through the Charm Hyper API",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -1,15 +0,0 @@
1
- allowBuilds:
2
- '@google/genai': set this to true or false
3
- protobufjs: set this to true or false
4
- onlyBuiltDependencies:
5
- - '@google/genai'
6
- - protobufjs
7
-
8
- minimumReleaseAgeExclude:
9
- - '@earendil-works/pi-agent-core@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
10
- - '@earendil-works/pi-ai@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
11
- - '@earendil-works/pi-client@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
12
- - '@earendil-works/pi-coding-agent@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
13
- - '@earendil-works/pi-protocol@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
14
- - '@earendil-works/pi-telemetry@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'
15
- - '@earendil-works/pi-tui@0.84.0 || 0.84.1 || 0.84.2 || 0.84.3 || 0.84.4'