@monotykamary/pi-opencode-provider 1.0.5 → 1.0.6
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/AGENTS.md +1 -0
- package/README.md +11 -3
- package/deprecated-models.json +1 -0
- package/index.ts +34 -1
- package/models.json +540 -389
- package/package.json +1 -1
- package/scripts/update-models.js +63 -0
package/models.json
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"id": "
|
|
4
|
-
"name": "
|
|
5
|
-
"api": "openai-
|
|
3
|
+
"id": "gpt-5.1-codex-mini",
|
|
4
|
+
"name": "GPT-5.1 Codex Mini",
|
|
5
|
+
"api": "openai-responses",
|
|
6
6
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
7
7
|
"reasoning": true,
|
|
8
8
|
"input": [
|
|
9
|
-
"text"
|
|
9
|
+
"text",
|
|
10
|
+
"image"
|
|
10
11
|
],
|
|
11
12
|
"cost": {
|
|
12
|
-
"input": 0.
|
|
13
|
-
"output":
|
|
14
|
-
"cacheRead": 0.
|
|
13
|
+
"input": 0.25,
|
|
14
|
+
"output": 2,
|
|
15
|
+
"cacheRead": 0.025,
|
|
15
16
|
"cacheWrite": 0
|
|
16
17
|
},
|
|
17
|
-
"contextWindow":
|
|
18
|
-
"maxTokens":
|
|
18
|
+
"contextWindow": 400000,
|
|
19
|
+
"maxTokens": 128000
|
|
19
20
|
},
|
|
20
21
|
{
|
|
21
|
-
"id": "
|
|
22
|
-
"name": "
|
|
23
|
-
"api": "
|
|
24
|
-
"baseUrl": "https://opencode.ai/zen
|
|
22
|
+
"id": "claude-sonnet-4-6",
|
|
23
|
+
"name": "Claude Sonnet 4.6",
|
|
24
|
+
"api": "anthropic-messages",
|
|
25
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
25
26
|
"reasoning": true,
|
|
26
27
|
"input": [
|
|
27
|
-
"text"
|
|
28
|
+
"text",
|
|
29
|
+
"image"
|
|
28
30
|
],
|
|
29
31
|
"cost": {
|
|
30
|
-
"input":
|
|
31
|
-
"output":
|
|
32
|
-
"cacheRead": 0.
|
|
33
|
-
"cacheWrite":
|
|
32
|
+
"input": 3,
|
|
33
|
+
"output": 15,
|
|
34
|
+
"cacheRead": 0.3,
|
|
35
|
+
"cacheWrite": 3.75
|
|
34
36
|
},
|
|
35
|
-
"contextWindow":
|
|
36
|
-
"maxTokens":
|
|
37
|
+
"contextWindow": 1000000,
|
|
38
|
+
"maxTokens": 64000
|
|
37
39
|
},
|
|
38
40
|
{
|
|
39
|
-
"id": "
|
|
40
|
-
"name": "
|
|
41
|
-
"api": "openai-
|
|
41
|
+
"id": "gpt-5.5-pro",
|
|
42
|
+
"name": "GPT-5.5 Pro",
|
|
43
|
+
"api": "openai-responses",
|
|
42
44
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
43
45
|
"reasoning": true,
|
|
44
46
|
"input": [
|
|
@@ -46,17 +48,17 @@
|
|
|
46
48
|
"image"
|
|
47
49
|
],
|
|
48
50
|
"cost": {
|
|
49
|
-
"input":
|
|
50
|
-
"output":
|
|
51
|
-
"cacheRead":
|
|
51
|
+
"input": 30,
|
|
52
|
+
"output": 180,
|
|
53
|
+
"cacheRead": 30,
|
|
52
54
|
"cacheWrite": 0
|
|
53
55
|
},
|
|
54
|
-
"contextWindow":
|
|
55
|
-
"maxTokens":
|
|
56
|
+
"contextWindow": 1050000,
|
|
57
|
+
"maxTokens": 128000
|
|
56
58
|
},
|
|
57
59
|
{
|
|
58
|
-
"id": "
|
|
59
|
-
"name": "
|
|
60
|
+
"id": "glm-5",
|
|
61
|
+
"name": "GLM-5",
|
|
60
62
|
"api": "openai-completions",
|
|
61
63
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
62
64
|
"reasoning": true,
|
|
@@ -64,17 +66,17 @@
|
|
|
64
66
|
"text"
|
|
65
67
|
],
|
|
66
68
|
"cost": {
|
|
67
|
-
"input":
|
|
68
|
-
"output":
|
|
69
|
-
"cacheRead": 0,
|
|
69
|
+
"input": 1,
|
|
70
|
+
"output": 3.2,
|
|
71
|
+
"cacheRead": 0.2,
|
|
70
72
|
"cacheWrite": 0
|
|
71
73
|
},
|
|
72
|
-
"contextWindow":
|
|
73
|
-
"maxTokens":
|
|
74
|
+
"contextWindow": 204800,
|
|
75
|
+
"maxTokens": 131072
|
|
74
76
|
},
|
|
75
77
|
{
|
|
76
|
-
"id": "gemini-3-flash",
|
|
77
|
-
"name": "Gemini 3 Flash",
|
|
78
|
+
"id": "gemini-3.5-flash",
|
|
79
|
+
"name": "Gemini 3.5 Flash",
|
|
78
80
|
"api": "google-generative-ai",
|
|
79
81
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
80
82
|
"reasoning": true,
|
|
@@ -83,54 +85,35 @@
|
|
|
83
85
|
"image"
|
|
84
86
|
],
|
|
85
87
|
"cost": {
|
|
86
|
-
"input":
|
|
87
|
-
"output":
|
|
88
|
-
"cacheRead": 0.
|
|
88
|
+
"input": 1.5,
|
|
89
|
+
"output": 9,
|
|
90
|
+
"cacheRead": 0.15,
|
|
89
91
|
"cacheWrite": 0
|
|
90
92
|
},
|
|
91
93
|
"contextWindow": 1048576,
|
|
92
94
|
"maxTokens": 65536
|
|
93
95
|
},
|
|
94
96
|
{
|
|
95
|
-
"id": "
|
|
96
|
-
"name": "
|
|
97
|
-
"api": "openai-
|
|
97
|
+
"id": "gpt-5.3-codex-spark",
|
|
98
|
+
"name": "GPT-5.3 Codex Spark",
|
|
99
|
+
"api": "openai-responses",
|
|
98
100
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
99
101
|
"reasoning": true,
|
|
100
102
|
"input": [
|
|
101
103
|
"text"
|
|
102
104
|
],
|
|
103
105
|
"cost": {
|
|
104
|
-
"input":
|
|
105
|
-
"output":
|
|
106
|
-
"cacheRead": 0,
|
|
106
|
+
"input": 1.75,
|
|
107
|
+
"output": 14,
|
|
108
|
+
"cacheRead": 0.175,
|
|
107
109
|
"cacheWrite": 0
|
|
108
110
|
},
|
|
109
|
-
"contextWindow":
|
|
111
|
+
"contextWindow": 128000,
|
|
110
112
|
"maxTokens": 128000
|
|
111
113
|
},
|
|
112
114
|
{
|
|
113
|
-
"id": "claude-
|
|
114
|
-
"name": "Claude
|
|
115
|
-
"api": "anthropic-messages",
|
|
116
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
117
|
-
"reasoning": true,
|
|
118
|
-
"input": [
|
|
119
|
-
"text",
|
|
120
|
-
"image"
|
|
121
|
-
],
|
|
122
|
-
"cost": {
|
|
123
|
-
"input": 3,
|
|
124
|
-
"output": 15,
|
|
125
|
-
"cacheRead": 0.3,
|
|
126
|
-
"cacheWrite": 3.75
|
|
127
|
-
},
|
|
128
|
-
"contextWindow": 1000000,
|
|
129
|
-
"maxTokens": 64000
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"id": "claude-opus-4-5",
|
|
133
|
-
"name": "Claude Opus 4.5",
|
|
115
|
+
"id": "claude-haiku-4-5",
|
|
116
|
+
"name": "Claude Haiku 4.5",
|
|
134
117
|
"api": "anthropic-messages",
|
|
135
118
|
"baseUrl": "https://opencode.ai/zen",
|
|
136
119
|
"reasoning": true,
|
|
@@ -139,17 +122,17 @@
|
|
|
139
122
|
"image"
|
|
140
123
|
],
|
|
141
124
|
"cost": {
|
|
142
|
-
"input":
|
|
143
|
-
"output":
|
|
144
|
-
"cacheRead": 0.
|
|
145
|
-
"cacheWrite":
|
|
125
|
+
"input": 1,
|
|
126
|
+
"output": 5,
|
|
127
|
+
"cacheRead": 0.1,
|
|
128
|
+
"cacheWrite": 1.25
|
|
146
129
|
},
|
|
147
130
|
"contextWindow": 200000,
|
|
148
131
|
"maxTokens": 64000
|
|
149
132
|
},
|
|
150
133
|
{
|
|
151
|
-
"id": "gpt-5",
|
|
152
|
-
"name": "GPT-5",
|
|
134
|
+
"id": "gpt-5.4-pro",
|
|
135
|
+
"name": "GPT-5.4 Pro",
|
|
153
136
|
"api": "openai-responses",
|
|
154
137
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
155
138
|
"reasoning": true,
|
|
@@ -158,37 +141,37 @@
|
|
|
158
141
|
"image"
|
|
159
142
|
],
|
|
160
143
|
"cost": {
|
|
161
|
-
"input":
|
|
162
|
-
"output":
|
|
163
|
-
"cacheRead":
|
|
144
|
+
"input": 30,
|
|
145
|
+
"output": 180,
|
|
146
|
+
"cacheRead": 30,
|
|
164
147
|
"cacheWrite": 0
|
|
165
148
|
},
|
|
166
|
-
"contextWindow":
|
|
149
|
+
"contextWindow": 1050000,
|
|
167
150
|
"maxTokens": 128000
|
|
168
151
|
},
|
|
169
152
|
{
|
|
170
|
-
"id": "
|
|
171
|
-
"name": "
|
|
172
|
-
"api": "
|
|
173
|
-
"baseUrl": "https://opencode.ai/zen
|
|
153
|
+
"id": "qwen3.5-plus",
|
|
154
|
+
"name": "Qwen3.5 Plus",
|
|
155
|
+
"api": "anthropic-messages",
|
|
156
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
174
157
|
"reasoning": true,
|
|
175
158
|
"input": [
|
|
176
159
|
"text",
|
|
177
160
|
"image"
|
|
178
161
|
],
|
|
179
162
|
"cost": {
|
|
180
|
-
"input":
|
|
181
|
-
"output":
|
|
182
|
-
"cacheRead": 0.
|
|
183
|
-
"cacheWrite": 0
|
|
163
|
+
"input": 0.2,
|
|
164
|
+
"output": 1.2,
|
|
165
|
+
"cacheRead": 0.02,
|
|
166
|
+
"cacheWrite": 0.25
|
|
184
167
|
},
|
|
185
|
-
"contextWindow":
|
|
168
|
+
"contextWindow": 262144,
|
|
186
169
|
"maxTokens": 65536
|
|
187
170
|
},
|
|
188
171
|
{
|
|
189
|
-
"id": "
|
|
190
|
-
"name": "
|
|
191
|
-
"api": "openai-
|
|
172
|
+
"id": "gpt-5.6-sol",
|
|
173
|
+
"name": "GPT-5.6 Sol",
|
|
174
|
+
"api": "openai-responses",
|
|
192
175
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
193
176
|
"reasoning": true,
|
|
194
177
|
"input": [
|
|
@@ -196,13 +179,13 @@
|
|
|
196
179
|
"image"
|
|
197
180
|
],
|
|
198
181
|
"cost": {
|
|
199
|
-
"input":
|
|
200
|
-
"output":
|
|
201
|
-
"cacheRead": 0.
|
|
202
|
-
"cacheWrite":
|
|
182
|
+
"input": 5,
|
|
183
|
+
"output": 30,
|
|
184
|
+
"cacheRead": 0.5,
|
|
185
|
+
"cacheWrite": 6.25
|
|
203
186
|
},
|
|
204
|
-
"contextWindow":
|
|
205
|
-
"maxTokens":
|
|
187
|
+
"contextWindow": 1050000,
|
|
188
|
+
"maxTokens": 128000
|
|
206
189
|
},
|
|
207
190
|
{
|
|
208
191
|
"id": "glm-5.1",
|
|
@@ -223,45 +206,27 @@
|
|
|
223
206
|
"maxTokens": 131072
|
|
224
207
|
},
|
|
225
208
|
{
|
|
226
|
-
"id": "
|
|
227
|
-
"name": "
|
|
228
|
-
"api": "
|
|
209
|
+
"id": "gemini-3.5-flash-lite",
|
|
210
|
+
"name": "Gemini 3.5 Flash Lite",
|
|
211
|
+
"api": "google-generative-ai",
|
|
229
212
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
230
213
|
"reasoning": true,
|
|
231
|
-
"input": [
|
|
232
|
-
"text"
|
|
233
|
-
],
|
|
234
|
-
"cost": {
|
|
235
|
-
"input": 1.74,
|
|
236
|
-
"output": 3.84,
|
|
237
|
-
"cacheRead": 0.145,
|
|
238
|
-
"cacheWrite": 0
|
|
239
|
-
},
|
|
240
|
-
"contextWindow": 1000000,
|
|
241
|
-
"maxTokens": 384000
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"id": "claude-sonnet-4-5",
|
|
245
|
-
"name": "Claude Sonnet 4.5",
|
|
246
|
-
"api": "anthropic-messages",
|
|
247
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
248
|
-
"reasoning": true,
|
|
249
214
|
"input": [
|
|
250
215
|
"text",
|
|
251
216
|
"image"
|
|
252
217
|
],
|
|
253
218
|
"cost": {
|
|
254
|
-
"input": 3,
|
|
255
|
-
"output":
|
|
256
|
-
"cacheRead": 0.
|
|
257
|
-
"cacheWrite":
|
|
219
|
+
"input": 0.3,
|
|
220
|
+
"output": 2.5,
|
|
221
|
+
"cacheRead": 0.03,
|
|
222
|
+
"cacheWrite": 0
|
|
258
223
|
},
|
|
259
|
-
"contextWindow":
|
|
260
|
-
"maxTokens":
|
|
224
|
+
"contextWindow": 1048576,
|
|
225
|
+
"maxTokens": 65536
|
|
261
226
|
},
|
|
262
227
|
{
|
|
263
|
-
"id": "claude-opus-4-
|
|
264
|
-
"name": "Claude Opus 4.
|
|
228
|
+
"id": "claude-opus-4-6",
|
|
229
|
+
"name": "Claude Opus 4.6",
|
|
265
230
|
"api": "anthropic-messages",
|
|
266
231
|
"baseUrl": "https://opencode.ai/zen",
|
|
267
232
|
"reasoning": true,
|
|
@@ -279,8 +244,8 @@
|
|
|
279
244
|
"maxTokens": 128000
|
|
280
245
|
},
|
|
281
246
|
{
|
|
282
|
-
"id": "claude-
|
|
283
|
-
"name": "Claude
|
|
247
|
+
"id": "claude-fable-5",
|
|
248
|
+
"name": "Claude Fable 5",
|
|
284
249
|
"api": "anthropic-messages",
|
|
285
250
|
"baseUrl": "https://opencode.ai/zen",
|
|
286
251
|
"reasoning": true,
|
|
@@ -289,18 +254,18 @@
|
|
|
289
254
|
"image"
|
|
290
255
|
],
|
|
291
256
|
"cost": {
|
|
292
|
-
"input":
|
|
293
|
-
"output":
|
|
294
|
-
"cacheRead":
|
|
295
|
-
"cacheWrite":
|
|
257
|
+
"input": 10,
|
|
258
|
+
"output": 50,
|
|
259
|
+
"cacheRead": 1,
|
|
260
|
+
"cacheWrite": 12.5
|
|
296
261
|
},
|
|
297
262
|
"contextWindow": 1000000,
|
|
298
263
|
"maxTokens": 128000
|
|
299
264
|
},
|
|
300
265
|
{
|
|
301
|
-
"id": "
|
|
302
|
-
"name": "
|
|
303
|
-
"api": "
|
|
266
|
+
"id": "gemini-3.1-pro",
|
|
267
|
+
"name": "Gemini 3.1 Pro Preview",
|
|
268
|
+
"api": "google-generative-ai",
|
|
304
269
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
305
270
|
"reasoning": true,
|
|
306
271
|
"input": [
|
|
@@ -308,17 +273,17 @@
|
|
|
308
273
|
"image"
|
|
309
274
|
],
|
|
310
275
|
"cost": {
|
|
311
|
-
"input":
|
|
312
|
-
"output":
|
|
313
|
-
"cacheRead": 0.
|
|
276
|
+
"input": 2,
|
|
277
|
+
"output": 12,
|
|
278
|
+
"cacheRead": 0.2,
|
|
314
279
|
"cacheWrite": 0
|
|
315
280
|
},
|
|
316
|
-
"contextWindow":
|
|
317
|
-
"maxTokens":
|
|
281
|
+
"contextWindow": 1048576,
|
|
282
|
+
"maxTokens": 65536
|
|
318
283
|
},
|
|
319
284
|
{
|
|
320
|
-
"id": "
|
|
321
|
-
"name": "
|
|
285
|
+
"id": "deepseek-v4-flash",
|
|
286
|
+
"name": "DeepSeek V4 Flash",
|
|
322
287
|
"api": "openai-completions",
|
|
323
288
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
324
289
|
"reasoning": true,
|
|
@@ -326,17 +291,17 @@
|
|
|
326
291
|
"text"
|
|
327
292
|
],
|
|
328
293
|
"cost": {
|
|
329
|
-
"input":
|
|
330
|
-
"output":
|
|
331
|
-
"cacheRead": 0.
|
|
294
|
+
"input": 0.14,
|
|
295
|
+
"output": 0.28,
|
|
296
|
+
"cacheRead": 0.028,
|
|
332
297
|
"cacheWrite": 0
|
|
333
298
|
},
|
|
334
299
|
"contextWindow": 1000000,
|
|
335
|
-
"maxTokens":
|
|
300
|
+
"maxTokens": 384000
|
|
336
301
|
},
|
|
337
302
|
{
|
|
338
|
-
"id": "
|
|
339
|
-
"name": "
|
|
303
|
+
"id": "kimi-k2.5",
|
|
304
|
+
"name": "Kimi K2.5",
|
|
340
305
|
"api": "openai-completions",
|
|
341
306
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
342
307
|
"reasoning": true,
|
|
@@ -345,167 +310,163 @@
|
|
|
345
310
|
"image"
|
|
346
311
|
],
|
|
347
312
|
"cost": {
|
|
348
|
-
"input": 0.
|
|
349
|
-
"output":
|
|
350
|
-
"cacheRead": 0.
|
|
313
|
+
"input": 0.6,
|
|
314
|
+
"output": 3,
|
|
315
|
+
"cacheRead": 0.08,
|
|
351
316
|
"cacheWrite": 0
|
|
352
317
|
},
|
|
353
|
-
"contextWindow":
|
|
354
|
-
"maxTokens":
|
|
318
|
+
"contextWindow": 262144,
|
|
319
|
+
"maxTokens": 65536
|
|
355
320
|
},
|
|
356
321
|
{
|
|
357
|
-
"id": "
|
|
358
|
-
"name": "
|
|
359
|
-
"api": "openai-
|
|
322
|
+
"id": "minimax-m2.7",
|
|
323
|
+
"name": "MiniMax-M2.7",
|
|
324
|
+
"api": "openai-completions",
|
|
360
325
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
361
326
|
"reasoning": true,
|
|
362
327
|
"input": [
|
|
363
|
-
"text"
|
|
364
|
-
"image"
|
|
328
|
+
"text"
|
|
365
329
|
],
|
|
366
330
|
"cost": {
|
|
367
|
-
"input":
|
|
368
|
-
"output":
|
|
369
|
-
"cacheRead": 0.
|
|
331
|
+
"input": 0.3,
|
|
332
|
+
"output": 1.2,
|
|
333
|
+
"cacheRead": 0.06,
|
|
370
334
|
"cacheWrite": 0
|
|
371
335
|
},
|
|
372
|
-
"contextWindow":
|
|
373
|
-
"maxTokens":
|
|
336
|
+
"contextWindow": 204800,
|
|
337
|
+
"maxTokens": 131072
|
|
374
338
|
},
|
|
375
339
|
{
|
|
376
|
-
"id": "
|
|
377
|
-
"name": "
|
|
378
|
-
"api": "
|
|
379
|
-
"baseUrl": "https://opencode.ai/zen
|
|
340
|
+
"id": "claude-opus-4-8",
|
|
341
|
+
"name": "Claude Opus 4.8",
|
|
342
|
+
"api": "anthropic-messages",
|
|
343
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
380
344
|
"reasoning": true,
|
|
381
345
|
"input": [
|
|
382
|
-
"text"
|
|
346
|
+
"text",
|
|
347
|
+
"image"
|
|
383
348
|
],
|
|
384
349
|
"cost": {
|
|
385
|
-
"input":
|
|
386
|
-
"output":
|
|
387
|
-
"cacheRead": 0.
|
|
388
|
-
"cacheWrite":
|
|
350
|
+
"input": 5,
|
|
351
|
+
"output": 25,
|
|
352
|
+
"cacheRead": 0.5,
|
|
353
|
+
"cacheWrite": 6.25
|
|
389
354
|
},
|
|
390
|
-
"contextWindow":
|
|
355
|
+
"contextWindow": 1000000,
|
|
391
356
|
"maxTokens": 128000
|
|
392
357
|
},
|
|
393
358
|
{
|
|
394
|
-
"id": "
|
|
395
|
-
"name": "
|
|
396
|
-
"api": "openai-
|
|
359
|
+
"id": "north-mini-code-free",
|
|
360
|
+
"name": "North Mini Code Free",
|
|
361
|
+
"api": "openai-completions",
|
|
397
362
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
398
363
|
"reasoning": true,
|
|
399
364
|
"input": [
|
|
400
|
-
"text"
|
|
401
|
-
"image"
|
|
365
|
+
"text"
|
|
402
366
|
],
|
|
403
367
|
"cost": {
|
|
404
|
-
"input":
|
|
405
|
-
"output":
|
|
406
|
-
"cacheRead": 0
|
|
368
|
+
"input": 0,
|
|
369
|
+
"output": 0,
|
|
370
|
+
"cacheRead": 0,
|
|
407
371
|
"cacheWrite": 0
|
|
408
372
|
},
|
|
409
|
-
"contextWindow":
|
|
410
|
-
"maxTokens":
|
|
373
|
+
"contextWindow": 256000,
|
|
374
|
+
"maxTokens": 64000
|
|
411
375
|
},
|
|
412
376
|
{
|
|
413
|
-
"id": "
|
|
414
|
-
"name": "
|
|
415
|
-
"api": "
|
|
416
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
377
|
+
"id": "glm-5.2",
|
|
378
|
+
"name": "GLM-5.2",
|
|
379
|
+
"api": "openai-completions",
|
|
380
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
417
381
|
"reasoning": true,
|
|
418
382
|
"input": [
|
|
419
|
-
"text"
|
|
420
|
-
"image"
|
|
383
|
+
"text"
|
|
421
384
|
],
|
|
422
385
|
"cost": {
|
|
423
|
-
"input":
|
|
424
|
-
"output":
|
|
425
|
-
"cacheRead": 0.
|
|
426
|
-
"cacheWrite":
|
|
386
|
+
"input": 1.4,
|
|
387
|
+
"output": 4.4,
|
|
388
|
+
"cacheRead": 0.26,
|
|
389
|
+
"cacheWrite": 0
|
|
427
390
|
},
|
|
428
391
|
"contextWindow": 1000000,
|
|
429
|
-
"maxTokens":
|
|
392
|
+
"maxTokens": 131072
|
|
430
393
|
},
|
|
431
394
|
{
|
|
432
|
-
"id": "
|
|
433
|
-
"name": "
|
|
434
|
-
"api": "
|
|
435
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
395
|
+
"id": "ling-3.0-flash-free",
|
|
396
|
+
"name": "Ling-3.0-flash Free",
|
|
397
|
+
"api": "openai-completions",
|
|
398
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
436
399
|
"reasoning": true,
|
|
437
400
|
"input": [
|
|
438
|
-
"text"
|
|
439
|
-
"image"
|
|
401
|
+
"text"
|
|
440
402
|
],
|
|
441
403
|
"cost": {
|
|
442
|
-
"input": 0
|
|
443
|
-
"output":
|
|
444
|
-
"cacheRead": 0
|
|
445
|
-
"cacheWrite": 0
|
|
404
|
+
"input": 0,
|
|
405
|
+
"output": 0,
|
|
406
|
+
"cacheRead": 0,
|
|
407
|
+
"cacheWrite": 0
|
|
446
408
|
},
|
|
447
409
|
"contextWindow": 262144,
|
|
448
|
-
"maxTokens":
|
|
410
|
+
"maxTokens": 32768
|
|
449
411
|
},
|
|
450
412
|
{
|
|
451
|
-
"id": "
|
|
452
|
-
"name": "
|
|
453
|
-
"api": "openai-
|
|
413
|
+
"id": "laguna-s-2.1-free",
|
|
414
|
+
"name": "Laguna S 2.1 Free",
|
|
415
|
+
"api": "openai-completions",
|
|
454
416
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
455
417
|
"reasoning": true,
|
|
456
418
|
"input": [
|
|
457
|
-
"text"
|
|
458
|
-
"image"
|
|
419
|
+
"text"
|
|
459
420
|
],
|
|
460
421
|
"cost": {
|
|
461
|
-
"input":
|
|
462
|
-
"output":
|
|
463
|
-
"cacheRead": 0
|
|
422
|
+
"input": 0,
|
|
423
|
+
"output": 0,
|
|
424
|
+
"cacheRead": 0,
|
|
464
425
|
"cacheWrite": 0
|
|
465
426
|
},
|
|
466
|
-
"contextWindow":
|
|
467
|
-
"maxTokens":
|
|
427
|
+
"contextWindow": 256000,
|
|
428
|
+
"maxTokens": 32000
|
|
468
429
|
},
|
|
469
430
|
{
|
|
470
|
-
"id": "
|
|
471
|
-
"name": "
|
|
472
|
-
"api": "openai-
|
|
431
|
+
"id": "deepseek-v4-flash-free",
|
|
432
|
+
"name": "DeepSeek V4 Flash Free",
|
|
433
|
+
"api": "openai-completions",
|
|
473
434
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
474
435
|
"reasoning": true,
|
|
475
436
|
"input": [
|
|
476
|
-
"text"
|
|
477
|
-
"image"
|
|
437
|
+
"text"
|
|
478
438
|
],
|
|
479
439
|
"cost": {
|
|
480
|
-
"input":
|
|
481
|
-
"output":
|
|
482
|
-
"cacheRead": 0
|
|
440
|
+
"input": 0,
|
|
441
|
+
"output": 0,
|
|
442
|
+
"cacheRead": 0,
|
|
483
443
|
"cacheWrite": 0
|
|
484
444
|
},
|
|
485
|
-
"contextWindow":
|
|
445
|
+
"contextWindow": 200000,
|
|
486
446
|
"maxTokens": 128000
|
|
487
447
|
},
|
|
488
448
|
{
|
|
489
|
-
"id": "
|
|
490
|
-
"name": "
|
|
491
|
-
"api": "
|
|
449
|
+
"id": "gemini-3-flash",
|
|
450
|
+
"name": "Gemini 3 Flash",
|
|
451
|
+
"api": "google-generative-ai",
|
|
492
452
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
493
453
|
"reasoning": true,
|
|
494
454
|
"input": [
|
|
495
|
-
"text"
|
|
455
|
+
"text",
|
|
456
|
+
"image"
|
|
496
457
|
],
|
|
497
458
|
"cost": {
|
|
498
|
-
"input": 0.
|
|
499
|
-
"output":
|
|
500
|
-
"cacheRead": 0.
|
|
459
|
+
"input": 0.5,
|
|
460
|
+
"output": 3,
|
|
461
|
+
"cacheRead": 0.05,
|
|
501
462
|
"cacheWrite": 0
|
|
502
463
|
},
|
|
503
|
-
"contextWindow":
|
|
504
|
-
"maxTokens":
|
|
464
|
+
"contextWindow": 1048576,
|
|
465
|
+
"maxTokens": 65536
|
|
505
466
|
},
|
|
506
467
|
{
|
|
507
|
-
"id": "
|
|
508
|
-
"name": "
|
|
468
|
+
"id": "kimi-k2.6",
|
|
469
|
+
"name": "Kimi K2.6",
|
|
509
470
|
"api": "openai-completions",
|
|
510
471
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
511
472
|
"reasoning": true,
|
|
@@ -514,31 +475,32 @@
|
|
|
514
475
|
"image"
|
|
515
476
|
],
|
|
516
477
|
"cost": {
|
|
517
|
-
"input":
|
|
518
|
-
"output":
|
|
519
|
-
"cacheRead": 0.
|
|
478
|
+
"input": 0.95,
|
|
479
|
+
"output": 4,
|
|
480
|
+
"cacheRead": 0.16,
|
|
520
481
|
"cacheWrite": 0
|
|
521
482
|
},
|
|
522
|
-
"contextWindow":
|
|
523
|
-
"maxTokens":
|
|
483
|
+
"contextWindow": 262144,
|
|
484
|
+
"maxTokens": 65536
|
|
524
485
|
},
|
|
525
486
|
{
|
|
526
|
-
"id": "
|
|
527
|
-
"name": "
|
|
528
|
-
"api": "openai-
|
|
487
|
+
"id": "gpt-5.5",
|
|
488
|
+
"name": "GPT-5.5",
|
|
489
|
+
"api": "openai-responses",
|
|
529
490
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
530
491
|
"reasoning": true,
|
|
531
492
|
"input": [
|
|
532
|
-
"text"
|
|
493
|
+
"text",
|
|
494
|
+
"image"
|
|
533
495
|
],
|
|
534
496
|
"cost": {
|
|
535
|
-
"input":
|
|
536
|
-
"output":
|
|
537
|
-
"cacheRead": 0,
|
|
497
|
+
"input": 5,
|
|
498
|
+
"output": 30,
|
|
499
|
+
"cacheRead": 0.5,
|
|
538
500
|
"cacheWrite": 0
|
|
539
501
|
},
|
|
540
|
-
"contextWindow":
|
|
541
|
-
"maxTokens":
|
|
502
|
+
"contextWindow": 1050000,
|
|
503
|
+
"maxTokens": 128000
|
|
542
504
|
},
|
|
543
505
|
{
|
|
544
506
|
"id": "claude-opus-4-1",
|
|
@@ -560,8 +522,27 @@
|
|
|
560
522
|
"maxTokens": 32000
|
|
561
523
|
},
|
|
562
524
|
{
|
|
563
|
-
"id": "
|
|
564
|
-
"name": "
|
|
525
|
+
"id": "minimax-m3",
|
|
526
|
+
"name": "MiniMax-M3",
|
|
527
|
+
"api": "openai-completions",
|
|
528
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
529
|
+
"reasoning": true,
|
|
530
|
+
"input": [
|
|
531
|
+
"text",
|
|
532
|
+
"image"
|
|
533
|
+
],
|
|
534
|
+
"cost": {
|
|
535
|
+
"input": 0.3,
|
|
536
|
+
"output": 1.2,
|
|
537
|
+
"cacheRead": 0.06,
|
|
538
|
+
"cacheWrite": 0
|
|
539
|
+
},
|
|
540
|
+
"contextWindow": 512000,
|
|
541
|
+
"maxTokens": 128000
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"id": "gpt-5",
|
|
545
|
+
"name": "GPT-5",
|
|
565
546
|
"api": "openai-responses",
|
|
566
547
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
567
548
|
"reasoning": true,
|
|
@@ -570,18 +551,18 @@
|
|
|
570
551
|
"image"
|
|
571
552
|
],
|
|
572
553
|
"cost": {
|
|
573
|
-
"input":
|
|
574
|
-
"output":
|
|
575
|
-
"cacheRead": 0.
|
|
554
|
+
"input": 1.07,
|
|
555
|
+
"output": 8.5,
|
|
556
|
+
"cacheRead": 0.107,
|
|
576
557
|
"cacheWrite": 0
|
|
577
558
|
},
|
|
578
559
|
"contextWindow": 400000,
|
|
579
560
|
"maxTokens": 128000
|
|
580
561
|
},
|
|
581
562
|
{
|
|
582
|
-
"id": "
|
|
583
|
-
"name": "
|
|
584
|
-
"api": "openai-
|
|
563
|
+
"id": "gpt-5-codex",
|
|
564
|
+
"name": "GPT-5 Codex",
|
|
565
|
+
"api": "openai-responses",
|
|
585
566
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
586
567
|
"reasoning": true,
|
|
587
568
|
"input": [
|
|
@@ -589,17 +570,17 @@
|
|
|
589
570
|
"image"
|
|
590
571
|
],
|
|
591
572
|
"cost": {
|
|
592
|
-
"input":
|
|
593
|
-
"output":
|
|
594
|
-
"cacheRead": 0.
|
|
573
|
+
"input": 1.07,
|
|
574
|
+
"output": 8.5,
|
|
575
|
+
"cacheRead": 0.107,
|
|
595
576
|
"cacheWrite": 0
|
|
596
577
|
},
|
|
597
|
-
"contextWindow":
|
|
598
|
-
"maxTokens":
|
|
578
|
+
"contextWindow": 400000,
|
|
579
|
+
"maxTokens": 128000
|
|
599
580
|
},
|
|
600
581
|
{
|
|
601
|
-
"id": "claude-
|
|
602
|
-
"name": "Claude
|
|
582
|
+
"id": "claude-sonnet-4-5",
|
|
583
|
+
"name": "Claude Sonnet 4.5",
|
|
603
584
|
"api": "anthropic-messages",
|
|
604
585
|
"baseUrl": "https://opencode.ai/zen",
|
|
605
586
|
"reasoning": true,
|
|
@@ -608,17 +589,17 @@
|
|
|
608
589
|
"image"
|
|
609
590
|
],
|
|
610
591
|
"cost": {
|
|
611
|
-
"input":
|
|
612
|
-
"output":
|
|
613
|
-
"cacheRead":
|
|
614
|
-
"cacheWrite":
|
|
592
|
+
"input": 3,
|
|
593
|
+
"output": 15,
|
|
594
|
+
"cacheRead": 0.3,
|
|
595
|
+
"cacheWrite": 3.75
|
|
615
596
|
},
|
|
616
597
|
"contextWindow": 1000000,
|
|
617
|
-
"maxTokens":
|
|
598
|
+
"maxTokens": 64000
|
|
618
599
|
},
|
|
619
600
|
{
|
|
620
|
-
"id": "
|
|
621
|
-
"name": "
|
|
601
|
+
"id": "deepseek-v4-pro",
|
|
602
|
+
"name": "DeepSeek V4 Pro",
|
|
622
603
|
"api": "openai-completions",
|
|
623
604
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
624
605
|
"reasoning": true,
|
|
@@ -626,36 +607,36 @@
|
|
|
626
607
|
"text"
|
|
627
608
|
],
|
|
628
609
|
"cost": {
|
|
629
|
-
"input":
|
|
630
|
-
"output":
|
|
631
|
-
"cacheRead": 0,
|
|
610
|
+
"input": 1.74,
|
|
611
|
+
"output": 3.84,
|
|
612
|
+
"cacheRead": 0.145,
|
|
632
613
|
"cacheWrite": 0
|
|
633
614
|
},
|
|
634
|
-
"contextWindow":
|
|
635
|
-
"maxTokens":
|
|
615
|
+
"contextWindow": 1000000,
|
|
616
|
+
"maxTokens": 384000
|
|
636
617
|
},
|
|
637
618
|
{
|
|
638
|
-
"id": "
|
|
639
|
-
"name": "
|
|
640
|
-
"api": "
|
|
641
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
619
|
+
"id": "gpt-5.4",
|
|
620
|
+
"name": "GPT-5.4",
|
|
621
|
+
"api": "openai-responses",
|
|
622
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
642
623
|
"reasoning": true,
|
|
643
624
|
"input": [
|
|
644
625
|
"text",
|
|
645
626
|
"image"
|
|
646
627
|
],
|
|
647
628
|
"cost": {
|
|
648
|
-
"input":
|
|
649
|
-
"output":
|
|
650
|
-
"cacheRead": 0.
|
|
651
|
-
"cacheWrite":
|
|
629
|
+
"input": 2.5,
|
|
630
|
+
"output": 15,
|
|
631
|
+
"cacheRead": 0.25,
|
|
632
|
+
"cacheWrite": 0
|
|
652
633
|
},
|
|
653
|
-
"contextWindow":
|
|
654
|
-
"maxTokens":
|
|
634
|
+
"contextWindow": 1050000,
|
|
635
|
+
"maxTokens": 128000
|
|
655
636
|
},
|
|
656
637
|
{
|
|
657
|
-
"id": "gpt-5.
|
|
658
|
-
"name": "GPT-5.
|
|
638
|
+
"id": "gpt-5.2-codex",
|
|
639
|
+
"name": "GPT-5.2 Codex",
|
|
659
640
|
"api": "openai-responses",
|
|
660
641
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
661
642
|
"reasoning": true,
|
|
@@ -664,14 +645,71 @@
|
|
|
664
645
|
"image"
|
|
665
646
|
],
|
|
666
647
|
"cost": {
|
|
667
|
-
"input":
|
|
668
|
-
"output":
|
|
669
|
-
"cacheRead": 0.
|
|
648
|
+
"input": 1.75,
|
|
649
|
+
"output": 14,
|
|
650
|
+
"cacheRead": 0.175,
|
|
670
651
|
"cacheWrite": 0
|
|
671
652
|
},
|
|
672
|
-
"contextWindow":
|
|
653
|
+
"contextWindow": 400000,
|
|
673
654
|
"maxTokens": 128000
|
|
674
655
|
},
|
|
656
|
+
{
|
|
657
|
+
"id": "gpt-5.4-nano",
|
|
658
|
+
"name": "GPT-5.4 Nano",
|
|
659
|
+
"api": "openai-responses",
|
|
660
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
661
|
+
"reasoning": true,
|
|
662
|
+
"input": [
|
|
663
|
+
"text",
|
|
664
|
+
"image"
|
|
665
|
+
],
|
|
666
|
+
"cost": {
|
|
667
|
+
"input": 0.2,
|
|
668
|
+
"output": 1.25,
|
|
669
|
+
"cacheRead": 0.02,
|
|
670
|
+
"cacheWrite": 0
|
|
671
|
+
},
|
|
672
|
+
"contextWindow": 400000,
|
|
673
|
+
"maxTokens": 128000
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"id": "gemini-3.6-flash",
|
|
677
|
+
"name": "Gemini 3.6 Flash",
|
|
678
|
+
"api": "google-generative-ai",
|
|
679
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
680
|
+
"reasoning": true,
|
|
681
|
+
"input": [
|
|
682
|
+
"text",
|
|
683
|
+
"image"
|
|
684
|
+
],
|
|
685
|
+
"cost": {
|
|
686
|
+
"input": 1.5,
|
|
687
|
+
"output": 7.5,
|
|
688
|
+
"cacheRead": 0.15,
|
|
689
|
+
"cacheWrite": 0
|
|
690
|
+
},
|
|
691
|
+
"contextWindow": 1048576,
|
|
692
|
+
"maxTokens": 65536
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"id": "claude-sonnet-4",
|
|
696
|
+
"name": "Claude Sonnet 4",
|
|
697
|
+
"api": "anthropic-messages",
|
|
698
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
699
|
+
"reasoning": true,
|
|
700
|
+
"input": [
|
|
701
|
+
"text",
|
|
702
|
+
"image"
|
|
703
|
+
],
|
|
704
|
+
"cost": {
|
|
705
|
+
"input": 3,
|
|
706
|
+
"output": 15,
|
|
707
|
+
"cacheRead": 0.3,
|
|
708
|
+
"cacheWrite": 3.75
|
|
709
|
+
},
|
|
710
|
+
"contextWindow": 1000000,
|
|
711
|
+
"maxTokens": 64000
|
|
712
|
+
},
|
|
675
713
|
{
|
|
676
714
|
"id": "gpt-5.4-mini",
|
|
677
715
|
"name": "GPT-5.4 Mini",
|
|
@@ -692,46 +730,83 @@
|
|
|
692
730
|
"maxTokens": 128000
|
|
693
731
|
},
|
|
694
732
|
{
|
|
695
|
-
"id": "
|
|
696
|
-
"name": "
|
|
733
|
+
"id": "minimax-m2.5",
|
|
734
|
+
"name": "MiniMax-M2.5",
|
|
697
735
|
"api": "openai-completions",
|
|
698
736
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
699
737
|
"reasoning": true,
|
|
738
|
+
"input": [
|
|
739
|
+
"text"
|
|
740
|
+
],
|
|
741
|
+
"cost": {
|
|
742
|
+
"input": 0.3,
|
|
743
|
+
"output": 1.2,
|
|
744
|
+
"cacheRead": 0.06,
|
|
745
|
+
"cacheWrite": 0
|
|
746
|
+
},
|
|
747
|
+
"contextWindow": 204800,
|
|
748
|
+
"maxTokens": 131072
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"id": "gpt-5.6-luna",
|
|
752
|
+
"name": "GPT-5.6 Luna",
|
|
753
|
+
"api": "openai-responses",
|
|
754
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
755
|
+
"reasoning": true,
|
|
700
756
|
"input": [
|
|
701
757
|
"text",
|
|
702
758
|
"image"
|
|
703
759
|
],
|
|
704
760
|
"cost": {
|
|
705
|
-
"input":
|
|
706
|
-
"output":
|
|
707
|
-
"cacheRead": 0.
|
|
761
|
+
"input": 1,
|
|
762
|
+
"output": 6,
|
|
763
|
+
"cacheRead": 0.1,
|
|
764
|
+
"cacheWrite": 1.25
|
|
765
|
+
},
|
|
766
|
+
"contextWindow": 1050000,
|
|
767
|
+
"maxTokens": 128000
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"id": "mimo-v2.5-free",
|
|
771
|
+
"name": "MiMo V2.5 Free",
|
|
772
|
+
"api": "openai-completions",
|
|
773
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
774
|
+
"reasoning": true,
|
|
775
|
+
"input": [
|
|
776
|
+
"text",
|
|
777
|
+
"image"
|
|
778
|
+
],
|
|
779
|
+
"cost": {
|
|
780
|
+
"input": 0,
|
|
781
|
+
"output": 0,
|
|
782
|
+
"cacheRead": 0,
|
|
708
783
|
"cacheWrite": 0
|
|
709
784
|
},
|
|
710
|
-
"contextWindow":
|
|
711
|
-
"maxTokens":
|
|
785
|
+
"contextWindow": 200000,
|
|
786
|
+
"maxTokens": 32000
|
|
712
787
|
},
|
|
713
788
|
{
|
|
714
|
-
"id": "
|
|
715
|
-
"name": "
|
|
716
|
-
"api": "
|
|
717
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
789
|
+
"id": "gpt-5.2",
|
|
790
|
+
"name": "GPT-5.2",
|
|
791
|
+
"api": "openai-responses",
|
|
792
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
718
793
|
"reasoning": true,
|
|
719
794
|
"input": [
|
|
720
795
|
"text",
|
|
721
796
|
"image"
|
|
722
797
|
],
|
|
723
798
|
"cost": {
|
|
724
|
-
"input":
|
|
725
|
-
"output":
|
|
726
|
-
"cacheRead": 0.
|
|
727
|
-
"cacheWrite":
|
|
799
|
+
"input": 1.75,
|
|
800
|
+
"output": 14,
|
|
801
|
+
"cacheRead": 0.175,
|
|
802
|
+
"cacheWrite": 0
|
|
728
803
|
},
|
|
729
|
-
"contextWindow":
|
|
804
|
+
"contextWindow": 400000,
|
|
730
805
|
"maxTokens": 128000
|
|
731
806
|
},
|
|
732
807
|
{
|
|
733
|
-
"id": "gpt-5-
|
|
734
|
-
"name": "GPT-5
|
|
808
|
+
"id": "gpt-5.3-codex",
|
|
809
|
+
"name": "GPT-5.3 Codex",
|
|
735
810
|
"api": "openai-responses",
|
|
736
811
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
737
812
|
"reasoning": true,
|
|
@@ -740,17 +815,17 @@
|
|
|
740
815
|
"image"
|
|
741
816
|
],
|
|
742
817
|
"cost": {
|
|
743
|
-
"input":
|
|
744
|
-
"output":
|
|
745
|
-
"cacheRead": 0.
|
|
818
|
+
"input": 1.75,
|
|
819
|
+
"output": 14,
|
|
820
|
+
"cacheRead": 0.175,
|
|
746
821
|
"cacheWrite": 0
|
|
747
822
|
},
|
|
748
823
|
"contextWindow": 400000,
|
|
749
824
|
"maxTokens": 128000
|
|
750
825
|
},
|
|
751
826
|
{
|
|
752
|
-
"id": "
|
|
753
|
-
"name": "
|
|
827
|
+
"id": "grok-4.5",
|
|
828
|
+
"name": "Grok 4.5",
|
|
754
829
|
"api": "openai-responses",
|
|
755
830
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
756
831
|
"reasoning": true,
|
|
@@ -759,37 +834,37 @@
|
|
|
759
834
|
"image"
|
|
760
835
|
],
|
|
761
836
|
"cost": {
|
|
762
|
-
"input":
|
|
763
|
-
"output":
|
|
764
|
-
"cacheRead":
|
|
837
|
+
"input": 2,
|
|
838
|
+
"output": 6,
|
|
839
|
+
"cacheRead": 0.5,
|
|
765
840
|
"cacheWrite": 0
|
|
766
841
|
},
|
|
767
|
-
"contextWindow":
|
|
768
|
-
"maxTokens":
|
|
842
|
+
"contextWindow": 500000,
|
|
843
|
+
"maxTokens": 500000
|
|
769
844
|
},
|
|
770
845
|
{
|
|
771
|
-
"id": "
|
|
772
|
-
"name": "
|
|
773
|
-
"api": "
|
|
774
|
-
"baseUrl": "https://opencode.ai/zen",
|
|
846
|
+
"id": "kimi-k2.7-code",
|
|
847
|
+
"name": "Kimi K2.7 Code",
|
|
848
|
+
"api": "openai-completions",
|
|
849
|
+
"baseUrl": "https://opencode.ai/zen/v1",
|
|
775
850
|
"reasoning": true,
|
|
776
851
|
"input": [
|
|
777
852
|
"text",
|
|
778
853
|
"image"
|
|
779
854
|
],
|
|
780
855
|
"cost": {
|
|
781
|
-
"input":
|
|
782
|
-
"output":
|
|
783
|
-
"cacheRead": 0.
|
|
784
|
-
"cacheWrite":
|
|
856
|
+
"input": 0.95,
|
|
857
|
+
"output": 4,
|
|
858
|
+
"cacheRead": 0.19,
|
|
859
|
+
"cacheWrite": 0
|
|
785
860
|
},
|
|
786
|
-
"contextWindow":
|
|
787
|
-
"maxTokens":
|
|
861
|
+
"contextWindow": 262144,
|
|
862
|
+
"maxTokens": 262144
|
|
788
863
|
},
|
|
789
864
|
{
|
|
790
|
-
"id": "
|
|
791
|
-
"name": "
|
|
792
|
-
"api": "
|
|
865
|
+
"id": "gpt-5.1",
|
|
866
|
+
"name": "GPT-5.1",
|
|
867
|
+
"api": "openai-responses",
|
|
793
868
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
794
869
|
"reasoning": true,
|
|
795
870
|
"input": [
|
|
@@ -797,13 +872,13 @@
|
|
|
797
872
|
"image"
|
|
798
873
|
],
|
|
799
874
|
"cost": {
|
|
800
|
-
"input":
|
|
801
|
-
"output":
|
|
802
|
-
"cacheRead": 0.
|
|
875
|
+
"input": 1.07,
|
|
876
|
+
"output": 8.5,
|
|
877
|
+
"cacheRead": 0.107,
|
|
803
878
|
"cacheWrite": 0
|
|
804
879
|
},
|
|
805
|
-
"contextWindow":
|
|
806
|
-
"maxTokens":
|
|
880
|
+
"contextWindow": 400000,
|
|
881
|
+
"maxTokens": 128000
|
|
807
882
|
},
|
|
808
883
|
{
|
|
809
884
|
"id": "big-pickle",
|
|
@@ -824,9 +899,9 @@
|
|
|
824
899
|
"maxTokens": 32000
|
|
825
900
|
},
|
|
826
901
|
{
|
|
827
|
-
"id": "
|
|
828
|
-
"name": "
|
|
829
|
-
"api": "openai-
|
|
902
|
+
"id": "grok-build-0.1",
|
|
903
|
+
"name": "Grok Build 0.1",
|
|
904
|
+
"api": "openai-completions",
|
|
830
905
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
831
906
|
"reasoning": true,
|
|
832
907
|
"input": [
|
|
@@ -834,35 +909,36 @@
|
|
|
834
909
|
"image"
|
|
835
910
|
],
|
|
836
911
|
"cost": {
|
|
837
|
-
"input":
|
|
838
|
-
"output":
|
|
839
|
-
"cacheRead":
|
|
912
|
+
"input": 1,
|
|
913
|
+
"output": 2,
|
|
914
|
+
"cacheRead": 0.2,
|
|
840
915
|
"cacheWrite": 0
|
|
841
916
|
},
|
|
842
|
-
"contextWindow":
|
|
843
|
-
"maxTokens":
|
|
917
|
+
"contextWindow": 256000,
|
|
918
|
+
"maxTokens": 256000
|
|
844
919
|
},
|
|
845
920
|
{
|
|
846
|
-
"id": "
|
|
847
|
-
"name": "
|
|
921
|
+
"id": "kimi-k3",
|
|
922
|
+
"name": "Kimi K3",
|
|
848
923
|
"api": "openai-completions",
|
|
849
924
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
850
925
|
"reasoning": true,
|
|
851
926
|
"input": [
|
|
852
|
-
"text"
|
|
927
|
+
"text",
|
|
928
|
+
"image"
|
|
853
929
|
],
|
|
854
930
|
"cost": {
|
|
855
|
-
"input":
|
|
856
|
-
"output":
|
|
857
|
-
"cacheRead": 0.
|
|
931
|
+
"input": 3,
|
|
932
|
+
"output": 15,
|
|
933
|
+
"cacheRead": 0.3,
|
|
858
934
|
"cacheWrite": 0
|
|
859
935
|
},
|
|
860
|
-
"contextWindow":
|
|
936
|
+
"contextWindow": 1048576,
|
|
861
937
|
"maxTokens": 131072
|
|
862
938
|
},
|
|
863
939
|
{
|
|
864
|
-
"id": "gpt-5-codex",
|
|
865
|
-
"name": "GPT-5 Codex",
|
|
940
|
+
"id": "gpt-5.1-codex",
|
|
941
|
+
"name": "GPT-5.1 Codex",
|
|
866
942
|
"api": "openai-responses",
|
|
867
943
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
868
944
|
"reasoning": true,
|
|
@@ -880,8 +956,8 @@
|
|
|
880
956
|
"maxTokens": 128000
|
|
881
957
|
},
|
|
882
958
|
{
|
|
883
|
-
"id": "gpt-5
|
|
884
|
-
"name": "GPT-5
|
|
959
|
+
"id": "gpt-5-nano",
|
|
960
|
+
"name": "GPT-5 Nano",
|
|
885
961
|
"api": "openai-responses",
|
|
886
962
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
887
963
|
"reasoning": true,
|
|
@@ -890,17 +966,17 @@
|
|
|
890
966
|
"image"
|
|
891
967
|
],
|
|
892
968
|
"cost": {
|
|
893
|
-
"input":
|
|
894
|
-
"output":
|
|
895
|
-
"cacheRead": 0.
|
|
969
|
+
"input": 0.05,
|
|
970
|
+
"output": 0.4,
|
|
971
|
+
"cacheRead": 0.005,
|
|
896
972
|
"cacheWrite": 0
|
|
897
973
|
},
|
|
898
974
|
"contextWindow": 400000,
|
|
899
975
|
"maxTokens": 128000
|
|
900
976
|
},
|
|
901
977
|
{
|
|
902
|
-
"id": "
|
|
903
|
-
"name": "
|
|
978
|
+
"id": "claude-opus-4-7",
|
|
979
|
+
"name": "Claude Opus 4.7",
|
|
904
980
|
"api": "anthropic-messages",
|
|
905
981
|
"baseUrl": "https://opencode.ai/zen",
|
|
906
982
|
"reasoning": true,
|
|
@@ -909,18 +985,18 @@
|
|
|
909
985
|
"image"
|
|
910
986
|
],
|
|
911
987
|
"cost": {
|
|
912
|
-
"input":
|
|
913
|
-
"output":
|
|
914
|
-
"cacheRead": 0.
|
|
915
|
-
"cacheWrite":
|
|
988
|
+
"input": 5,
|
|
989
|
+
"output": 25,
|
|
990
|
+
"cacheRead": 0.5,
|
|
991
|
+
"cacheWrite": 6.25
|
|
916
992
|
},
|
|
917
|
-
"contextWindow":
|
|
918
|
-
"maxTokens":
|
|
993
|
+
"contextWindow": 1000000,
|
|
994
|
+
"maxTokens": 128000
|
|
919
995
|
},
|
|
920
996
|
{
|
|
921
|
-
"id": "
|
|
922
|
-
"name": "
|
|
923
|
-
"api": "openai-
|
|
997
|
+
"id": "gpt-5.6-terra",
|
|
998
|
+
"name": "GPT-5.6 Terra",
|
|
999
|
+
"api": "openai-responses",
|
|
924
1000
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
925
1001
|
"reasoning": true,
|
|
926
1002
|
"input": [
|
|
@@ -928,36 +1004,92 @@
|
|
|
928
1004
|
"image"
|
|
929
1005
|
],
|
|
930
1006
|
"cost": {
|
|
931
|
-
"input":
|
|
932
|
-
"output":
|
|
1007
|
+
"input": 2.5,
|
|
1008
|
+
"output": 15,
|
|
1009
|
+
"cacheRead": 0.25,
|
|
1010
|
+
"cacheWrite": 3.125
|
|
1011
|
+
},
|
|
1012
|
+
"contextWindow": 1050000,
|
|
1013
|
+
"maxTokens": 128000
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"id": "claude-opus-4-5",
|
|
1017
|
+
"name": "Claude Opus 4.5",
|
|
1018
|
+
"api": "anthropic-messages",
|
|
1019
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
1020
|
+
"reasoning": true,
|
|
1021
|
+
"input": [
|
|
1022
|
+
"text",
|
|
1023
|
+
"image"
|
|
1024
|
+
],
|
|
1025
|
+
"cost": {
|
|
1026
|
+
"input": 5,
|
|
1027
|
+
"output": 25,
|
|
1028
|
+
"cacheRead": 0.5,
|
|
1029
|
+
"cacheWrite": 6.25
|
|
1030
|
+
},
|
|
1031
|
+
"contextWindow": 200000,
|
|
1032
|
+
"maxTokens": 64000
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"id": "claude-sonnet-5",
|
|
1036
|
+
"name": "Claude Sonnet 5",
|
|
1037
|
+
"api": "anthropic-messages",
|
|
1038
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
1039
|
+
"reasoning": true,
|
|
1040
|
+
"input": [
|
|
1041
|
+
"text",
|
|
1042
|
+
"image"
|
|
1043
|
+
],
|
|
1044
|
+
"cost": {
|
|
1045
|
+
"input": 2,
|
|
1046
|
+
"output": 10,
|
|
933
1047
|
"cacheRead": 0.2,
|
|
934
|
-
"cacheWrite":
|
|
1048
|
+
"cacheWrite": 2.5
|
|
935
1049
|
},
|
|
936
|
-
"contextWindow":
|
|
937
|
-
"maxTokens":
|
|
1050
|
+
"contextWindow": 1000000,
|
|
1051
|
+
"maxTokens": 128000
|
|
938
1052
|
},
|
|
939
1053
|
{
|
|
940
|
-
"id": "
|
|
941
|
-
"name": "
|
|
942
|
-
"api": "openai-
|
|
1054
|
+
"id": "nemotron-3-ultra-free",
|
|
1055
|
+
"name": "Nemotron 3 Ultra Free",
|
|
1056
|
+
"api": "openai-completions",
|
|
943
1057
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
944
1058
|
"reasoning": true,
|
|
1059
|
+
"input": [
|
|
1060
|
+
"text"
|
|
1061
|
+
],
|
|
1062
|
+
"cost": {
|
|
1063
|
+
"input": 0,
|
|
1064
|
+
"output": 0,
|
|
1065
|
+
"cacheRead": 0,
|
|
1066
|
+
"cacheWrite": 0
|
|
1067
|
+
},
|
|
1068
|
+
"contextWindow": 1000000,
|
|
1069
|
+
"maxTokens": 128000
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"id": "claude-opus-5",
|
|
1073
|
+
"name": "Claude Opus 5",
|
|
1074
|
+
"api": "anthropic-messages",
|
|
1075
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
1076
|
+
"reasoning": true,
|
|
945
1077
|
"input": [
|
|
946
1078
|
"text",
|
|
947
1079
|
"image"
|
|
948
1080
|
],
|
|
949
1081
|
"cost": {
|
|
950
|
-
"input":
|
|
951
|
-
"output":
|
|
952
|
-
"cacheRead": 0.
|
|
953
|
-
"cacheWrite":
|
|
1082
|
+
"input": 5,
|
|
1083
|
+
"output": 25,
|
|
1084
|
+
"cacheRead": 0.5,
|
|
1085
|
+
"cacheWrite": 6.25
|
|
954
1086
|
},
|
|
955
|
-
"contextWindow":
|
|
1087
|
+
"contextWindow": 1000000,
|
|
956
1088
|
"maxTokens": 128000
|
|
957
1089
|
},
|
|
958
1090
|
{
|
|
959
|
-
"id": "gpt-5.
|
|
960
|
-
"name": "GPT-5.
|
|
1091
|
+
"id": "gpt-5.1-codex-max",
|
|
1092
|
+
"name": "GPT-5.1 Codex Max",
|
|
961
1093
|
"api": "openai-responses",
|
|
962
1094
|
"baseUrl": "https://opencode.ai/zen/v1",
|
|
963
1095
|
"reasoning": true,
|
|
@@ -966,12 +1098,31 @@
|
|
|
966
1098
|
"image"
|
|
967
1099
|
],
|
|
968
1100
|
"cost": {
|
|
969
|
-
"input":
|
|
970
|
-
"output":
|
|
971
|
-
"cacheRead": 0.
|
|
1101
|
+
"input": 1.25,
|
|
1102
|
+
"output": 10,
|
|
1103
|
+
"cacheRead": 0.125,
|
|
972
1104
|
"cacheWrite": 0
|
|
973
1105
|
},
|
|
974
|
-
"contextWindow":
|
|
1106
|
+
"contextWindow": 400000,
|
|
975
1107
|
"maxTokens": 128000
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"id": "qwen3.6-plus",
|
|
1111
|
+
"name": "Qwen3.6 Plus",
|
|
1112
|
+
"api": "anthropic-messages",
|
|
1113
|
+
"baseUrl": "https://opencode.ai/zen",
|
|
1114
|
+
"reasoning": true,
|
|
1115
|
+
"input": [
|
|
1116
|
+
"text",
|
|
1117
|
+
"image"
|
|
1118
|
+
],
|
|
1119
|
+
"cost": {
|
|
1120
|
+
"input": 0.5,
|
|
1121
|
+
"output": 3,
|
|
1122
|
+
"cacheRead": 0.05,
|
|
1123
|
+
"cacheWrite": 0.625
|
|
1124
|
+
},
|
|
1125
|
+
"contextWindow": 262144,
|
|
1126
|
+
"maxTokens": 65536
|
|
976
1127
|
}
|
|
977
1128
|
]
|