@openclaw/chutes-provider 0.0.0 → 2026.6.9-beta.1

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.
@@ -0,0 +1,737 @@
1
+ {
2
+ "id": "chutes",
3
+ "activation": {
4
+ "onStartup": false
5
+ },
6
+ "enabledByDefault": true,
7
+ "providers": ["chutes"],
8
+ "providerEndpoints": [
9
+ {
10
+ "endpointClass": "chutes-native",
11
+ "hosts": ["llm.chutes.ai"]
12
+ }
13
+ ],
14
+ "providerRequest": {
15
+ "providers": {
16
+ "chutes": {
17
+ "family": "chutes"
18
+ }
19
+ }
20
+ },
21
+ "setup": {
22
+ "providers": [
23
+ {
24
+ "id": "chutes",
25
+ "envVars": ["CHUTES_API_KEY", "CHUTES_OAUTH_TOKEN"]
26
+ }
27
+ ]
28
+ },
29
+ "providerAuthChoices": [
30
+ {
31
+ "provider": "chutes",
32
+ "method": "oauth",
33
+ "choiceId": "chutes",
34
+ "choiceLabel": "Chutes (OAuth)",
35
+ "choiceHint": "Browser sign-in",
36
+ "groupId": "chutes",
37
+ "groupLabel": "Chutes",
38
+ "groupHint": "OAuth + API key"
39
+ },
40
+ {
41
+ "provider": "chutes",
42
+ "method": "api-key",
43
+ "choiceId": "chutes-api-key",
44
+ "choiceLabel": "Chutes API key",
45
+ "choiceHint": "Open-source models including Llama, DeepSeek, and more",
46
+ "groupId": "chutes",
47
+ "groupLabel": "Chutes",
48
+ "groupHint": "OAuth + API key",
49
+ "optionKey": "chutesApiKey",
50
+ "cliFlag": "--chutes-api-key",
51
+ "cliOption": "--chutes-api-key <key>",
52
+ "cliDescription": "Chutes API key"
53
+ }
54
+ ],
55
+ "configSchema": {
56
+ "type": "object",
57
+ "additionalProperties": false,
58
+ "properties": {}
59
+ },
60
+ "modelCatalog": {
61
+ "providers": {
62
+ "chutes": {
63
+ "baseUrl": "https://llm.chutes.ai/v1",
64
+ "api": "openai-completions",
65
+ "models": [
66
+ {
67
+ "id": "Qwen/Qwen3-32B",
68
+ "name": "Qwen/Qwen3-32B",
69
+ "reasoning": true,
70
+ "input": ["text"],
71
+ "contextWindow": 40960,
72
+ "maxTokens": 40960,
73
+ "cost": {
74
+ "input": 0.08,
75
+ "output": 0.24,
76
+ "cacheRead": 0,
77
+ "cacheWrite": 0
78
+ }
79
+ },
80
+ {
81
+ "id": "unsloth/Mistral-Nemo-Instruct-2407",
82
+ "name": "unsloth/Mistral-Nemo-Instruct-2407",
83
+ "reasoning": false,
84
+ "input": ["text"],
85
+ "contextWindow": 131072,
86
+ "maxTokens": 131072,
87
+ "cost": {
88
+ "input": 0.02,
89
+ "output": 0.04,
90
+ "cacheRead": 0,
91
+ "cacheWrite": 0
92
+ }
93
+ },
94
+ {
95
+ "id": "deepseek-ai/DeepSeek-V3-0324-TEE",
96
+ "name": "deepseek-ai/DeepSeek-V3-0324-TEE",
97
+ "reasoning": true,
98
+ "input": ["text"],
99
+ "contextWindow": 163840,
100
+ "maxTokens": 65536,
101
+ "cost": {
102
+ "input": 0.25,
103
+ "output": 1,
104
+ "cacheRead": 0,
105
+ "cacheWrite": 0
106
+ }
107
+ },
108
+ {
109
+ "id": "Qwen/Qwen3-235B-A22B-Instruct-2507-TEE",
110
+ "name": "Qwen/Qwen3-235B-A22B-Instruct-2507-TEE",
111
+ "reasoning": true,
112
+ "input": ["text"],
113
+ "contextWindow": 262144,
114
+ "maxTokens": 65536,
115
+ "cost": {
116
+ "input": 0.08,
117
+ "output": 0.55,
118
+ "cacheRead": 0,
119
+ "cacheWrite": 0
120
+ }
121
+ },
122
+ {
123
+ "id": "openai/gpt-oss-120b-TEE",
124
+ "name": "openai/gpt-oss-120b-TEE",
125
+ "reasoning": true,
126
+ "input": ["text"],
127
+ "contextWindow": 131072,
128
+ "maxTokens": 65536,
129
+ "cost": {
130
+ "input": 0.05,
131
+ "output": 0.45,
132
+ "cacheRead": 0,
133
+ "cacheWrite": 0
134
+ }
135
+ },
136
+ {
137
+ "id": "chutesai/Mistral-Small-3.1-24B-Instruct-2503",
138
+ "name": "chutesai/Mistral-Small-3.1-24B-Instruct-2503",
139
+ "reasoning": false,
140
+ "input": ["text", "image"],
141
+ "contextWindow": 131072,
142
+ "maxTokens": 131072,
143
+ "cost": {
144
+ "input": 0.03,
145
+ "output": 0.11,
146
+ "cacheRead": 0,
147
+ "cacheWrite": 0
148
+ }
149
+ },
150
+ {
151
+ "id": "deepseek-ai/DeepSeek-V3.2-TEE",
152
+ "name": "deepseek-ai/DeepSeek-V3.2-TEE",
153
+ "reasoning": true,
154
+ "input": ["text"],
155
+ "contextWindow": 131072,
156
+ "maxTokens": 65536,
157
+ "cost": {
158
+ "input": 0.28,
159
+ "output": 0.42,
160
+ "cacheRead": 0,
161
+ "cacheWrite": 0
162
+ }
163
+ },
164
+ {
165
+ "id": "zai-org/GLM-4.7-TEE",
166
+ "name": "zai-org/GLM-4.7-TEE",
167
+ "reasoning": true,
168
+ "input": ["text"],
169
+ "contextWindow": 202752,
170
+ "maxTokens": 65535,
171
+ "cost": {
172
+ "input": 0.4,
173
+ "output": 2,
174
+ "cacheRead": 0,
175
+ "cacheWrite": 0
176
+ }
177
+ },
178
+ {
179
+ "id": "moonshotai/Kimi-K2.5-TEE",
180
+ "name": "moonshotai/Kimi-K2.5-TEE",
181
+ "reasoning": true,
182
+ "input": ["text", "image"],
183
+ "contextWindow": 262144,
184
+ "maxTokens": 65535,
185
+ "cost": {
186
+ "input": 0.45,
187
+ "output": 2.2,
188
+ "cacheRead": 0,
189
+ "cacheWrite": 0
190
+ }
191
+ },
192
+ {
193
+ "id": "unsloth/gemma-3-27b-it",
194
+ "name": "unsloth/gemma-3-27b-it",
195
+ "reasoning": false,
196
+ "input": ["text", "image"],
197
+ "contextWindow": 128000,
198
+ "maxTokens": 65536,
199
+ "cost": {
200
+ "input": 0.04,
201
+ "output": 0.15,
202
+ "cacheRead": 0,
203
+ "cacheWrite": 0
204
+ }
205
+ },
206
+ {
207
+ "id": "XiaomiMiMo/MiMo-V2-Flash-TEE",
208
+ "name": "XiaomiMiMo/MiMo-V2-Flash-TEE",
209
+ "reasoning": true,
210
+ "input": ["text"],
211
+ "contextWindow": 262144,
212
+ "maxTokens": 65536,
213
+ "cost": {
214
+ "input": 0.09,
215
+ "output": 0.29,
216
+ "cacheRead": 0,
217
+ "cacheWrite": 0
218
+ }
219
+ },
220
+ {
221
+ "id": "chutesai/Mistral-Small-3.2-24B-Instruct-2506",
222
+ "name": "chutesai/Mistral-Small-3.2-24B-Instruct-2506",
223
+ "reasoning": false,
224
+ "input": ["text", "image"],
225
+ "contextWindow": 131072,
226
+ "maxTokens": 131072,
227
+ "cost": {
228
+ "input": 0.06,
229
+ "output": 0.18,
230
+ "cacheRead": 0,
231
+ "cacheWrite": 0
232
+ }
233
+ },
234
+ {
235
+ "id": "deepseek-ai/DeepSeek-R1-0528-TEE",
236
+ "name": "deepseek-ai/DeepSeek-R1-0528-TEE",
237
+ "reasoning": true,
238
+ "input": ["text"],
239
+ "contextWindow": 163840,
240
+ "maxTokens": 65536,
241
+ "cost": {
242
+ "input": 0.45,
243
+ "output": 2.15,
244
+ "cacheRead": 0,
245
+ "cacheWrite": 0
246
+ }
247
+ },
248
+ {
249
+ "id": "zai-org/GLM-5-TEE",
250
+ "name": "zai-org/GLM-5-TEE",
251
+ "reasoning": true,
252
+ "input": ["text"],
253
+ "contextWindow": 202752,
254
+ "maxTokens": 65535,
255
+ "cost": {
256
+ "input": 0.95,
257
+ "output": 3.15,
258
+ "cacheRead": 0,
259
+ "cacheWrite": 0
260
+ }
261
+ },
262
+ {
263
+ "id": "deepseek-ai/DeepSeek-V3.1-TEE",
264
+ "name": "deepseek-ai/DeepSeek-V3.1-TEE",
265
+ "reasoning": true,
266
+ "input": ["text"],
267
+ "contextWindow": 163840,
268
+ "maxTokens": 65536,
269
+ "cost": {
270
+ "input": 0.2,
271
+ "output": 0.8,
272
+ "cacheRead": 0,
273
+ "cacheWrite": 0
274
+ }
275
+ },
276
+ {
277
+ "id": "deepseek-ai/DeepSeek-V3.1-Terminus-TEE",
278
+ "name": "deepseek-ai/DeepSeek-V3.1-Terminus-TEE",
279
+ "reasoning": true,
280
+ "input": ["text"],
281
+ "contextWindow": 163840,
282
+ "maxTokens": 65536,
283
+ "cost": {
284
+ "input": 0.23,
285
+ "output": 0.9,
286
+ "cacheRead": 0,
287
+ "cacheWrite": 0
288
+ }
289
+ },
290
+ {
291
+ "id": "unsloth/gemma-3-4b-it",
292
+ "name": "unsloth/gemma-3-4b-it",
293
+ "reasoning": false,
294
+ "input": ["text", "image"],
295
+ "contextWindow": 96000,
296
+ "maxTokens": 96000,
297
+ "cost": {
298
+ "input": 0.01,
299
+ "output": 0.03,
300
+ "cacheRead": 0,
301
+ "cacheWrite": 0
302
+ }
303
+ },
304
+ {
305
+ "id": "MiniMaxAI/MiniMax-M2.5-TEE",
306
+ "name": "MiniMaxAI/MiniMax-M2.5-TEE",
307
+ "reasoning": true,
308
+ "input": ["text"],
309
+ "contextWindow": 196608,
310
+ "maxTokens": 65536,
311
+ "cost": {
312
+ "input": 0.3,
313
+ "output": 1.1,
314
+ "cacheRead": 0,
315
+ "cacheWrite": 0
316
+ }
317
+ },
318
+ {
319
+ "id": "tngtech/DeepSeek-TNG-R1T2-Chimera",
320
+ "name": "tngtech/DeepSeek-TNG-R1T2-Chimera",
321
+ "reasoning": true,
322
+ "input": ["text"],
323
+ "contextWindow": 163840,
324
+ "maxTokens": 163840,
325
+ "cost": {
326
+ "input": 0.25,
327
+ "output": 0.85,
328
+ "cacheRead": 0,
329
+ "cacheWrite": 0
330
+ }
331
+ },
332
+ {
333
+ "id": "Qwen/Qwen3-Coder-Next-TEE",
334
+ "name": "Qwen/Qwen3-Coder-Next-TEE",
335
+ "reasoning": true,
336
+ "input": ["text"],
337
+ "contextWindow": 262144,
338
+ "maxTokens": 65536,
339
+ "cost": {
340
+ "input": 0.12,
341
+ "output": 0.75,
342
+ "cacheRead": 0,
343
+ "cacheWrite": 0
344
+ }
345
+ },
346
+ {
347
+ "id": "NousResearch/Hermes-4-405B-FP8-TEE",
348
+ "name": "NousResearch/Hermes-4-405B-FP8-TEE",
349
+ "reasoning": true,
350
+ "input": ["text"],
351
+ "contextWindow": 131072,
352
+ "maxTokens": 65536,
353
+ "cost": {
354
+ "input": 0.3,
355
+ "output": 1.2,
356
+ "cacheRead": 0,
357
+ "cacheWrite": 0
358
+ }
359
+ },
360
+ {
361
+ "id": "deepseek-ai/DeepSeek-V3",
362
+ "name": "deepseek-ai/DeepSeek-V3",
363
+ "reasoning": false,
364
+ "input": ["text"],
365
+ "contextWindow": 163840,
366
+ "maxTokens": 163840,
367
+ "cost": {
368
+ "input": 0.3,
369
+ "output": 1.2,
370
+ "cacheRead": 0,
371
+ "cacheWrite": 0
372
+ }
373
+ },
374
+ {
375
+ "id": "openai/gpt-oss-20b",
376
+ "name": "openai/gpt-oss-20b",
377
+ "reasoning": true,
378
+ "input": ["text"],
379
+ "contextWindow": 131072,
380
+ "maxTokens": 131072,
381
+ "cost": {
382
+ "input": 0.04,
383
+ "output": 0.15,
384
+ "cacheRead": 0,
385
+ "cacheWrite": 0
386
+ }
387
+ },
388
+ {
389
+ "id": "unsloth/Llama-3.2-3B-Instruct",
390
+ "name": "unsloth/Llama-3.2-3B-Instruct",
391
+ "reasoning": false,
392
+ "input": ["text"],
393
+ "contextWindow": 128000,
394
+ "maxTokens": 4096,
395
+ "cost": {
396
+ "input": 0.01,
397
+ "output": 0.01,
398
+ "cacheRead": 0,
399
+ "cacheWrite": 0
400
+ }
401
+ },
402
+ {
403
+ "id": "unsloth/Mistral-Small-24B-Instruct-2501",
404
+ "name": "unsloth/Mistral-Small-24B-Instruct-2501",
405
+ "reasoning": false,
406
+ "input": ["text", "image"],
407
+ "contextWindow": 32768,
408
+ "maxTokens": 32768,
409
+ "cost": {
410
+ "input": 0.07,
411
+ "output": 0.3,
412
+ "cacheRead": 0,
413
+ "cacheWrite": 0
414
+ }
415
+ },
416
+ {
417
+ "id": "zai-org/GLM-4.7-FP8",
418
+ "name": "zai-org/GLM-4.7-FP8",
419
+ "reasoning": true,
420
+ "input": ["text"],
421
+ "contextWindow": 202752,
422
+ "maxTokens": 65535,
423
+ "cost": {
424
+ "input": 0.3,
425
+ "output": 1.2,
426
+ "cacheRead": 0,
427
+ "cacheWrite": 0
428
+ }
429
+ },
430
+ {
431
+ "id": "zai-org/GLM-4.6-TEE",
432
+ "name": "zai-org/GLM-4.6-TEE",
433
+ "reasoning": true,
434
+ "input": ["text"],
435
+ "contextWindow": 202752,
436
+ "maxTokens": 65536,
437
+ "cost": {
438
+ "input": 0.4,
439
+ "output": 1.7,
440
+ "cacheRead": 0,
441
+ "cacheWrite": 0
442
+ }
443
+ },
444
+ {
445
+ "id": "Qwen/Qwen3.5-397B-A17B-TEE",
446
+ "name": "Qwen/Qwen3.5-397B-A17B-TEE",
447
+ "reasoning": true,
448
+ "input": ["text", "image"],
449
+ "contextWindow": 262144,
450
+ "maxTokens": 65536,
451
+ "cost": {
452
+ "input": 0.55,
453
+ "output": 3.5,
454
+ "cacheRead": 0,
455
+ "cacheWrite": 0
456
+ }
457
+ },
458
+ {
459
+ "id": "Qwen/Qwen2.5-72B-Instruct",
460
+ "name": "Qwen/Qwen2.5-72B-Instruct",
461
+ "reasoning": false,
462
+ "input": ["text"],
463
+ "contextWindow": 32768,
464
+ "maxTokens": 32768,
465
+ "cost": {
466
+ "input": 0.3,
467
+ "output": 1.2,
468
+ "cacheRead": 0,
469
+ "cacheWrite": 0
470
+ }
471
+ },
472
+ {
473
+ "id": "NousResearch/DeepHermes-3-Mistral-24B-Preview",
474
+ "name": "NousResearch/DeepHermes-3-Mistral-24B-Preview",
475
+ "reasoning": false,
476
+ "input": ["text"],
477
+ "contextWindow": 32768,
478
+ "maxTokens": 32768,
479
+ "cost": {
480
+ "input": 0.02,
481
+ "output": 0.1,
482
+ "cacheRead": 0,
483
+ "cacheWrite": 0
484
+ }
485
+ },
486
+ {
487
+ "id": "Qwen/Qwen3-Next-80B-A3B-Instruct",
488
+ "name": "Qwen/Qwen3-Next-80B-A3B-Instruct",
489
+ "reasoning": false,
490
+ "input": ["text"],
491
+ "contextWindow": 262144,
492
+ "maxTokens": 262144,
493
+ "cost": {
494
+ "input": 0.1,
495
+ "output": 0.8,
496
+ "cacheRead": 0,
497
+ "cacheWrite": 0
498
+ }
499
+ },
500
+ {
501
+ "id": "zai-org/GLM-4.6-FP8",
502
+ "name": "zai-org/GLM-4.6-FP8",
503
+ "reasoning": true,
504
+ "input": ["text"],
505
+ "contextWindow": 202752,
506
+ "maxTokens": 65535,
507
+ "cost": {
508
+ "input": 0.3,
509
+ "output": 1.2,
510
+ "cacheRead": 0,
511
+ "cacheWrite": 0
512
+ }
513
+ },
514
+ {
515
+ "id": "Qwen/Qwen3-235B-A22B-Thinking-2507",
516
+ "name": "Qwen/Qwen3-235B-A22B-Thinking-2507",
517
+ "reasoning": true,
518
+ "input": ["text"],
519
+ "contextWindow": 262144,
520
+ "maxTokens": 262144,
521
+ "cost": {
522
+ "input": 0.11,
523
+ "output": 0.6,
524
+ "cacheRead": 0,
525
+ "cacheWrite": 0
526
+ }
527
+ },
528
+ {
529
+ "id": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
530
+ "name": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
531
+ "reasoning": true,
532
+ "input": ["text"],
533
+ "contextWindow": 131072,
534
+ "maxTokens": 131072,
535
+ "cost": {
536
+ "input": 0.03,
537
+ "output": 0.11,
538
+ "cacheRead": 0,
539
+ "cacheWrite": 0
540
+ }
541
+ },
542
+ {
543
+ "id": "tngtech/R1T2-Chimera-Speed",
544
+ "name": "tngtech/R1T2-Chimera-Speed",
545
+ "reasoning": true,
546
+ "input": ["text"],
547
+ "contextWindow": 131072,
548
+ "maxTokens": 65536,
549
+ "cost": {
550
+ "input": 0.22,
551
+ "output": 0.6,
552
+ "cacheRead": 0,
553
+ "cacheWrite": 0
554
+ }
555
+ },
556
+ {
557
+ "id": "zai-org/GLM-4.6V",
558
+ "name": "zai-org/GLM-4.6V",
559
+ "reasoning": true,
560
+ "input": ["text", "image"],
561
+ "contextWindow": 131072,
562
+ "maxTokens": 65536,
563
+ "cost": {
564
+ "input": 0.3,
565
+ "output": 0.9,
566
+ "cacheRead": 0,
567
+ "cacheWrite": 0
568
+ }
569
+ },
570
+ {
571
+ "id": "Qwen/Qwen2.5-VL-32B-Instruct",
572
+ "name": "Qwen/Qwen2.5-VL-32B-Instruct",
573
+ "reasoning": false,
574
+ "input": ["text", "image"],
575
+ "mediaInput": {
576
+ "image": { "maxPixels": 12845056, "preferredSidePx": 2048, "tokenMode": "provider" }
577
+ },
578
+ "contextWindow": 16384,
579
+ "maxTokens": 16384,
580
+ "cost": {
581
+ "input": 0.05,
582
+ "output": 0.22,
583
+ "cacheRead": 0,
584
+ "cacheWrite": 0
585
+ }
586
+ },
587
+ {
588
+ "id": "Qwen/Qwen3-VL-235B-A22B-Instruct",
589
+ "name": "Qwen/Qwen3-VL-235B-A22B-Instruct",
590
+ "reasoning": false,
591
+ "input": ["text", "image"],
592
+ "mediaInput": {
593
+ "image": { "maxPixels": 12845056, "preferredSidePx": 2048, "tokenMode": "provider" }
594
+ },
595
+ "contextWindow": 262144,
596
+ "maxTokens": 262144,
597
+ "cost": {
598
+ "input": 0.3,
599
+ "output": 1.2,
600
+ "cacheRead": 0,
601
+ "cacheWrite": 0
602
+ }
603
+ },
604
+ {
605
+ "id": "Qwen/Qwen3-14B",
606
+ "name": "Qwen/Qwen3-14B",
607
+ "reasoning": true,
608
+ "input": ["text"],
609
+ "contextWindow": 40960,
610
+ "maxTokens": 40960,
611
+ "cost": {
612
+ "input": 0.05,
613
+ "output": 0.22,
614
+ "cacheRead": 0,
615
+ "cacheWrite": 0
616
+ }
617
+ },
618
+ {
619
+ "id": "Qwen/Qwen2.5-Coder-32B-Instruct",
620
+ "name": "Qwen/Qwen2.5-Coder-32B-Instruct",
621
+ "reasoning": false,
622
+ "input": ["text"],
623
+ "contextWindow": 32768,
624
+ "maxTokens": 32768,
625
+ "cost": {
626
+ "input": 0.03,
627
+ "output": 0.11,
628
+ "cacheRead": 0,
629
+ "cacheWrite": 0
630
+ }
631
+ },
632
+ {
633
+ "id": "Qwen/Qwen3-30B-A3B",
634
+ "name": "Qwen/Qwen3-30B-A3B",
635
+ "reasoning": true,
636
+ "input": ["text"],
637
+ "contextWindow": 40960,
638
+ "maxTokens": 40960,
639
+ "cost": {
640
+ "input": 0.06,
641
+ "output": 0.22,
642
+ "cacheRead": 0,
643
+ "cacheWrite": 0
644
+ }
645
+ },
646
+ {
647
+ "id": "unsloth/gemma-3-12b-it",
648
+ "name": "unsloth/gemma-3-12b-it",
649
+ "reasoning": false,
650
+ "input": ["text", "image"],
651
+ "contextWindow": 131072,
652
+ "maxTokens": 131072,
653
+ "cost": {
654
+ "input": 0.03,
655
+ "output": 0.1,
656
+ "cacheRead": 0,
657
+ "cacheWrite": 0
658
+ }
659
+ },
660
+ {
661
+ "id": "unsloth/Llama-3.2-1B-Instruct",
662
+ "name": "unsloth/Llama-3.2-1B-Instruct",
663
+ "reasoning": false,
664
+ "input": ["text"],
665
+ "contextWindow": 128000,
666
+ "maxTokens": 4096,
667
+ "cost": {
668
+ "input": 0.01,
669
+ "output": 0.01,
670
+ "cacheRead": 0,
671
+ "cacheWrite": 0
672
+ }
673
+ },
674
+ {
675
+ "id": "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16-TEE",
676
+ "name": "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16-TEE",
677
+ "reasoning": true,
678
+ "input": ["text"],
679
+ "contextWindow": 128000,
680
+ "maxTokens": 4096,
681
+ "cost": {
682
+ "input": 0.3,
683
+ "output": 1.2,
684
+ "cacheRead": 0,
685
+ "cacheWrite": 0
686
+ }
687
+ },
688
+ {
689
+ "id": "NousResearch/Hermes-4-14B",
690
+ "name": "NousResearch/Hermes-4-14B",
691
+ "reasoning": true,
692
+ "input": ["text"],
693
+ "contextWindow": 40960,
694
+ "maxTokens": 40960,
695
+ "cost": {
696
+ "input": 0.01,
697
+ "output": 0.05,
698
+ "cacheRead": 0,
699
+ "cacheWrite": 0
700
+ }
701
+ },
702
+ {
703
+ "id": "Qwen/Qwen3Guard-Gen-0.6B",
704
+ "name": "Qwen/Qwen3Guard-Gen-0.6B",
705
+ "reasoning": false,
706
+ "input": ["text"],
707
+ "contextWindow": 128000,
708
+ "maxTokens": 4096,
709
+ "cost": {
710
+ "input": 0.01,
711
+ "output": 0.01,
712
+ "cacheRead": 0,
713
+ "cacheWrite": 0
714
+ }
715
+ },
716
+ {
717
+ "id": "rednote-hilab/dots.ocr",
718
+ "name": "rednote-hilab/dots.ocr",
719
+ "reasoning": false,
720
+ "input": ["text", "image"],
721
+ "contextWindow": 131072,
722
+ "maxTokens": 131072,
723
+ "cost": {
724
+ "input": 0.01,
725
+ "output": 0.01,
726
+ "cacheRead": 0,
727
+ "cacheWrite": 0
728
+ }
729
+ }
730
+ ]
731
+ }
732
+ },
733
+ "discovery": {
734
+ "chutes": "refreshable"
735
+ }
736
+ }
737
+ }