@just-every/ensemble 0.2.246 → 0.2.247
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/dist/cjs/data/model_data.cjs +96 -152
- package/dist/cjs/data/model_data.d.ts.map +1 -1
- package/dist/cjs/data/model_data.js.map +1 -1
- package/dist/cjs/model_providers/codex.cjs +101 -8
- package/dist/cjs/model_providers/codex.d.ts.map +1 -1
- package/dist/cjs/model_providers/codex.js.map +1 -1
- package/dist/cjs/model_providers/model_provider.cjs +11 -0
- package/dist/cjs/model_providers/model_provider.d.ts.map +1 -1
- package/dist/cjs/model_providers/model_provider.js.map +1 -1
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/cjs/types/types.d.ts +2 -1
- package/dist/cjs/types/types.d.ts.map +1 -1
- package/dist/data/model_data.d.ts.map +1 -1
- package/dist/data/model_data.js +96 -152
- package/dist/data/model_data.js.map +1 -1
- package/dist/model_providers/codex.d.ts.map +1 -1
- package/dist/model_providers/codex.js +101 -8
- package/dist/model_providers/codex.js.map +1 -1
- package/dist/model_providers/model_provider.d.ts.map +1 -1
- package/dist/model_providers/model_provider.js +12 -1
- package/dist/model_providers/model_provider.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/types.d.ts +2 -1
- package/dist/types/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/data/model_data.js
CHANGED
|
@@ -399,7 +399,7 @@ export const MODEL_REGISTRY = [
|
|
|
399
399
|
id: 'meta-llama/llama-4-maverick',
|
|
400
400
|
provider: 'openrouter',
|
|
401
401
|
cost: {
|
|
402
|
-
input_per_million: 0.
|
|
402
|
+
input_per_million: 0.15,
|
|
403
403
|
output_per_million: 0.6,
|
|
404
404
|
},
|
|
405
405
|
features: {
|
|
@@ -409,6 +409,7 @@ export const MODEL_REGISTRY = [
|
|
|
409
409
|
tool_use: true,
|
|
410
410
|
streaming: true,
|
|
411
411
|
json_output: true,
|
|
412
|
+
max_output_tokens: 16384,
|
|
412
413
|
},
|
|
413
414
|
class: 'standard',
|
|
414
415
|
score: 78,
|
|
@@ -427,12 +428,13 @@ export const MODEL_REGISTRY = [
|
|
|
427
428
|
output_per_million: 0.3,
|
|
428
429
|
},
|
|
429
430
|
features: {
|
|
430
|
-
context_length:
|
|
431
|
-
input_modality: ['text'],
|
|
431
|
+
context_length: 10000000,
|
|
432
|
+
input_modality: ['text', 'image'],
|
|
432
433
|
output_modality: ['text'],
|
|
433
434
|
tool_use: true,
|
|
434
435
|
streaming: true,
|
|
435
436
|
json_output: true,
|
|
437
|
+
max_output_tokens: 16384,
|
|
436
438
|
},
|
|
437
439
|
class: 'mini',
|
|
438
440
|
score: 65,
|
|
@@ -442,16 +444,17 @@ export const MODEL_REGISTRY = [
|
|
|
442
444
|
id: 'qwen/qwen3-235b-a22b',
|
|
443
445
|
provider: 'openrouter',
|
|
444
446
|
cost: {
|
|
445
|
-
input_per_million: 0.
|
|
446
|
-
output_per_million:
|
|
447
|
+
input_per_million: 0.455,
|
|
448
|
+
output_per_million: 1.82,
|
|
447
449
|
},
|
|
448
450
|
features: {
|
|
449
|
-
context_length:
|
|
451
|
+
context_length: 131072,
|
|
450
452
|
input_modality: ['text'],
|
|
451
453
|
output_modality: ['text'],
|
|
452
454
|
tool_use: true,
|
|
453
455
|
streaming: true,
|
|
454
456
|
json_output: true,
|
|
457
|
+
max_output_tokens: 8192,
|
|
455
458
|
},
|
|
456
459
|
class: 'reasoning',
|
|
457
460
|
score: 83,
|
|
@@ -462,30 +465,6 @@ export const MODEL_REGISTRY = [
|
|
|
462
465
|
},
|
|
463
466
|
description: 'Qwen3-235B-A22B is a 235B parameter mixture-of-experts (MoE) model developed by Qwen, activating 22B parameters per forward pass.',
|
|
464
467
|
},
|
|
465
|
-
{
|
|
466
|
-
id: 'qwen/qwen-max',
|
|
467
|
-
provider: 'openrouter',
|
|
468
|
-
cost: {
|
|
469
|
-
input_per_million: 1.6,
|
|
470
|
-
output_per_million: 6.4,
|
|
471
|
-
},
|
|
472
|
-
features: {
|
|
473
|
-
context_length: 131072,
|
|
474
|
-
input_modality: ['text', 'image'],
|
|
475
|
-
output_modality: ['text'],
|
|
476
|
-
tool_use: true,
|
|
477
|
-
streaming: true,
|
|
478
|
-
json_output: true,
|
|
479
|
-
},
|
|
480
|
-
class: 'reasoning',
|
|
481
|
-
score: 80,
|
|
482
|
-
scores: {
|
|
483
|
-
monologue: 73,
|
|
484
|
-
code: 61,
|
|
485
|
-
reasoning: 57,
|
|
486
|
-
},
|
|
487
|
-
description: 'Qwen-Max, based on Qwen2.5, provides the best inference performance among Qwen models, especially for complex multi-step tasks.',
|
|
488
|
-
},
|
|
489
468
|
{
|
|
490
469
|
id: 'qwen/qwen3.5-397b-a17b',
|
|
491
470
|
aliases: ['qwen3.5-397b-a17b'],
|
|
@@ -501,7 +480,7 @@ export const MODEL_REGISTRY = [
|
|
|
501
480
|
tool_use: true,
|
|
502
481
|
streaming: true,
|
|
503
482
|
json_output: true,
|
|
504
|
-
max_output_tokens:
|
|
483
|
+
max_output_tokens: 65536,
|
|
505
484
|
reasoning_output: true,
|
|
506
485
|
},
|
|
507
486
|
class: 'reasoning',
|
|
@@ -514,41 +493,41 @@ export const MODEL_REGISTRY = [
|
|
|
514
493
|
description: 'Qwen3.5-397B-A17B is a vision-language 397B MoE model with a native 262k-context window, multimodal input support, and strong reasoning.',
|
|
515
494
|
},
|
|
516
495
|
{
|
|
517
|
-
id: '
|
|
518
|
-
provider: '
|
|
496
|
+
id: 'grok-4.3',
|
|
497
|
+
provider: 'xai',
|
|
519
498
|
cost: {
|
|
520
|
-
input_per_million:
|
|
521
|
-
output_per_million:
|
|
499
|
+
input_per_million: 1.25,
|
|
500
|
+
output_per_million: 2.5,
|
|
522
501
|
},
|
|
523
502
|
features: {
|
|
524
|
-
context_length:
|
|
525
|
-
input_modality: ['text'],
|
|
503
|
+
context_length: 1_000_000,
|
|
504
|
+
input_modality: ['text', 'image'],
|
|
526
505
|
output_modality: ['text'],
|
|
527
506
|
tool_use: true,
|
|
528
507
|
streaming: true,
|
|
529
508
|
json_output: true,
|
|
530
509
|
},
|
|
531
|
-
class: '
|
|
532
|
-
|
|
533
|
-
description: 'Ministral 8B is a state-of-the-art language model optimized for on-device and edge computing. Designed for efficiency in knowledge-intensive tasks, commonsense reasoning, and function-calling.',
|
|
510
|
+
class: 'reasoning',
|
|
511
|
+
description: "Grok 4.3, xAI's latest recommended reasoning model with 1M context, multimodal input, streaming, tools, structured output, and low/medium/high reasoning effort.",
|
|
534
512
|
},
|
|
535
513
|
{
|
|
536
|
-
id: 'grok-
|
|
514
|
+
id: 'grok-build-0.1',
|
|
515
|
+
aliases: ['grok-build', 'grok-build-latest'],
|
|
537
516
|
provider: 'xai',
|
|
538
517
|
cost: {
|
|
539
|
-
input_per_million: 1.
|
|
540
|
-
output_per_million: 2.
|
|
518
|
+
input_per_million: 1.0,
|
|
519
|
+
output_per_million: 2.0,
|
|
541
520
|
},
|
|
542
521
|
features: {
|
|
543
|
-
context_length:
|
|
522
|
+
context_length: 256000,
|
|
544
523
|
input_modality: ['text', 'image'],
|
|
545
524
|
output_modality: ['text'],
|
|
546
525
|
tool_use: true,
|
|
547
526
|
streaming: true,
|
|
548
527
|
json_output: true,
|
|
549
528
|
},
|
|
550
|
-
class: '
|
|
551
|
-
description: "Grok
|
|
529
|
+
class: 'code',
|
|
530
|
+
description: "Grok Build 0.1, xAI's fast coding model trained for agentic coding workflows with 256k context and text/image input.",
|
|
552
531
|
},
|
|
553
532
|
{
|
|
554
533
|
id: 'grok-4-1-fast-reasoning',
|
|
@@ -1817,7 +1796,7 @@ export const MODEL_REGISTRY = [
|
|
|
1817
1796
|
},
|
|
1818
1797
|
{
|
|
1819
1798
|
id: 'claude-sonnet-4-6',
|
|
1820
|
-
aliases: ['claude-sonnet-4-6', 'claude-sonnet-4.6', 'claude-sonnet-latest'],
|
|
1799
|
+
aliases: ['claude-sonnet-4-6', 'claude-sonnet-4.6', 'claude-sonnet-latest', 'sonnet-4-6', 'sonnet-4.6'],
|
|
1821
1800
|
provider: 'anthropic',
|
|
1822
1801
|
cost: {
|
|
1823
1802
|
input_per_million: 3.0,
|
|
@@ -2135,7 +2114,8 @@ export const MODEL_REGISTRY = [
|
|
|
2135
2114
|
description: 'Gemini 3.5 Flash - fast multimodal reasoning model with 1M context and native thinking levels.',
|
|
2136
2115
|
},
|
|
2137
2116
|
{
|
|
2138
|
-
id: 'gemini-3.1-flash-lite
|
|
2117
|
+
id: 'gemini-3.1-flash-lite',
|
|
2118
|
+
aliases: ['gemini-3.1-flash-lite-preview'],
|
|
2139
2119
|
provider: 'google',
|
|
2140
2120
|
cost: {
|
|
2141
2121
|
input_per_million: {
|
|
@@ -2144,6 +2124,7 @@ export const MODEL_REGISTRY = [
|
|
|
2144
2124
|
video: 0.25,
|
|
2145
2125
|
audio: 0.5,
|
|
2146
2126
|
},
|
|
2127
|
+
cached_input_per_million: 0.025,
|
|
2147
2128
|
output_per_million: 1.5,
|
|
2148
2129
|
},
|
|
2149
2130
|
features: {
|
|
@@ -2157,7 +2138,7 @@ export const MODEL_REGISTRY = [
|
|
|
2157
2138
|
},
|
|
2158
2139
|
class: 'reasoning_mini',
|
|
2159
2140
|
score: 82,
|
|
2160
|
-
description: 'Gemini 3.1 Flash Lite
|
|
2141
|
+
description: 'Gemini 3.1 Flash Lite - stable cost-efficient multimodal model with 1M context window; preview ID remains supported as an alias.',
|
|
2161
2142
|
},
|
|
2162
2143
|
{
|
|
2163
2144
|
id: 'gemini-2.5-flash',
|
|
@@ -2605,7 +2586,7 @@ export const MODEL_REGISTRY = [
|
|
|
2605
2586
|
output_per_million: 1.0,
|
|
2606
2587
|
},
|
|
2607
2588
|
features: {
|
|
2608
|
-
context_length:
|
|
2589
|
+
context_length: 127072,
|
|
2609
2590
|
input_modality: ['text'],
|
|
2610
2591
|
output_modality: ['text'],
|
|
2611
2592
|
tool_use: true,
|
|
@@ -2623,34 +2604,17 @@ export const MODEL_REGISTRY = [
|
|
|
2623
2604
|
output_per_million: 15.0,
|
|
2624
2605
|
},
|
|
2625
2606
|
features: {
|
|
2626
|
-
context_length:
|
|
2607
|
+
context_length: 200000,
|
|
2627
2608
|
input_modality: ['text'],
|
|
2628
2609
|
output_modality: ['text'],
|
|
2629
2610
|
tool_use: true,
|
|
2630
2611
|
streaming: true,
|
|
2631
2612
|
json_output: true,
|
|
2613
|
+
max_output_tokens: 8000,
|
|
2632
2614
|
},
|
|
2633
2615
|
class: 'standard',
|
|
2634
2616
|
description: 'Advanced search model optimized for complex queries and deeper content understanding.',
|
|
2635
2617
|
},
|
|
2636
|
-
{
|
|
2637
|
-
id: 'perplexity/sonar-reasoning',
|
|
2638
|
-
provider: 'openrouter',
|
|
2639
|
-
cost: {
|
|
2640
|
-
input_per_million: 1.0,
|
|
2641
|
-
output_per_million: 5.0,
|
|
2642
|
-
},
|
|
2643
|
-
features: {
|
|
2644
|
-
context_length: 32768,
|
|
2645
|
-
input_modality: ['text'],
|
|
2646
|
-
output_modality: ['text'],
|
|
2647
|
-
tool_use: true,
|
|
2648
|
-
streaming: true,
|
|
2649
|
-
json_output: true,
|
|
2650
|
-
},
|
|
2651
|
-
class: 'reasoning_mini',
|
|
2652
|
-
description: 'Quick problem-solving and reasoning model, ideal for evaluating complex queries.',
|
|
2653
|
-
},
|
|
2654
2618
|
{
|
|
2655
2619
|
id: 'perplexity/sonar-reasoning-pro',
|
|
2656
2620
|
provider: 'openrouter',
|
|
@@ -2659,7 +2623,7 @@ export const MODEL_REGISTRY = [
|
|
|
2659
2623
|
output_per_million: 8.0,
|
|
2660
2624
|
},
|
|
2661
2625
|
features: {
|
|
2662
|
-
context_length:
|
|
2626
|
+
context_length: 128000,
|
|
2663
2627
|
input_modality: ['text'],
|
|
2664
2628
|
output_modality: ['text'],
|
|
2665
2629
|
tool_use: true,
|
|
@@ -2677,7 +2641,7 @@ export const MODEL_REGISTRY = [
|
|
|
2677
2641
|
output_per_million: 8.0,
|
|
2678
2642
|
},
|
|
2679
2643
|
features: {
|
|
2680
|
-
context_length:
|
|
2644
|
+
context_length: 128000,
|
|
2681
2645
|
input_modality: ['text'],
|
|
2682
2646
|
output_modality: ['text'],
|
|
2683
2647
|
tool_use: true,
|
|
@@ -2687,45 +2651,6 @@ export const MODEL_REGISTRY = [
|
|
|
2687
2651
|
class: 'standard',
|
|
2688
2652
|
description: 'Best suited for exhaustive research, generating detailed reports and in-depth insights.',
|
|
2689
2653
|
},
|
|
2690
|
-
{
|
|
2691
|
-
id: 'mistralai/magistral-small-2506',
|
|
2692
|
-
provider: 'openrouter',
|
|
2693
|
-
cost: {
|
|
2694
|
-
input_per_million: 0.5,
|
|
2695
|
-
output_per_million: 1.5,
|
|
2696
|
-
},
|
|
2697
|
-
features: {
|
|
2698
|
-
context_length: 40000,
|
|
2699
|
-
input_modality: ['text'],
|
|
2700
|
-
output_modality: ['text'],
|
|
2701
|
-
tool_use: true,
|
|
2702
|
-
streaming: true,
|
|
2703
|
-
json_output: true,
|
|
2704
|
-
},
|
|
2705
|
-
class: 'reasoning_mini',
|
|
2706
|
-
score: 72,
|
|
2707
|
-
description: 'Magistral Small is a 24B parameter instruction-tuned model based on Mistral-Small-3.1 (2503), enhanced through supervised fine-tuning on traces from Magistral Medium and further refined via reinforcement learning. It is optimized for reasoning and supports a wide multilingual range, including over 20 languages.',
|
|
2708
|
-
},
|
|
2709
|
-
{
|
|
2710
|
-
id: 'mistralai/magistral-medium-2506:thinking',
|
|
2711
|
-
provider: 'openrouter',
|
|
2712
|
-
cost: {
|
|
2713
|
-
input_per_million: 2.0,
|
|
2714
|
-
output_per_million: 5.0,
|
|
2715
|
-
},
|
|
2716
|
-
features: {
|
|
2717
|
-
context_length: 40960,
|
|
2718
|
-
input_modality: ['text'],
|
|
2719
|
-
output_modality: ['text'],
|
|
2720
|
-
tool_use: true,
|
|
2721
|
-
streaming: true,
|
|
2722
|
-
json_output: true,
|
|
2723
|
-
reasoning_output: true,
|
|
2724
|
-
},
|
|
2725
|
-
class: 'reasoning',
|
|
2726
|
-
score: 80,
|
|
2727
|
-
description: "Magistral is Mistral's first reasoning model. It is ideal for general purpose use requiring longer thought processing and better accuracy than with non-reasoning LLMs. From legal research and financial forecasting to software development and creative storytelling — this model solves multi-step challenges where transparency and precision are critical.",
|
|
2728
|
-
},
|
|
2729
2654
|
{
|
|
2730
2655
|
id: 'test-model',
|
|
2731
2656
|
provider: 'test',
|
|
@@ -3121,8 +3046,8 @@ export const MODEL_REGISTRY = [
|
|
|
3121
3046
|
provider: 'openrouter',
|
|
3122
3047
|
openrouter_id: 'openai/gpt-oss-120b',
|
|
3123
3048
|
cost: {
|
|
3124
|
-
input_per_million: 0.
|
|
3125
|
-
output_per_million: 0.
|
|
3049
|
+
input_per_million: 0.039,
|
|
3050
|
+
output_per_million: 0.18,
|
|
3126
3051
|
},
|
|
3127
3052
|
features: {
|
|
3128
3053
|
context_length: 131072,
|
|
@@ -3131,7 +3056,6 @@ export const MODEL_REGISTRY = [
|
|
|
3131
3056
|
tool_use: true,
|
|
3132
3057
|
streaming: true,
|
|
3133
3058
|
json_output: true,
|
|
3134
|
-
max_output_tokens: 100000,
|
|
3135
3059
|
reasoning_output: true,
|
|
3136
3060
|
},
|
|
3137
3061
|
class: 'reasoning',
|
|
@@ -3144,8 +3068,8 @@ export const MODEL_REGISTRY = [
|
|
|
3144
3068
|
provider: 'openrouter',
|
|
3145
3069
|
openrouter_id: 'openai/gpt-oss-20b',
|
|
3146
3070
|
cost: {
|
|
3147
|
-
input_per_million: 0.
|
|
3148
|
-
output_per_million: 0.
|
|
3071
|
+
input_per_million: 0.029,
|
|
3072
|
+
output_per_million: 0.14,
|
|
3149
3073
|
},
|
|
3150
3074
|
features: {
|
|
3151
3075
|
context_length: 131072,
|
|
@@ -3154,12 +3078,34 @@ export const MODEL_REGISTRY = [
|
|
|
3154
3078
|
tool_use: true,
|
|
3155
3079
|
streaming: true,
|
|
3156
3080
|
json_output: true,
|
|
3157
|
-
max_output_tokens: 100000,
|
|
3158
3081
|
},
|
|
3159
3082
|
class: 'standard',
|
|
3160
3083
|
score: 82,
|
|
3161
3084
|
description: 'GPT OSS 20B - MoE model with 3.6B active params, optimized for consumer hardware',
|
|
3162
3085
|
},
|
|
3086
|
+
{
|
|
3087
|
+
id: 'qwen/qwen3.7-max',
|
|
3088
|
+
aliases: ['Qwen3.7 Max', 'qwen3.7-max', 'qwen-3.7-max'],
|
|
3089
|
+
provider: 'openrouter',
|
|
3090
|
+
openrouter_id: 'qwen/qwen3.7-max',
|
|
3091
|
+
cost: {
|
|
3092
|
+
input_per_million: 1.25,
|
|
3093
|
+
cached_input_per_million: 0.25,
|
|
3094
|
+
output_per_million: 3.75,
|
|
3095
|
+
},
|
|
3096
|
+
features: {
|
|
3097
|
+
context_length: 1000000,
|
|
3098
|
+
input_modality: ['text'],
|
|
3099
|
+
output_modality: ['text'],
|
|
3100
|
+
tool_use: true,
|
|
3101
|
+
streaming: true,
|
|
3102
|
+
json_output: true,
|
|
3103
|
+
max_output_tokens: 65536,
|
|
3104
|
+
reasoning_output: true,
|
|
3105
|
+
},
|
|
3106
|
+
class: 'code',
|
|
3107
|
+
description: 'Qwen3.7 Max via OpenRouter. Flagship Qwen 3.7 model for agent-centric coding, productivity, and long-horizon autonomous execution.',
|
|
3108
|
+
},
|
|
3163
3109
|
{
|
|
3164
3110
|
id: 'qwen/qwen3.6-plus',
|
|
3165
3111
|
aliases: ['Qwen 3.6', 'Qwen3.6', 'qwen3.6', 'qwen-3.6', 'qwen3.6-plus', 'qwen-3.6-plus'],
|
|
@@ -3188,9 +3134,8 @@ export const MODEL_REGISTRY = [
|
|
|
3188
3134
|
provider: 'openrouter',
|
|
3189
3135
|
openrouter_id: 'qwen/qwen3.6-flash',
|
|
3190
3136
|
cost: {
|
|
3191
|
-
input_per_million: 0.
|
|
3192
|
-
|
|
3193
|
-
output_per_million: 1.5,
|
|
3137
|
+
input_per_million: 0.1875,
|
|
3138
|
+
output_per_million: 1.125,
|
|
3194
3139
|
},
|
|
3195
3140
|
features: {
|
|
3196
3141
|
context_length: 1000000,
|
|
@@ -3211,9 +3156,8 @@ export const MODEL_REGISTRY = [
|
|
|
3211
3156
|
provider: 'openrouter',
|
|
3212
3157
|
openrouter_id: 'qwen/qwen3.6-35b-a3b',
|
|
3213
3158
|
cost: {
|
|
3214
|
-
input_per_million: 0.
|
|
3215
|
-
|
|
3216
|
-
output_per_million: 0.96525,
|
|
3159
|
+
input_per_million: 0.14,
|
|
3160
|
+
output_per_million: 1.0,
|
|
3217
3161
|
},
|
|
3218
3162
|
features: {
|
|
3219
3163
|
context_length: 262144,
|
|
@@ -3222,7 +3166,7 @@ export const MODEL_REGISTRY = [
|
|
|
3222
3166
|
tool_use: true,
|
|
3223
3167
|
streaming: true,
|
|
3224
3168
|
json_output: true,
|
|
3225
|
-
max_output_tokens:
|
|
3169
|
+
max_output_tokens: 262140,
|
|
3226
3170
|
reasoning_output: true,
|
|
3227
3171
|
},
|
|
3228
3172
|
class: 'reasoning',
|
|
@@ -3257,7 +3201,7 @@ export const MODEL_REGISTRY = [
|
|
|
3257
3201
|
provider: 'openrouter',
|
|
3258
3202
|
openrouter_id: 'qwen/qwen3.6-27b',
|
|
3259
3203
|
cost: {
|
|
3260
|
-
input_per_million: 0.
|
|
3204
|
+
input_per_million: 0.29,
|
|
3261
3205
|
output_per_million: 3.2,
|
|
3262
3206
|
},
|
|
3263
3207
|
features: {
|
|
@@ -3267,7 +3211,7 @@ export const MODEL_REGISTRY = [
|
|
|
3267
3211
|
tool_use: true,
|
|
3268
3212
|
streaming: true,
|
|
3269
3213
|
json_output: true,
|
|
3270
|
-
max_output_tokens:
|
|
3214
|
+
max_output_tokens: 262140,
|
|
3271
3215
|
reasoning_output: true,
|
|
3272
3216
|
},
|
|
3273
3217
|
class: 'reasoning',
|
|
@@ -3279,8 +3223,9 @@ export const MODEL_REGISTRY = [
|
|
|
3279
3223
|
provider: 'openrouter',
|
|
3280
3224
|
openrouter_id: 'qwen/qwen3-235b-a22b-thinking-2507',
|
|
3281
3225
|
cost: {
|
|
3282
|
-
input_per_million: 0.
|
|
3283
|
-
|
|
3226
|
+
input_per_million: 0.1,
|
|
3227
|
+
cached_input_per_million: 0.1,
|
|
3228
|
+
output_per_million: 0.1,
|
|
3284
3229
|
},
|
|
3285
3230
|
features: {
|
|
3286
3231
|
context_length: 262144,
|
|
@@ -3289,7 +3234,7 @@ export const MODEL_REGISTRY = [
|
|
|
3289
3234
|
tool_use: true,
|
|
3290
3235
|
streaming: true,
|
|
3291
3236
|
json_output: true,
|
|
3292
|
-
max_output_tokens:
|
|
3237
|
+
max_output_tokens: 262144,
|
|
3293
3238
|
reasoning_output: true,
|
|
3294
3239
|
},
|
|
3295
3240
|
class: 'reasoning',
|
|
@@ -3302,17 +3247,17 @@ export const MODEL_REGISTRY = [
|
|
|
3302
3247
|
provider: 'openrouter',
|
|
3303
3248
|
openrouter_id: 'qwen/qwen3-coder',
|
|
3304
3249
|
cost: {
|
|
3305
|
-
input_per_million: 0.
|
|
3306
|
-
output_per_million:
|
|
3250
|
+
input_per_million: 0.22,
|
|
3251
|
+
output_per_million: 1.8,
|
|
3307
3252
|
},
|
|
3308
3253
|
features: {
|
|
3309
|
-
context_length:
|
|
3254
|
+
context_length: 1048576,
|
|
3310
3255
|
input_modality: ['text'],
|
|
3311
3256
|
output_modality: ['text'],
|
|
3312
3257
|
tool_use: true,
|
|
3313
3258
|
streaming: true,
|
|
3314
3259
|
json_output: true,
|
|
3315
|
-
max_output_tokens:
|
|
3260
|
+
max_output_tokens: 65536,
|
|
3316
3261
|
},
|
|
3317
3262
|
class: 'code',
|
|
3318
3263
|
score: 90,
|
|
@@ -3324,9 +3269,9 @@ export const MODEL_REGISTRY = [
|
|
|
3324
3269
|
provider: 'openrouter',
|
|
3325
3270
|
openrouter_id: 'z-ai/glm-5.1',
|
|
3326
3271
|
cost: {
|
|
3327
|
-
input_per_million:
|
|
3328
|
-
output_per_million: 3.
|
|
3329
|
-
cached_input_per_million: 0.
|
|
3272
|
+
input_per_million: 0.98,
|
|
3273
|
+
output_per_million: 3.08,
|
|
3274
|
+
cached_input_per_million: 0.182,
|
|
3330
3275
|
},
|
|
3331
3276
|
features: {
|
|
3332
3277
|
context_length: 202752,
|
|
@@ -3335,7 +3280,6 @@ export const MODEL_REGISTRY = [
|
|
|
3335
3280
|
tool_use: true,
|
|
3336
3281
|
streaming: true,
|
|
3337
3282
|
json_output: true,
|
|
3338
|
-
max_output_tokens: 65535,
|
|
3339
3283
|
reasoning_output: true,
|
|
3340
3284
|
},
|
|
3341
3285
|
class: 'reasoning',
|
|
@@ -3370,9 +3314,9 @@ export const MODEL_REGISTRY = [
|
|
|
3370
3314
|
provider: 'openrouter',
|
|
3371
3315
|
openrouter_id: 'deepseek/deepseek-v4-flash',
|
|
3372
3316
|
cost: {
|
|
3373
|
-
input_per_million: 0.
|
|
3374
|
-
cached_input_per_million: 0.
|
|
3375
|
-
output_per_million: 0.
|
|
3317
|
+
input_per_million: 0.0983,
|
|
3318
|
+
cached_input_per_million: 0.0197,
|
|
3319
|
+
output_per_million: 0.1966,
|
|
3376
3320
|
},
|
|
3377
3321
|
features: {
|
|
3378
3322
|
context_length: 1048576,
|
|
@@ -3381,7 +3325,7 @@ export const MODEL_REGISTRY = [
|
|
|
3381
3325
|
tool_use: true,
|
|
3382
3326
|
streaming: true,
|
|
3383
3327
|
json_output: true,
|
|
3384
|
-
max_output_tokens:
|
|
3328
|
+
max_output_tokens: 131072,
|
|
3385
3329
|
reasoning_output: true,
|
|
3386
3330
|
},
|
|
3387
3331
|
class: 'reasoning',
|
|
@@ -3439,9 +3383,9 @@ export const MODEL_REGISTRY = [
|
|
|
3439
3383
|
provider: 'openrouter',
|
|
3440
3384
|
openrouter_id: 'tencent/hy3-preview',
|
|
3441
3385
|
cost: {
|
|
3442
|
-
input_per_million: 0.
|
|
3443
|
-
cached_input_per_million: 0.
|
|
3444
|
-
output_per_million: 0.
|
|
3386
|
+
input_per_million: 0.063,
|
|
3387
|
+
cached_input_per_million: 0.021,
|
|
3388
|
+
output_per_million: 0.21,
|
|
3445
3389
|
},
|
|
3446
3390
|
features: {
|
|
3447
3391
|
context_length: 262144,
|
|
@@ -3450,7 +3394,6 @@ export const MODEL_REGISTRY = [
|
|
|
3450
3394
|
tool_use: true,
|
|
3451
3395
|
streaming: true,
|
|
3452
3396
|
json_output: false,
|
|
3453
|
-
max_output_tokens: 262144,
|
|
3454
3397
|
reasoning_output: true,
|
|
3455
3398
|
},
|
|
3456
3399
|
class: 'reasoning',
|
|
@@ -3461,9 +3404,9 @@ export const MODEL_REGISTRY = [
|
|
|
3461
3404
|
aliases: ['kimi-k2.5', 'kimi-k2-5'],
|
|
3462
3405
|
provider: 'openrouter',
|
|
3463
3406
|
cost: {
|
|
3464
|
-
input_per_million: 0.
|
|
3465
|
-
output_per_million:
|
|
3466
|
-
cached_input_per_million: 0.
|
|
3407
|
+
input_per_million: 0.4,
|
|
3408
|
+
output_per_million: 1.9,
|
|
3409
|
+
cached_input_per_million: 0.09,
|
|
3467
3410
|
},
|
|
3468
3411
|
features: {
|
|
3469
3412
|
context_length: 262144,
|
|
@@ -3472,6 +3415,7 @@ export const MODEL_REGISTRY = [
|
|
|
3472
3415
|
tool_use: true,
|
|
3473
3416
|
streaming: true,
|
|
3474
3417
|
json_output: true,
|
|
3418
|
+
max_output_tokens: 262144,
|
|
3475
3419
|
},
|
|
3476
3420
|
class: 'reasoning',
|
|
3477
3421
|
score: 86,
|
|
@@ -3483,18 +3427,18 @@ export const MODEL_REGISTRY = [
|
|
|
3483
3427
|
provider: 'openrouter',
|
|
3484
3428
|
openrouter_id: 'moonshotai/kimi-k2.6',
|
|
3485
3429
|
cost: {
|
|
3486
|
-
input_per_million: 0.
|
|
3487
|
-
output_per_million: 3.
|
|
3488
|
-
cached_input_per_million: 0.
|
|
3430
|
+
input_per_million: 0.684,
|
|
3431
|
+
output_per_million: 3.42,
|
|
3432
|
+
cached_input_per_million: 0.144,
|
|
3489
3433
|
},
|
|
3490
3434
|
features: {
|
|
3491
|
-
context_length:
|
|
3435
|
+
context_length: 262144,
|
|
3492
3436
|
input_modality: ['text', 'image'],
|
|
3493
3437
|
output_modality: ['text'],
|
|
3494
3438
|
tool_use: true,
|
|
3495
3439
|
streaming: true,
|
|
3496
3440
|
json_output: true,
|
|
3497
|
-
max_output_tokens:
|
|
3441
|
+
max_output_tokens: 262144,
|
|
3498
3442
|
reasoning_output: true,
|
|
3499
3443
|
},
|
|
3500
3444
|
class: 'reasoning',
|