neoctl 0.1.5 → 0.1.7
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 +378 -357
- package/dist/agents/local-agent-task.js +2 -1
- package/dist/agents/local-agent-task.js.map +1 -1
- package/dist/agents/smoke-agents.js +21 -4
- package/dist/agents/smoke-agents.js.map +1 -1
- package/dist/core/query-engine.d.ts +20 -1
- package/dist/core/query-engine.js +86 -12
- package/dist/core/query-engine.js.map +1 -1
- package/dist/core/query.d.ts +2 -1
- package/dist/core/query.js +36 -1
- package/dist/core/query.js.map +1 -1
- package/dist/core/smoke-core-loop.js +53 -6
- package/dist/core/smoke-core-loop.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/model/communication-logger.d.ts +2 -1
- package/dist/model/communication-logger.js +3 -0
- package/dist/model/communication-logger.js.map +1 -1
- package/dist/model/config.d.ts +10 -4
- package/dist/model/config.js +61 -12
- package/dist/model/config.js.map +1 -1
- package/dist/model/deepseek-adapter.d.ts +29 -0
- package/dist/model/deepseek-adapter.js +108 -0
- package/dist/model/deepseek-adapter.js.map +1 -0
- package/dist/model/env.js +35 -19
- package/dist/model/env.js.map +1 -1
- package/dist/model/kimi-adapter.d.ts +29 -0
- package/dist/model/kimi-adapter.js +108 -0
- package/dist/model/kimi-adapter.js.map +1 -0
- package/dist/model/model-metadata.json +726 -677
- package/dist/model/openai-adapter.d.ts +1 -1
- package/dist/model/openai-chat-mapper.d.ts +4 -1
- package/dist/model/openai-chat-mapper.js +30 -8
- package/dist/model/openai-chat-mapper.js.map +1 -1
- package/dist/model/openai-mappers.d.ts +5 -2
- package/dist/model/openai-mappers.js +17 -4
- package/dist/model/openai-mappers.js.map +1 -1
- package/dist/model/openai-responses-mapper.d.ts +1 -1
- package/dist/model/openai-responses-mapper.js +2 -1
- package/dist/model/openai-responses-mapper.js.map +1 -1
- package/dist/model/provider-factory.js +32 -0
- package/dist/model/provider-factory.js.map +1 -1
- package/dist/model/smoke-deepseek-mapper.d.ts +1 -0
- package/dist/model/smoke-deepseek-mapper.js +65 -0
- package/dist/model/smoke-deepseek-mapper.js.map +1 -0
- package/dist/model/smoke-openai.js +1 -1
- package/dist/model/smoke-openai.js.map +1 -1
- package/dist/model/smoke-responses-mapper.js +6 -6
- package/dist/model/smoke-responses-mapper.js.map +1 -1
- package/dist/open-directory.d.ts +1 -0
- package/dist/open-directory.js +26 -0
- package/dist/open-directory.js.map +1 -0
- package/dist/paths.d.ts +7 -0
- package/dist/paths.js +12 -0
- package/dist/paths.js.map +1 -0
- package/dist/repl/commands.d.ts +7 -0
- package/dist/repl/commands.js +9 -0
- package/dist/repl/commands.js.map +1 -1
- package/dist/repl/index.js +700 -60
- package/dist/repl/index.js.map +1 -1
- package/dist/repl/render.js +0 -2
- package/dist/repl/render.js.map +1 -1
- package/dist/repl/status-line.d.ts +0 -1
- package/dist/repl/status-line.js +27 -34
- package/dist/repl/status-line.js.map +1 -1
- package/dist/session/session-export.d.ts +33 -0
- package/dist/session/session-export.js +351 -0
- package/dist/session/session-export.js.map +1 -0
- package/dist/session/session-store.js +2 -2
- package/dist/session/session-store.js.map +1 -1
- package/dist/session/smoke-session.js +22 -1
- package/dist/session/smoke-session.js.map +1 -1
- package/dist/skills/smoke-skills.js +1 -1
- package/dist/tips.d.ts +10 -0
- package/dist/tips.js +168 -0
- package/dist/tips.js.map +1 -0
- package/dist/tools/builtins/search-providers.d.ts +15 -1
- package/dist/tools/builtins/search-providers.js +195 -1
- package/dist/tools/builtins/search-providers.js.map +1 -1
- package/dist/tools/builtins/search-tool.js +2 -2
- package/dist/tools/builtins/search-tool.js.map +1 -1
- package/dist/tools/smoke-tool-system.js +43 -9
- package/dist/tools/smoke-tool-system.js.map +1 -1
- package/dist/web/html.d.ts +1 -0
- package/dist/web/html.js +697 -0
- package/dist/web/html.js.map +1 -0
- package/dist/web/index.d.ts +2 -0
- package/dist/web/index.js +1465 -0
- package/dist/web/index.js.map +1 -0
- package/package.json +53 -49
|
@@ -1,677 +1,726 @@
|
|
|
1
|
-
{
|
|
2
|
-
"updatedAt": "2026-05-
|
|
3
|
-
"notes": [
|
|
4
|
-
"Static model metadata used for local REPL telemetry. Values are best-effort and should be refreshed when providers update model cards.",
|
|
5
|
-
"MODEL_CONTEXT_WINDOW_TOKENS or OPENAI_CONTEXT_WINDOW_TOKENS overrides contextWindowTokens at runtime.",
|
|
6
|
-
"modelIds are exact official model IDs/aliases from provider documentation; matching is direct and does not use regex.",
|
|
7
|
-
"imageInput indicates whether provider documentation lists image input / vision support for the model.",
|
|
8
|
-
"reasoningEfforts lists the exact reasoning.effort values the /model command may set; omitted/empty means no supported effort enum is configured for that model."
|
|
9
|
-
],
|
|
10
|
-
"sources": {
|
|
11
|
-
"openai-models": "https://platform.openai.com/docs/models",
|
|
12
|
-
"anthropic-models": "https://docs.anthropic.com/en/docs/about-claude/models/overview",
|
|
13
|
-
"anthropic-context-windows": "https://docs.anthropic.com/en/docs/build-with-claude/context-windows",
|
|
14
|
-
"gemini-models": "https://ai.google.dev/gemini-api/docs/models",
|
|
15
|
-
"deepseek-pricing": "https://api-docs.deepseek.com/quick_start/pricing/",
|
|
16
|
-
"deepseek-models": "https://api-docs.deepseek.com/quick_start/parameter_settings/",
|
|
17
|
-
"mistral-known-limitations": "https://docs.mistral.ai/resources/known-limitations",
|
|
18
|
-
"anthropic-vision": "https://docs.anthropic.com/en/docs/build-with-claude/vision",
|
|
19
|
-
"mistral-vision": "https://docs.mistral.ai/capabilities/vision",
|
|
20
|
-
"openai-reasoning": "https://developers.openai.com/api/docs/guides/reasoning",
|
|
21
|
-
"deepseek-thinking-mode": "https://api-docs.deepseek.com/guides/thinking_mode"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
"
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
"
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
"
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
"
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
"
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
"
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
"
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
"
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
"
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
"
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
"
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
"
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
"
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
"
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
"
|
|
350
|
-
"
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
"
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
"
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
"
|
|
362
|
-
"
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
"
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
"
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
"
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
"
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
"
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
"
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
"
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
"
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
"
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
"
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
"
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
"
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
"
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
"
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
"
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
"
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
"
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
"
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
"
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
"
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
"
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
"
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
"
|
|
530
|
-
"
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
"
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
"
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
"
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
"
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
"
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
"
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"
|
|
566
|
-
"
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
"
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
"
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
"
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
"
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
"
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
"
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
"
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
"
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
"
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
"
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
"
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
"
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
"
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
"
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
1
|
+
{
|
|
2
|
+
"updatedAt": "2026-05-10",
|
|
3
|
+
"notes": [
|
|
4
|
+
"Static model metadata used for local REPL telemetry. Values are best-effort and should be refreshed when providers update model cards.",
|
|
5
|
+
"MODEL_CONTEXT_WINDOW_TOKENS or OPENAI_CONTEXT_WINDOW_TOKENS overrides contextWindowTokens at runtime.",
|
|
6
|
+
"modelIds are exact official model IDs/aliases from provider documentation; matching is direct and does not use regex.",
|
|
7
|
+
"imageInput indicates whether provider documentation lists image input / vision support for the model.",
|
|
8
|
+
"reasoningEfforts lists the exact reasoning.effort values the /model command may set; omitted/empty means no supported effort enum is configured for that model."
|
|
9
|
+
],
|
|
10
|
+
"sources": {
|
|
11
|
+
"openai-models": "https://platform.openai.com/docs/models",
|
|
12
|
+
"anthropic-models": "https://docs.anthropic.com/en/docs/about-claude/models/overview",
|
|
13
|
+
"anthropic-context-windows": "https://docs.anthropic.com/en/docs/build-with-claude/context-windows",
|
|
14
|
+
"gemini-models": "https://ai.google.dev/gemini-api/docs/models",
|
|
15
|
+
"deepseek-pricing": "https://api-docs.deepseek.com/quick_start/pricing/",
|
|
16
|
+
"deepseek-models": "https://api-docs.deepseek.com/quick_start/parameter_settings/",
|
|
17
|
+
"mistral-known-limitations": "https://docs.mistral.ai/resources/known-limitations",
|
|
18
|
+
"anthropic-vision": "https://docs.anthropic.com/en/docs/build-with-claude/vision",
|
|
19
|
+
"mistral-vision": "https://docs.mistral.ai/capabilities/vision",
|
|
20
|
+
"openai-reasoning": "https://developers.openai.com/api/docs/guides/reasoning",
|
|
21
|
+
"deepseek-thinking-mode": "https://api-docs.deepseek.com/guides/thinking_mode",
|
|
22
|
+
"kimi-overview": "https://platform.kimi.com/docs/api/overview",
|
|
23
|
+
"kimi-chat": "https://platform.kimi.com/docs/api/chat",
|
|
24
|
+
"kimi-thinking": "https://platform.moonshot.ai/docs/guide/kimi-k2-5-quickstart"
|
|
25
|
+
},
|
|
26
|
+
"models": [
|
|
27
|
+
{
|
|
28
|
+
"id": "gpt-5.5",
|
|
29
|
+
"provider": "openai",
|
|
30
|
+
"modelIds": [
|
|
31
|
+
"gpt-5.5"
|
|
32
|
+
],
|
|
33
|
+
"contextWindowTokens": 1050000,
|
|
34
|
+
"maxOutputTokens": 128000,
|
|
35
|
+
"reasoning": true,
|
|
36
|
+
"imageInput": true,
|
|
37
|
+
"source": "openai-models",
|
|
38
|
+
"reasoningEfforts": [
|
|
39
|
+
"none",
|
|
40
|
+
"low",
|
|
41
|
+
"medium",
|
|
42
|
+
"high",
|
|
43
|
+
"xhigh"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "gpt-5.5-pro",
|
|
48
|
+
"provider": "openai",
|
|
49
|
+
"modelIds": [
|
|
50
|
+
"gpt-5.5-pro"
|
|
51
|
+
],
|
|
52
|
+
"contextWindowTokens": 1050000,
|
|
53
|
+
"maxOutputTokens": 128000,
|
|
54
|
+
"reasoning": true,
|
|
55
|
+
"imageInput": true,
|
|
56
|
+
"source": "openai-models",
|
|
57
|
+
"reasoningEfforts": [
|
|
58
|
+
"none",
|
|
59
|
+
"low",
|
|
60
|
+
"medium",
|
|
61
|
+
"high",
|
|
62
|
+
"xhigh"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "gpt-5.4",
|
|
67
|
+
"provider": "openai",
|
|
68
|
+
"modelIds": [
|
|
69
|
+
"gpt-5.4"
|
|
70
|
+
],
|
|
71
|
+
"contextWindowTokens": 1050000,
|
|
72
|
+
"maxOutputTokens": 128000,
|
|
73
|
+
"reasoning": true,
|
|
74
|
+
"imageInput": true,
|
|
75
|
+
"source": "openai-models",
|
|
76
|
+
"reasoningEfforts": [
|
|
77
|
+
"none",
|
|
78
|
+
"low",
|
|
79
|
+
"medium",
|
|
80
|
+
"high",
|
|
81
|
+
"xhigh"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "gpt-5.4-mini",
|
|
86
|
+
"provider": "openai",
|
|
87
|
+
"modelIds": [
|
|
88
|
+
"gpt-5.4-mini"
|
|
89
|
+
],
|
|
90
|
+
"contextWindowTokens": 400000,
|
|
91
|
+
"maxOutputTokens": 128000,
|
|
92
|
+
"reasoning": true,
|
|
93
|
+
"imageInput": true,
|
|
94
|
+
"source": "openai-models",
|
|
95
|
+
"reasoningEfforts": [
|
|
96
|
+
"none",
|
|
97
|
+
"low",
|
|
98
|
+
"medium",
|
|
99
|
+
"high",
|
|
100
|
+
"xhigh"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "gpt-5.4-nano",
|
|
105
|
+
"provider": "openai",
|
|
106
|
+
"modelIds": [
|
|
107
|
+
"gpt-5.4-nano"
|
|
108
|
+
],
|
|
109
|
+
"contextWindowTokens": 400000,
|
|
110
|
+
"maxOutputTokens": 128000,
|
|
111
|
+
"reasoning": true,
|
|
112
|
+
"imageInput": true,
|
|
113
|
+
"source": "openai-models",
|
|
114
|
+
"reasoningEfforts": [
|
|
115
|
+
"none",
|
|
116
|
+
"low",
|
|
117
|
+
"medium",
|
|
118
|
+
"high",
|
|
119
|
+
"xhigh"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "gpt-5.2",
|
|
124
|
+
"provider": "openai",
|
|
125
|
+
"modelIds": [
|
|
126
|
+
"gpt-5.2"
|
|
127
|
+
],
|
|
128
|
+
"contextWindowTokens": 400000,
|
|
129
|
+
"maxOutputTokens": 128000,
|
|
130
|
+
"knowledgeCutoff": "2025-08-31",
|
|
131
|
+
"reasoning": true,
|
|
132
|
+
"imageInput": true,
|
|
133
|
+
"source": "openai-models",
|
|
134
|
+
"reasoningEfforts": [
|
|
135
|
+
"none",
|
|
136
|
+
"low",
|
|
137
|
+
"medium",
|
|
138
|
+
"high",
|
|
139
|
+
"xhigh"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "gpt-5.2-codex",
|
|
144
|
+
"provider": "openai",
|
|
145
|
+
"modelIds": [
|
|
146
|
+
"gpt-5.2-codex"
|
|
147
|
+
],
|
|
148
|
+
"contextWindowTokens": 400000,
|
|
149
|
+
"maxOutputTokens": 128000,
|
|
150
|
+
"knowledgeCutoff": "2025-08-31",
|
|
151
|
+
"reasoning": true,
|
|
152
|
+
"imageInput": true,
|
|
153
|
+
"source": "openai-models",
|
|
154
|
+
"reasoningEfforts": [
|
|
155
|
+
"low",
|
|
156
|
+
"medium",
|
|
157
|
+
"high",
|
|
158
|
+
"xhigh"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "gpt-5.2-pro",
|
|
163
|
+
"provider": "openai",
|
|
164
|
+
"modelIds": [
|
|
165
|
+
"gpt-5.2-pro"
|
|
166
|
+
],
|
|
167
|
+
"contextWindowTokens": 400000,
|
|
168
|
+
"maxOutputTokens": 128000,
|
|
169
|
+
"reasoning": true,
|
|
170
|
+
"imageInput": true,
|
|
171
|
+
"source": "openai-models",
|
|
172
|
+
"reasoningEfforts": [
|
|
173
|
+
"none",
|
|
174
|
+
"low",
|
|
175
|
+
"medium",
|
|
176
|
+
"high",
|
|
177
|
+
"xhigh"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "gpt-5.1",
|
|
182
|
+
"provider": "openai",
|
|
183
|
+
"modelIds": [
|
|
184
|
+
"gpt-5.1"
|
|
185
|
+
],
|
|
186
|
+
"contextWindowTokens": 400000,
|
|
187
|
+
"maxOutputTokens": 128000,
|
|
188
|
+
"knowledgeCutoff": "2024-09-30",
|
|
189
|
+
"reasoning": true,
|
|
190
|
+
"imageInput": true,
|
|
191
|
+
"source": "openai-models",
|
|
192
|
+
"reasoningEfforts": [
|
|
193
|
+
"none",
|
|
194
|
+
"low",
|
|
195
|
+
"medium",
|
|
196
|
+
"high"
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": "gpt-5.1-codex",
|
|
201
|
+
"provider": "openai",
|
|
202
|
+
"modelIds": [
|
|
203
|
+
"gpt-5.1-codex"
|
|
204
|
+
],
|
|
205
|
+
"contextWindowTokens": 400000,
|
|
206
|
+
"maxOutputTokens": 128000,
|
|
207
|
+
"knowledgeCutoff": "2024-09-30",
|
|
208
|
+
"reasoning": true,
|
|
209
|
+
"imageInput": true,
|
|
210
|
+
"source": "openai-models",
|
|
211
|
+
"reasoningEfforts": [
|
|
212
|
+
"low",
|
|
213
|
+
"medium",
|
|
214
|
+
"high"
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "gpt-5.1-codex-max",
|
|
219
|
+
"provider": "openai",
|
|
220
|
+
"modelIds": [
|
|
221
|
+
"gpt-5.1-codex-max"
|
|
222
|
+
],
|
|
223
|
+
"contextWindowTokens": 400000,
|
|
224
|
+
"maxOutputTokens": 128000,
|
|
225
|
+
"knowledgeCutoff": "2024-09-30",
|
|
226
|
+
"reasoning": true,
|
|
227
|
+
"imageInput": true,
|
|
228
|
+
"source": "openai-models",
|
|
229
|
+
"reasoningEfforts": [
|
|
230
|
+
"low",
|
|
231
|
+
"medium",
|
|
232
|
+
"high"
|
|
233
|
+
]
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "gpt-5.1-codex-mini",
|
|
237
|
+
"provider": "openai",
|
|
238
|
+
"modelIds": [
|
|
239
|
+
"gpt-5.1-codex-mini"
|
|
240
|
+
],
|
|
241
|
+
"contextWindowTokens": 400000,
|
|
242
|
+
"maxOutputTokens": 128000,
|
|
243
|
+
"knowledgeCutoff": "2024-09-30",
|
|
244
|
+
"reasoning": true,
|
|
245
|
+
"imageInput": true,
|
|
246
|
+
"source": "openai-models",
|
|
247
|
+
"reasoningEfforts": [
|
|
248
|
+
"low",
|
|
249
|
+
"medium",
|
|
250
|
+
"high"
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "gpt-5",
|
|
255
|
+
"provider": "openai",
|
|
256
|
+
"modelIds": [
|
|
257
|
+
"gpt-5"
|
|
258
|
+
],
|
|
259
|
+
"contextWindowTokens": 400000,
|
|
260
|
+
"maxOutputTokens": 128000,
|
|
261
|
+
"reasoning": true,
|
|
262
|
+
"imageInput": true,
|
|
263
|
+
"source": "openai-models",
|
|
264
|
+
"reasoningEfforts": [
|
|
265
|
+
"minimal",
|
|
266
|
+
"low",
|
|
267
|
+
"medium",
|
|
268
|
+
"high"
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"id": "gpt-5-codex",
|
|
273
|
+
"provider": "openai",
|
|
274
|
+
"modelIds": [
|
|
275
|
+
"gpt-5-codex"
|
|
276
|
+
],
|
|
277
|
+
"contextWindowTokens": 400000,
|
|
278
|
+
"maxOutputTokens": 128000,
|
|
279
|
+
"reasoning": true,
|
|
280
|
+
"imageInput": true,
|
|
281
|
+
"source": "openai-models",
|
|
282
|
+
"reasoningEfforts": [
|
|
283
|
+
"minimal",
|
|
284
|
+
"low",
|
|
285
|
+
"medium",
|
|
286
|
+
"high"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "gpt-5-mini",
|
|
291
|
+
"provider": "openai",
|
|
292
|
+
"modelIds": [
|
|
293
|
+
"gpt-5-mini"
|
|
294
|
+
],
|
|
295
|
+
"contextWindowTokens": 400000,
|
|
296
|
+
"maxOutputTokens": 128000,
|
|
297
|
+
"reasoning": true,
|
|
298
|
+
"imageInput": true,
|
|
299
|
+
"source": "openai-models",
|
|
300
|
+
"reasoningEfforts": [
|
|
301
|
+
"minimal",
|
|
302
|
+
"low",
|
|
303
|
+
"medium",
|
|
304
|
+
"high"
|
|
305
|
+
]
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "gpt-5-nano",
|
|
309
|
+
"provider": "openai",
|
|
310
|
+
"modelIds": [
|
|
311
|
+
"gpt-5-nano"
|
|
312
|
+
],
|
|
313
|
+
"contextWindowTokens": 400000,
|
|
314
|
+
"maxOutputTokens": 128000,
|
|
315
|
+
"reasoning": true,
|
|
316
|
+
"imageInput": true,
|
|
317
|
+
"source": "openai-models",
|
|
318
|
+
"reasoningEfforts": [
|
|
319
|
+
"minimal",
|
|
320
|
+
"low",
|
|
321
|
+
"medium",
|
|
322
|
+
"high"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "gpt-5-pro",
|
|
327
|
+
"provider": "openai",
|
|
328
|
+
"modelIds": [
|
|
329
|
+
"gpt-5-pro"
|
|
330
|
+
],
|
|
331
|
+
"contextWindowTokens": 400000,
|
|
332
|
+
"maxOutputTokens": 272000,
|
|
333
|
+
"reasoning": true,
|
|
334
|
+
"imageInput": true,
|
|
335
|
+
"source": "openai-models",
|
|
336
|
+
"reasoningEfforts": [
|
|
337
|
+
"minimal",
|
|
338
|
+
"low",
|
|
339
|
+
"medium",
|
|
340
|
+
"high"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"id": "gpt-4.1",
|
|
345
|
+
"provider": "openai",
|
|
346
|
+
"modelIds": [
|
|
347
|
+
"gpt-4.1"
|
|
348
|
+
],
|
|
349
|
+
"contextWindowTokens": 1047576,
|
|
350
|
+
"maxOutputTokens": 32768,
|
|
351
|
+
"reasoning": false,
|
|
352
|
+
"imageInput": true,
|
|
353
|
+
"source": "openai-models"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "gpt-4.1-mini",
|
|
357
|
+
"provider": "openai",
|
|
358
|
+
"modelIds": [
|
|
359
|
+
"gpt-4.1-mini"
|
|
360
|
+
],
|
|
361
|
+
"contextWindowTokens": 1047576,
|
|
362
|
+
"maxOutputTokens": 32768,
|
|
363
|
+
"reasoning": false,
|
|
364
|
+
"imageInput": true,
|
|
365
|
+
"source": "openai-models"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"id": "gpt-4.1-nano",
|
|
369
|
+
"provider": "openai",
|
|
370
|
+
"modelIds": [
|
|
371
|
+
"gpt-4.1-nano"
|
|
372
|
+
],
|
|
373
|
+
"contextWindowTokens": 1047576,
|
|
374
|
+
"maxOutputTokens": 32768,
|
|
375
|
+
"reasoning": false,
|
|
376
|
+
"imageInput": true,
|
|
377
|
+
"source": "openai-models"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": "gpt-4o",
|
|
381
|
+
"provider": "openai",
|
|
382
|
+
"modelIds": [
|
|
383
|
+
"gpt-4o"
|
|
384
|
+
],
|
|
385
|
+
"contextWindowTokens": 128000,
|
|
386
|
+
"maxOutputTokens": 16384,
|
|
387
|
+
"reasoning": false,
|
|
388
|
+
"imageInput": true,
|
|
389
|
+
"source": "openai-models"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "gpt-4o-mini",
|
|
393
|
+
"provider": "openai",
|
|
394
|
+
"modelIds": [
|
|
395
|
+
"gpt-4o-mini"
|
|
396
|
+
],
|
|
397
|
+
"contextWindowTokens": 128000,
|
|
398
|
+
"maxOutputTokens": 16384,
|
|
399
|
+
"reasoning": false,
|
|
400
|
+
"imageInput": true,
|
|
401
|
+
"source": "openai-models"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"id": "chatgpt-4o-latest",
|
|
405
|
+
"provider": "openai",
|
|
406
|
+
"modelIds": [
|
|
407
|
+
"chatgpt-4o-latest"
|
|
408
|
+
],
|
|
409
|
+
"contextWindowTokens": 128000,
|
|
410
|
+
"maxOutputTokens": 16384,
|
|
411
|
+
"reasoning": false,
|
|
412
|
+
"imageInput": true,
|
|
413
|
+
"source": "openai-models"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "gpt-4o-search-preview",
|
|
417
|
+
"provider": "openai",
|
|
418
|
+
"modelIds": [
|
|
419
|
+
"gpt-4o-search-preview"
|
|
420
|
+
],
|
|
421
|
+
"contextWindowTokens": 128000,
|
|
422
|
+
"maxOutputTokens": 16384,
|
|
423
|
+
"reasoning": false,
|
|
424
|
+
"imageInput": true,
|
|
425
|
+
"source": "openai-models"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"id": "gpt-4o-mini-search-preview",
|
|
429
|
+
"provider": "openai",
|
|
430
|
+
"modelIds": [
|
|
431
|
+
"gpt-4o-mini-search-preview"
|
|
432
|
+
],
|
|
433
|
+
"contextWindowTokens": 128000,
|
|
434
|
+
"maxOutputTokens": 16384,
|
|
435
|
+
"reasoning": false,
|
|
436
|
+
"imageInput": true,
|
|
437
|
+
"source": "openai-models"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"id": "o4-mini",
|
|
441
|
+
"provider": "openai",
|
|
442
|
+
"modelIds": [
|
|
443
|
+
"o4-mini"
|
|
444
|
+
],
|
|
445
|
+
"contextWindowTokens": 200000,
|
|
446
|
+
"maxOutputTokens": 100000,
|
|
447
|
+
"reasoning": true,
|
|
448
|
+
"imageInput": true,
|
|
449
|
+
"source": "openai-models",
|
|
450
|
+
"reasoningEfforts": [
|
|
451
|
+
"low",
|
|
452
|
+
"medium",
|
|
453
|
+
"high"
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"id": "o4-mini-deep-research",
|
|
458
|
+
"provider": "openai",
|
|
459
|
+
"modelIds": [
|
|
460
|
+
"o4-mini-deep-research"
|
|
461
|
+
],
|
|
462
|
+
"contextWindowTokens": 200000,
|
|
463
|
+
"maxOutputTokens": 100000,
|
|
464
|
+
"reasoning": true,
|
|
465
|
+
"imageInput": true,
|
|
466
|
+
"source": "openai-models",
|
|
467
|
+
"reasoningEfforts": [
|
|
468
|
+
"low",
|
|
469
|
+
"medium",
|
|
470
|
+
"high"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"id": "gpt-4",
|
|
475
|
+
"provider": "openai",
|
|
476
|
+
"modelIds": [
|
|
477
|
+
"gpt-4"
|
|
478
|
+
],
|
|
479
|
+
"contextWindowTokens": 8192,
|
|
480
|
+
"maxOutputTokens": 8192,
|
|
481
|
+
"reasoning": false,
|
|
482
|
+
"imageInput": false,
|
|
483
|
+
"source": "openai-models"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"id": "claude-opus-4-7",
|
|
487
|
+
"provider": "anthropic",
|
|
488
|
+
"modelIds": [
|
|
489
|
+
"claude-opus-4-7"
|
|
490
|
+
],
|
|
491
|
+
"contextWindowTokens": 1000000,
|
|
492
|
+
"maxOutputTokens": 128000,
|
|
493
|
+
"reasoning": true,
|
|
494
|
+
"imageInput": true,
|
|
495
|
+
"source": "anthropic-models"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"id": "claude-sonnet-4-6",
|
|
499
|
+
"provider": "anthropic",
|
|
500
|
+
"modelIds": [
|
|
501
|
+
"claude-sonnet-4-6"
|
|
502
|
+
],
|
|
503
|
+
"contextWindowTokens": 1000000,
|
|
504
|
+
"maxOutputTokens": 64000,
|
|
505
|
+
"reasoning": true,
|
|
506
|
+
"imageInput": true,
|
|
507
|
+
"source": "anthropic-models"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"id": "claude-haiku-4-5",
|
|
511
|
+
"provider": "anthropic",
|
|
512
|
+
"modelIds": [
|
|
513
|
+
"claude-haiku-4-5",
|
|
514
|
+
"claude-haiku-4-5-20251001"
|
|
515
|
+
],
|
|
516
|
+
"contextWindowTokens": 200000,
|
|
517
|
+
"maxOutputTokens": 64000,
|
|
518
|
+
"reasoning": true,
|
|
519
|
+
"imageInput": true,
|
|
520
|
+
"source": "anthropic-models"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"id": "gemini-3.1-pro-preview",
|
|
524
|
+
"provider": "google",
|
|
525
|
+
"modelIds": [
|
|
526
|
+
"gemini-3.1-pro-preview",
|
|
527
|
+
"gemini-3.1-pro-preview-customtools"
|
|
528
|
+
],
|
|
529
|
+
"contextWindowTokens": 1048576,
|
|
530
|
+
"maxOutputTokens": 65536,
|
|
531
|
+
"reasoning": true,
|
|
532
|
+
"imageInput": true,
|
|
533
|
+
"source": "gemini-models"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"id": "gemini-3-flash-preview",
|
|
537
|
+
"provider": "google",
|
|
538
|
+
"modelIds": [
|
|
539
|
+
"gemini-3-flash-preview"
|
|
540
|
+
],
|
|
541
|
+
"contextWindowTokens": 1048576,
|
|
542
|
+
"maxOutputTokens": 65536,
|
|
543
|
+
"reasoning": true,
|
|
544
|
+
"imageInput": true,
|
|
545
|
+
"source": "gemini-models"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"id": "gemini-2.5-pro",
|
|
549
|
+
"provider": "google",
|
|
550
|
+
"modelIds": [
|
|
551
|
+
"gemini-2.5-pro"
|
|
552
|
+
],
|
|
553
|
+
"contextWindowTokens": 1048576,
|
|
554
|
+
"maxOutputTokens": 65536,
|
|
555
|
+
"reasoning": true,
|
|
556
|
+
"imageInput": true,
|
|
557
|
+
"source": "gemini-models"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"id": "gemini-2.5-flash",
|
|
561
|
+
"provider": "google",
|
|
562
|
+
"modelIds": [
|
|
563
|
+
"gemini-2.5-flash"
|
|
564
|
+
],
|
|
565
|
+
"contextWindowTokens": 1048576,
|
|
566
|
+
"maxOutputTokens": 65536,
|
|
567
|
+
"reasoning": true,
|
|
568
|
+
"imageInput": true,
|
|
569
|
+
"source": "gemini-models"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"id": "gemini-2.5-flash-lite",
|
|
573
|
+
"provider": "google",
|
|
574
|
+
"modelIds": [
|
|
575
|
+
"gemini-2.5-flash-lite"
|
|
576
|
+
],
|
|
577
|
+
"contextWindowTokens": 1048576,
|
|
578
|
+
"maxOutputTokens": 65536,
|
|
579
|
+
"reasoning": true,
|
|
580
|
+
"imageInput": true,
|
|
581
|
+
"source": "gemini-models"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"id": "gemini-2.0-flash",
|
|
585
|
+
"provider": "google",
|
|
586
|
+
"modelIds": [
|
|
587
|
+
"gemini-2.0-flash"
|
|
588
|
+
],
|
|
589
|
+
"contextWindowTokens": 1048576,
|
|
590
|
+
"maxOutputTokens": 8192,
|
|
591
|
+
"reasoning": true,
|
|
592
|
+
"imageInput": true,
|
|
593
|
+
"source": "gemini-models"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"id": "deepseek-v4-pro",
|
|
597
|
+
"provider": "deepseek",
|
|
598
|
+
"modelIds": [
|
|
599
|
+
"deepseek-v4-pro"
|
|
600
|
+
],
|
|
601
|
+
"contextWindowTokens": 1000000,
|
|
602
|
+
"maxOutputTokens": 384000,
|
|
603
|
+
"reasoning": true,
|
|
604
|
+
"imageInput": false,
|
|
605
|
+
"source": "deepseek-pricing",
|
|
606
|
+
"reasoningEfforts": [
|
|
607
|
+
"high",
|
|
608
|
+
"max"
|
|
609
|
+
]
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"id": "deepseek-v4-flash",
|
|
613
|
+
"provider": "deepseek",
|
|
614
|
+
"modelIds": [
|
|
615
|
+
"deepseek-v4-flash"
|
|
616
|
+
],
|
|
617
|
+
"contextWindowTokens": 1000000,
|
|
618
|
+
"maxOutputTokens": 384000,
|
|
619
|
+
"reasoning": true,
|
|
620
|
+
"imageInput": false,
|
|
621
|
+
"source": "deepseek-pricing",
|
|
622
|
+
"reasoningEfforts": [
|
|
623
|
+
"high",
|
|
624
|
+
"max"
|
|
625
|
+
]
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"id": "deepseek-chat",
|
|
629
|
+
"provider": "deepseek",
|
|
630
|
+
"modelIds": [
|
|
631
|
+
"deepseek-chat"
|
|
632
|
+
],
|
|
633
|
+
"contextWindowTokens": 1000000,
|
|
634
|
+
"maxOutputTokens": 384000,
|
|
635
|
+
"reasoning": false,
|
|
636
|
+
"imageInput": false,
|
|
637
|
+
"source": "deepseek-pricing",
|
|
638
|
+
"notes": "Compatibility alias for non-thinking mode of deepseek-v4-flash."
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"id": "deepseek-reasoner",
|
|
642
|
+
"provider": "deepseek",
|
|
643
|
+
"modelIds": [
|
|
644
|
+
"deepseek-reasoner"
|
|
645
|
+
],
|
|
646
|
+
"contextWindowTokens": 1000000,
|
|
647
|
+
"maxOutputTokens": 384000,
|
|
648
|
+
"reasoning": true,
|
|
649
|
+
"imageInput": false,
|
|
650
|
+
"source": "deepseek-pricing",
|
|
651
|
+
"notes": "Compatibility alias for thinking mode of deepseek-v4-flash.",
|
|
652
|
+
"reasoningEfforts": [
|
|
653
|
+
"high",
|
|
654
|
+
"max"
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"id": "kimi-k2.6",
|
|
659
|
+
"provider": "kimi",
|
|
660
|
+
"modelIds": [
|
|
661
|
+
"kimi-k2.6"
|
|
662
|
+
],
|
|
663
|
+
"contextWindowTokens": 256000,
|
|
664
|
+
"reasoning": true,
|
|
665
|
+
"imageInput": true,
|
|
666
|
+
"source": "kimi-chat",
|
|
667
|
+
"notes": "Default Kimi API Chat Completions model per Kimi quickstart; OpenAI-compatible endpoint https://api.moonshot.cn/v1/chat/completions."
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"id": "kimi-k2.5",
|
|
671
|
+
"provider": "kimi",
|
|
672
|
+
"modelIds": [
|
|
673
|
+
"kimi-k2.5"
|
|
674
|
+
],
|
|
675
|
+
"contextWindowTokens": 256000,
|
|
676
|
+
"reasoning": true,
|
|
677
|
+
"imageInput": true,
|
|
678
|
+
"source": "kimi-thinking"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "kimi-k2-thinking",
|
|
682
|
+
"provider": "kimi",
|
|
683
|
+
"modelIds": [
|
|
684
|
+
"kimi-k2-thinking"
|
|
685
|
+
],
|
|
686
|
+
"contextWindowTokens": 256000,
|
|
687
|
+
"reasoning": true,
|
|
688
|
+
"imageInput": false,
|
|
689
|
+
"source": "kimi-thinking",
|
|
690
|
+
"notes": "Thinking model responses may include reasoning_content, normalized to thinking events."
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"id": "kimi-k2-0905-preview",
|
|
694
|
+
"provider": "kimi",
|
|
695
|
+
"modelIds": [
|
|
696
|
+
"kimi-k2-0905-preview"
|
|
697
|
+
],
|
|
698
|
+
"contextWindowTokens": 256000,
|
|
699
|
+
"reasoning": false,
|
|
700
|
+
"imageInput": false,
|
|
701
|
+
"source": "kimi-chat"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"id": "mistral-large-latest",
|
|
705
|
+
"provider": "mistral",
|
|
706
|
+
"modelIds": [
|
|
707
|
+
"mistral-large-latest"
|
|
708
|
+
],
|
|
709
|
+
"contextWindowTokens": 131072,
|
|
710
|
+
"reasoning": false,
|
|
711
|
+
"imageInput": true,
|
|
712
|
+
"source": "mistral-known-limitations"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"id": "mistral-small-latest",
|
|
716
|
+
"provider": "mistral",
|
|
717
|
+
"modelIds": [
|
|
718
|
+
"mistral-small-latest"
|
|
719
|
+
],
|
|
720
|
+
"contextWindowTokens": 32768,
|
|
721
|
+
"reasoning": false,
|
|
722
|
+
"imageInput": true,
|
|
723
|
+
"source": "mistral-known-limitations"
|
|
724
|
+
}
|
|
725
|
+
]
|
|
726
|
+
}
|