pi-hypercharm-provider 1.1.2 → 1.1.3

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
@@ -26,19 +26,19 @@ _Hyperoptimized coding models — DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, GPT
26
26
 
27
27
  | Model | Type | Context | Max Tokens | Input Cost | Output Cost |
28
28
  |-------|------|---------|------------|------------|-------------|
29
- | DeepSeek V4 Flash | Text | 1.0M | 384K | $0.14 | $0.28 |
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 |
29
+ | DeepSeek V4 Flash | Text | 1.0M | 384K | $0.20 | $0.40 |
30
+ | DeepSeek V4 Pro | Text | 1.0M | 384K | $2.40 | $4.80 |
31
+ | Gemma 4 26B A4B | Text + Image | 256K | 26K | $0.12 | $0.41 |
32
32
  | GLM 5.1 | Text + Image | 203K | 131K | $1.40 | $4.40 |
33
- | GLM-5 | Text | 203K | 20K | $0.77 | $2.39 |
34
- | GLM-5.2 | Text | 1.0M | 131K | $1.40 | $4.40 |
35
- | GPT-OSS 120B | Text | 131K | 13K | $0.18 | $0.61 |
36
- | Kimi K2.5 | Text + Image | 262K | 26K | $0.48 | $2.54 |
33
+ | GLM-5 | Text | 203K | 20K | $0.81 | $2.59 |
34
+ | GLM-5.2 | Text | 1.0M | 128K | $1.40 | $4.40 |
35
+ | GPT-OSS 120B | Text | 131K | 13K | $0.17 | $0.56 |
36
+ | Kimi K2.5 | Text + Image | 262K | 26K | $0.52 | $2.72 |
37
37
  | Kimi K2.6 | Text + Image | 262K | 262K | $0.95 | $4.00 |
38
- | Kimi K2.7 Code | Text | 262K | 262K | $0.95 | $4.00 |
38
+ | Kimi K2.7 Code | Text | 256K | 16K | $0.95 | $4.00 |
39
39
  | Llama 3.3 70B Instruct | Text | 128K | 13K | $0.61 | $1.04 |
40
- | Llama 4 Maverick 17B 128E FP8 | Text | 430K | 43K | $0.27 | $0.89 |
41
- | MiniMax M2.7 | Text | 205K | 20K | $0.82 | $2.64 |
40
+ | Llama 4 Maverick 17B 128E FP8 | Text | 430K | 43K | $0.28 | $0.93 |
41
+ | MiniMax M2.7 | Text | 205K | 20K | $0.42 | $1.56 |
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
@@ -48,7 +48,7 @@ interface JsonModel {
48
48
  id: string;
49
49
  name: string;
50
50
  reasoning: boolean;
51
- input: string[];
51
+ input: ("text" | "image")[];
52
52
  cost: {
53
53
  input: number;
54
54
  output: number;
@@ -71,7 +71,7 @@ interface JsonModel {
71
71
  interface PatchEntry {
72
72
  name?: string;
73
73
  reasoning?: boolean;
74
- input?: string[];
74
+ input?: ("text" | "image")[];
75
75
  cost?: {
76
76
  input?: number;
77
77
  output?: number;
package/models.json CHANGED
@@ -7,10 +7,10 @@
7
7
  "text"
8
8
  ],
9
9
  "cost": {
10
- "input": 0.14,
11
- "output": 0.28,
10
+ "input": 0.2,
11
+ "output": 0.4,
12
12
  "cacheRead": 0.03,
13
- "cacheWrite": 0.03
13
+ "cacheWrite": 0.04
14
14
  },
15
15
  "contextWindow": 1000000,
16
16
  "maxTokens": 384000,
@@ -38,10 +38,10 @@
38
38
  "text"
39
39
  ],
40
40
  "cost": {
41
- "input": 1.74,
42
- "output": 3.48,
41
+ "input": 2.4,
42
+ "output": 4.8,
43
43
  "cacheRead": 0.15,
44
- "cacheWrite": 0.15
44
+ "cacheWrite": 0.2
45
45
  },
46
46
  "contextWindow": 1000000,
47
47
  "maxTokens": 384000,
@@ -70,9 +70,9 @@
70
70
  "image"
71
71
  ],
72
72
  "cost": {
73
- "input": 0.12,
74
- "output": 0.426,
75
- "cacheRead": 0.06,
73
+ "input": 0.116,
74
+ "output": 0.408,
75
+ "cacheRead": 0.058,
76
76
  "cacheWrite": 0
77
77
  },
78
78
  "contextWindow": 256000,
@@ -103,9 +103,9 @@
103
103
  "text"
104
104
  ],
105
105
  "cost": {
106
- "input": 0.77,
107
- "output": 2.388,
108
- "cacheRead": 0.385,
106
+ "input": 0.81,
107
+ "output": 2.592,
108
+ "cacheRead": 0.405,
109
109
  "cacheWrite": 0
110
110
  },
111
111
  "contextWindow": 202752,
@@ -122,10 +122,10 @@
122
122
  "input": 1.4,
123
123
  "output": 4.4,
124
124
  "cacheRead": 0.26,
125
- "cacheWrite": 0.14
125
+ "cacheWrite": 0.28
126
126
  },
127
- "contextWindow": 1048576,
128
- "maxTokens": 131072
127
+ "contextWindow": 1000000,
128
+ "maxTokens": 128000
129
129
  },
130
130
  {
131
131
  "id": "gpt-oss-120b",
@@ -135,9 +135,9 @@
135
135
  "text"
136
136
  ],
137
137
  "cost": {
138
- "input": 0.18,
139
- "output": 0.61,
140
- "cacheRead": 0.09,
138
+ "input": 0.168,
139
+ "output": 0.562,
140
+ "cacheRead": 0.084,
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.477,
156
- "output": 2.535,
157
- "cacheRead": 0.2385,
155
+ "input": 0.518,
156
+ "output": 2.72,
157
+ "cacheRead": 0.259,
158
158
  "cacheWrite": 0
159
159
  },
160
160
  "contextWindow": 262144,
@@ -190,8 +190,8 @@
190
190
  "cacheRead": 0.16,
191
191
  "cacheWrite": 0.19
192
192
  },
193
- "contextWindow": 262000,
194
- "maxTokens": 262000
193
+ "contextWindow": 256000,
194
+ "maxTokens": 16000
195
195
  },
196
196
  {
197
197
  "id": "llama-3.3-70b-instruct",
@@ -217,9 +217,9 @@
217
217
  "text"
218
218
  ],
219
219
  "cost": {
220
- "input": 0.274,
221
- "output": 0.894,
222
- "cacheRead": 0.137,
220
+ "input": 0.284,
221
+ "output": 0.934,
222
+ "cacheRead": 0.142,
223
223
  "cacheWrite": 0
224
224
  },
225
225
  "contextWindow": 430000,
@@ -233,9 +233,9 @@
233
233
  "text"
234
234
  ],
235
235
  "cost": {
236
- "input": 0.82,
237
- "output": 2.64,
238
- "cacheRead": 0.41,
236
+ "input": 0.42,
237
+ "output": 1.56,
238
+ "cacheRead": 0.21,
239
239
  "cacheWrite": 0.06
240
240
  },
241
241
  "contextWindow": 204800,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-hypercharm-provider",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
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",