pi-hypercharm-provider 1.1.0 → 1.1.2
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 +7 -7
- package/index.ts +1 -1
- package/models.json +34 -34
- package/package.json +1 -1
- package/patch.json +2 -2
- package/scripts/update-models.js +1 -1
package/README.md
CHANGED
|
@@ -27,18 +27,18 @@ _Hyperoptimized coding models — DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, GPT
|
|
|
27
27
|
| Model | Type | Context | Max Tokens | Input Cost | Output Cost |
|
|
28
28
|
|-------|------|---------|------------|------------|-------------|
|
|
29
29
|
| DeepSeek V4 Flash | Text | 1.0M | 384K | $0.14 | $0.28 |
|
|
30
|
-
| DeepSeek V4 Pro | Text | 1.0M | 384K | $
|
|
31
|
-
| Gemma 4 26B A4B | Text + Image | 256K | 26K | $0.12 | $0.
|
|
32
|
-
| GLM 5.1 | Text + Image |
|
|
33
|
-
| GLM-5 | Text | 203K | 20K | $0.
|
|
30
|
+
| DeepSeek V4 Pro | Text | 1.0M | 384K | $1.74 | $3.48 |
|
|
31
|
+
| Gemma 4 26B A4B | Text + Image | 256K | 26K | $0.12 | $0.43 |
|
|
32
|
+
| GLM 5.1 | Text + Image | 203K | 131K | $1.40 | $4.40 |
|
|
33
|
+
| GLM-5 | Text | 203K | 20K | $0.77 | $2.39 |
|
|
34
34
|
| GLM-5.2 | Text | 1.0M | 131K | $1.40 | $4.40 |
|
|
35
|
-
| GPT-OSS 120B | Text | 131K | 13K | $0.18 | $0.
|
|
36
|
-
| Kimi K2.5 | Text + Image | 262K | 26K | $0.
|
|
35
|
+
| GPT-OSS 120B | Text | 131K | 13K | $0.18 | $0.61 |
|
|
36
|
+
| Kimi K2.5 | Text + Image | 262K | 26K | $0.48 | $2.54 |
|
|
37
37
|
| Kimi K2.6 | Text + Image | 262K | 262K | $0.95 | $4.00 |
|
|
38
38
|
| Kimi K2.7 Code | Text | 262K | 262K | $0.95 | $4.00 |
|
|
39
39
|
| Llama 3.3 70B Instruct | Text | 128K | 13K | $0.61 | $1.04 |
|
|
40
40
|
| Llama 4 Maverick 17B 128E FP8 | Text | 430K | 43K | $0.27 | $0.89 |
|
|
41
|
-
| MiniMax M2.7 | Text | 205K |
|
|
41
|
+
| MiniMax M2.7 | Text | 205K | 20K | $0.82 | $2.64 |
|
|
42
42
|
| Qwen3 Coder 480B A35B INT4 | Text | 106K | 11K | $0.60 | $2.08 |
|
|
43
43
|
| Qwen3 Next 80B A3B | Text | 262K | 26K | $0.12 | $1.14 |
|
|
44
44
|
| Qwen3.6-Flash | Text + Image | 1.0M | 64K | $1.00 | $4.00 |
|
package/index.ts
CHANGED
|
@@ -178,7 +178,7 @@ function buildModels(base: JsonModel[], custom: JsonModel[], patch: PatchData):
|
|
|
178
178
|
}
|
|
179
179
|
if (!model.thinkingLevelMap) {
|
|
180
180
|
model.thinkingLevelMap = {
|
|
181
|
-
minimal: null, low: null, medium: null, high: "high",
|
|
181
|
+
minimal: null, low: null, medium: null, high: "high", max: "max",
|
|
182
182
|
};
|
|
183
183
|
}
|
|
184
184
|
}
|
package/models.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"cost": {
|
|
10
10
|
"input": 0.14,
|
|
11
11
|
"output": 0.28,
|
|
12
|
-
"cacheRead": 0.
|
|
13
|
-
"cacheWrite": 0.
|
|
12
|
+
"cacheRead": 0.03,
|
|
13
|
+
"cacheWrite": 0.03
|
|
14
14
|
},
|
|
15
15
|
"contextWindow": 1000000,
|
|
16
16
|
"maxTokens": 384000,
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"low": null,
|
|
20
20
|
"medium": null,
|
|
21
21
|
"high": "high",
|
|
22
|
-
"
|
|
22
|
+
"max": "max"
|
|
23
23
|
},
|
|
24
24
|
"compat": {
|
|
25
25
|
"thinkingFormat": "deepseek",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"text"
|
|
39
39
|
],
|
|
40
40
|
"cost": {
|
|
41
|
-
"input":
|
|
42
|
-
"output":
|
|
43
|
-
"cacheRead": 0.
|
|
44
|
-
"cacheWrite": 0.
|
|
41
|
+
"input": 1.74,
|
|
42
|
+
"output": 3.48,
|
|
43
|
+
"cacheRead": 0.15,
|
|
44
|
+
"cacheWrite": 0.15
|
|
45
45
|
},
|
|
46
46
|
"contextWindow": 1000000,
|
|
47
47
|
"maxTokens": 384000,
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"low": null,
|
|
51
51
|
"medium": null,
|
|
52
52
|
"high": "high",
|
|
53
|
-
"
|
|
53
|
+
"max": "max"
|
|
54
54
|
},
|
|
55
55
|
"compat": {
|
|
56
56
|
"thinkingFormat": "deepseek",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"image"
|
|
71
71
|
],
|
|
72
72
|
"cost": {
|
|
73
|
-
"input": 0.
|
|
74
|
-
"output": 0.
|
|
75
|
-
"cacheRead": 0.
|
|
73
|
+
"input": 0.12,
|
|
74
|
+
"output": 0.426,
|
|
75
|
+
"cacheRead": 0.06,
|
|
76
76
|
"cacheWrite": 0
|
|
77
77
|
},
|
|
78
78
|
"contextWindow": 256000,
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
"image"
|
|
88
88
|
],
|
|
89
89
|
"cost": {
|
|
90
|
-
"input": 1.
|
|
91
|
-
"output": 4.
|
|
90
|
+
"input": 1.4,
|
|
91
|
+
"output": 4.4,
|
|
92
92
|
"cacheRead": 0.26,
|
|
93
93
|
"cacheWrite": 0.26
|
|
94
94
|
},
|
|
95
|
-
"contextWindow":
|
|
96
|
-
"maxTokens":
|
|
95
|
+
"contextWindow": 202800,
|
|
96
|
+
"maxTokens": 131072
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
"id": "glm-5",
|
|
@@ -103,9 +103,9 @@
|
|
|
103
103
|
"text"
|
|
104
104
|
],
|
|
105
105
|
"cost": {
|
|
106
|
-
"input": 0.
|
|
107
|
-
"output": 2.
|
|
108
|
-
"cacheRead": 0.
|
|
106
|
+
"input": 0.77,
|
|
107
|
+
"output": 2.388,
|
|
108
|
+
"cacheRead": 0.385,
|
|
109
109
|
"cacheWrite": 0
|
|
110
110
|
},
|
|
111
111
|
"contextWindow": 202752,
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"input": 1.4,
|
|
123
123
|
"output": 4.4,
|
|
124
124
|
"cacheRead": 0.26,
|
|
125
|
-
"cacheWrite": 0
|
|
125
|
+
"cacheWrite": 0.14
|
|
126
126
|
},
|
|
127
127
|
"contextWindow": 1048576,
|
|
128
128
|
"maxTokens": 131072
|
|
@@ -135,9 +135,9 @@
|
|
|
135
135
|
"text"
|
|
136
136
|
],
|
|
137
137
|
"cost": {
|
|
138
|
-
"input": 0.
|
|
139
|
-
"output": 0.
|
|
140
|
-
"cacheRead": 0.
|
|
138
|
+
"input": 0.18,
|
|
139
|
+
"output": 0.61,
|
|
140
|
+
"cacheRead": 0.09,
|
|
141
141
|
"cacheWrite": 0
|
|
142
142
|
},
|
|
143
143
|
"contextWindow": 131072,
|
|
@@ -152,9 +152,9 @@
|
|
|
152
152
|
"image"
|
|
153
153
|
],
|
|
154
154
|
"cost": {
|
|
155
|
-
"input": 0.
|
|
156
|
-
"output": 2.
|
|
157
|
-
"cacheRead": 0.
|
|
155
|
+
"input": 0.477,
|
|
156
|
+
"output": 2.535,
|
|
157
|
+
"cacheRead": 0.2385,
|
|
158
158
|
"cacheWrite": 0
|
|
159
159
|
},
|
|
160
160
|
"contextWindow": 262144,
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"maxTokens": 262000
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
|
-
"id": "kimi-k2.7",
|
|
181
|
+
"id": "kimi-k2.7-code",
|
|
182
182
|
"name": "Kimi K2.7 Code",
|
|
183
183
|
"reasoning": true,
|
|
184
184
|
"input": [
|
|
@@ -187,8 +187,8 @@
|
|
|
187
187
|
"cost": {
|
|
188
188
|
"input": 0.95,
|
|
189
189
|
"output": 4,
|
|
190
|
-
"cacheRead": 0.
|
|
191
|
-
"cacheWrite": 0
|
|
190
|
+
"cacheRead": 0.16,
|
|
191
|
+
"cacheWrite": 0.19
|
|
192
192
|
},
|
|
193
193
|
"contextWindow": 262000,
|
|
194
194
|
"maxTokens": 262000
|
|
@@ -233,13 +233,13 @@
|
|
|
233
233
|
"text"
|
|
234
234
|
],
|
|
235
235
|
"cost": {
|
|
236
|
-
"input": 0.
|
|
237
|
-
"output":
|
|
238
|
-
"cacheRead": 0.
|
|
236
|
+
"input": 0.82,
|
|
237
|
+
"output": 2.64,
|
|
238
|
+
"cacheRead": 0.41,
|
|
239
239
|
"cacheWrite": 0.06
|
|
240
240
|
},
|
|
241
241
|
"contextWindow": 204800,
|
|
242
|
-
"maxTokens":
|
|
242
|
+
"maxTokens": 20480
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
"id": "qwen3-coder-480b-a35b-instruct-int4-mixed-ar",
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"input": 2.5,
|
|
337
337
|
"output": 7.5,
|
|
338
338
|
"cacheRead": 3.125,
|
|
339
|
-
"cacheWrite": 0.
|
|
339
|
+
"cacheWrite": 0.5
|
|
340
340
|
},
|
|
341
341
|
"contextWindow": 1000000,
|
|
342
342
|
"maxTokens": 64000
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
"input": 1.2,
|
|
353
353
|
"output": 4.8,
|
|
354
354
|
"cacheRead": 1.5,
|
|
355
|
-
"cacheWrite": 0.
|
|
355
|
+
"cacheWrite": 0.24
|
|
356
356
|
},
|
|
357
357
|
"contextWindow": 1000000,
|
|
358
358
|
"maxTokens": 64000
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-hypercharm-provider",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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",
|
package/patch.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"low": null,
|
|
7
7
|
"medium": null,
|
|
8
8
|
"high": "high",
|
|
9
|
-
"
|
|
9
|
+
"max": "max"
|
|
10
10
|
},
|
|
11
11
|
"compat": {
|
|
12
12
|
"thinkingFormat": "deepseek",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"low": null,
|
|
25
25
|
"medium": null,
|
|
26
26
|
"high": "high",
|
|
27
|
-
"
|
|
27
|
+
"max": "max"
|
|
28
28
|
},
|
|
29
29
|
"compat": {
|
|
30
30
|
"thinkingFormat": "deepseek",
|
package/scripts/update-models.js
CHANGED
|
@@ -174,7 +174,7 @@ function transformModel(apiModel, existingModelsMap) {
|
|
|
174
174
|
if (isDeepSeek && isReasoning) {
|
|
175
175
|
model.maxTokens = 384000;
|
|
176
176
|
model.thinkingLevelMap = {
|
|
177
|
-
minimal: null, low: null, medium: null, high: 'high',
|
|
177
|
+
minimal: null, low: null, medium: null, high: 'high', max: 'max',
|
|
178
178
|
};
|
|
179
179
|
model.compat = {
|
|
180
180
|
thinkingFormat: 'deepseek',
|