@just-every/ensemble 0.2.260 → 0.2.262
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 +1 -1
- package/dist/cjs/data/model_data.cjs +218 -44
- 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/claude.cjs +7 -2
- package/dist/cjs/model_providers/claude.d.ts.map +1 -1
- package/dist/cjs/model_providers/claude.js.map +1 -1
- package/dist/cjs/model_providers/gemini.cjs +1 -0
- package/dist/cjs/model_providers/gemini.d.ts.map +1 -1
- package/dist/cjs/model_providers/gemini.js.map +1 -1
- package/dist/cjs/model_providers/grok.cjs +1 -1
- package/dist/cjs/model_providers/grok.js.map +1 -1
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/data/model_data.d.ts.map +1 -1
- package/dist/data/model_data.js +218 -44
- package/dist/data/model_data.js.map +1 -1
- package/dist/model_providers/claude.d.ts.map +1 -1
- package/dist/model_providers/claude.js +7 -2
- package/dist/model_providers/claude.js.map +1 -1
- package/dist/model_providers/gemini.d.ts.map +1 -1
- package/dist/model_providers/gemini.js +1 -0
- package/dist/model_providers/gemini.js.map +1 -1
- package/dist/model_providers/grok.js +1 -1
- package/dist/model_providers/grok.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ See the [demo README](demo/README.md) for detailed information about each demo.
|
|
|
40
40
|
- OpenAI: Added GPT-5.2 (base + chat-latest + pro) and refreshed GPT-5.1/GPT-5/Codex pricing
|
|
41
41
|
- Anthropic: Claude 4.5 (Sonnet/Haiku, incl. 1M context) and Claude Opus 4.1
|
|
42
42
|
- Google: Gemini 3 (Pro/Flash/Ultra) and refreshed Gemini 2.5 pricing incl. image/TTS/native-audio
|
|
43
|
-
- xAI: Grok 4.
|
|
43
|
+
- xAI: Grok 4.5 with current `grok-build-latest` aliasing and reasoning controls, Grok 4.1 Fast / Grok 4 Fast variants, and Grok Imagine image generation/editing support (`grok-imagine-image`, `grok-imagine-image-pro`)
|
|
44
44
|
|
|
45
45
|
\*Codex-Max pricing reflects current published rates and may change if OpenAI updates pricing.
|
|
46
46
|
|
|
@@ -8,8 +8,8 @@ exports.MODEL_CLASSES = {
|
|
|
8
8
|
models: [
|
|
9
9
|
'gpt-5.5',
|
|
10
10
|
'gemini-3-flash-preview',
|
|
11
|
-
'claude-sonnet-
|
|
12
|
-
'grok-4.
|
|
11
|
+
'claude-sonnet-5',
|
|
12
|
+
'grok-4.5',
|
|
13
13
|
],
|
|
14
14
|
random: true,
|
|
15
15
|
},
|
|
@@ -26,8 +26,8 @@ exports.MODEL_CLASSES = {
|
|
|
26
26
|
models: [
|
|
27
27
|
'gpt-5.5',
|
|
28
28
|
'gemini-2.5-pro',
|
|
29
|
-
'claude-sonnet-
|
|
30
|
-
'grok-4.
|
|
29
|
+
'claude-sonnet-5',
|
|
30
|
+
'grok-4.5',
|
|
31
31
|
],
|
|
32
32
|
random: true,
|
|
33
33
|
},
|
|
@@ -36,7 +36,7 @@ exports.MODEL_CLASSES = {
|
|
|
36
36
|
'gpt-5.5-pro',
|
|
37
37
|
'gemini-3.1-pro-preview',
|
|
38
38
|
'claude-fable-5',
|
|
39
|
-
'grok-4.
|
|
39
|
+
'grok-4.5',
|
|
40
40
|
],
|
|
41
41
|
random: true,
|
|
42
42
|
},
|
|
@@ -44,7 +44,7 @@ exports.MODEL_CLASSES = {
|
|
|
44
44
|
models: [
|
|
45
45
|
'gpt-5.4-mini',
|
|
46
46
|
'gemini-3-flash-preview',
|
|
47
|
-
'claude-sonnet-
|
|
47
|
+
'claude-sonnet-5',
|
|
48
48
|
'grok-3-mini',
|
|
49
49
|
],
|
|
50
50
|
random: true,
|
|
@@ -53,8 +53,8 @@ exports.MODEL_CLASSES = {
|
|
|
53
53
|
models: [
|
|
54
54
|
'gpt-5.5',
|
|
55
55
|
'gemini-3.1-pro-preview',
|
|
56
|
-
'claude-sonnet-
|
|
57
|
-
'grok-4.
|
|
56
|
+
'claude-sonnet-5',
|
|
57
|
+
'grok-4.5',
|
|
58
58
|
],
|
|
59
59
|
random: true,
|
|
60
60
|
},
|
|
@@ -63,7 +63,7 @@ exports.MODEL_CLASSES = {
|
|
|
63
63
|
'gpt-5.5',
|
|
64
64
|
'gemini-3.1-pro-preview',
|
|
65
65
|
'claude-fable-5',
|
|
66
|
-
'grok-4.
|
|
66
|
+
'grok-4.5',
|
|
67
67
|
],
|
|
68
68
|
random: true,
|
|
69
69
|
},
|
|
@@ -72,7 +72,7 @@ exports.MODEL_CLASSES = {
|
|
|
72
72
|
'gpt-5.3-codex',
|
|
73
73
|
'gemini-3.1-pro-preview',
|
|
74
74
|
'claude-fable-5',
|
|
75
|
-
'grok-4.
|
|
75
|
+
'grok-4.5',
|
|
76
76
|
'qwen3-coder',
|
|
77
77
|
],
|
|
78
78
|
random: true,
|
|
@@ -81,8 +81,8 @@ exports.MODEL_CLASSES = {
|
|
|
81
81
|
models: [
|
|
82
82
|
'gpt-5.5',
|
|
83
83
|
'gemini-3-flash-preview',
|
|
84
|
-
'claude-sonnet-
|
|
85
|
-
'grok-4.
|
|
84
|
+
'claude-sonnet-5',
|
|
85
|
+
'grok-4.5',
|
|
86
86
|
],
|
|
87
87
|
random: true,
|
|
88
88
|
},
|
|
@@ -100,7 +100,7 @@ exports.MODEL_CLASSES = {
|
|
|
100
100
|
'gpt-5.5',
|
|
101
101
|
'gemini-3.1-pro-preview',
|
|
102
102
|
'claude-fable-5',
|
|
103
|
-
'grok-4.
|
|
103
|
+
'grok-4.5',
|
|
104
104
|
],
|
|
105
105
|
random: true,
|
|
106
106
|
},
|
|
@@ -157,7 +157,7 @@ exports.MODEL_CLASSES = {
|
|
|
157
157
|
models: [
|
|
158
158
|
'tts-1-hd',
|
|
159
159
|
'eleven_multilingual_v2',
|
|
160
|
-
'gemini-
|
|
160
|
+
'gemini-3.1-flash-tts-preview',
|
|
161
161
|
],
|
|
162
162
|
description: 'Text-to-Speech models for voice generation',
|
|
163
163
|
},
|
|
@@ -166,7 +166,7 @@ exports.MODEL_CLASSES = {
|
|
|
166
166
|
'gpt-realtime-whisper',
|
|
167
167
|
'gpt-4o-transcribe',
|
|
168
168
|
'u3-rt-pro',
|
|
169
|
-
'gemini-
|
|
169
|
+
'gemini-3.1-flash-live-preview',
|
|
170
170
|
],
|
|
171
171
|
description: 'Speech-to-Text models for audio transcription with real-time streaming',
|
|
172
172
|
},
|
|
@@ -498,6 +498,27 @@ exports.MODEL_REGISTRY = [
|
|
|
498
498
|
},
|
|
499
499
|
description: 'Qwen3.5-397B-A17B is a vision-language 397B MoE model with a native 262k-context window, multimodal input support, and strong reasoning.',
|
|
500
500
|
},
|
|
501
|
+
{
|
|
502
|
+
id: 'grok-4.5',
|
|
503
|
+
aliases: ['grok-4.5-latest', 'grok-build-latest'],
|
|
504
|
+
provider: 'xai',
|
|
505
|
+
cost: {
|
|
506
|
+
input_per_million: 2.0,
|
|
507
|
+
output_per_million: 6.0,
|
|
508
|
+
cached_input_per_million: 0.5,
|
|
509
|
+
},
|
|
510
|
+
features: {
|
|
511
|
+
context_length: 500_000,
|
|
512
|
+
input_modality: ['text', 'image'],
|
|
513
|
+
output_modality: ['text'],
|
|
514
|
+
tool_use: true,
|
|
515
|
+
streaming: true,
|
|
516
|
+
json_output: true,
|
|
517
|
+
reasoning_output: true,
|
|
518
|
+
},
|
|
519
|
+
class: 'reasoning',
|
|
520
|
+
description: "Grok 4.5, xAI's flagship model for code and general chat with 500k context, multimodal input, tools, structured output, and configurable low/medium/high reasoning.",
|
|
521
|
+
},
|
|
501
522
|
{
|
|
502
523
|
id: 'grok-4.3',
|
|
503
524
|
provider: 'xai',
|
|
@@ -518,7 +539,7 @@ exports.MODEL_REGISTRY = [
|
|
|
518
539
|
},
|
|
519
540
|
{
|
|
520
541
|
id: 'grok-build-0.1',
|
|
521
|
-
aliases: ['grok-build'
|
|
542
|
+
aliases: ['grok-build'],
|
|
522
543
|
provider: 'xai',
|
|
523
544
|
cost: {
|
|
524
545
|
input_per_million: 1.0,
|
|
@@ -1802,7 +1823,7 @@ exports.MODEL_REGISTRY = [
|
|
|
1802
1823
|
},
|
|
1803
1824
|
{
|
|
1804
1825
|
id: 'claude-sonnet-4-6',
|
|
1805
|
-
aliases: ['claude-sonnet-4-6', 'claude-sonnet-4.6', '
|
|
1826
|
+
aliases: ['claude-sonnet-4-6', 'claude-sonnet-4.6', 'sonnet-4-6', 'sonnet-4.6'],
|
|
1806
1827
|
provider: 'anthropic',
|
|
1807
1828
|
cost: {
|
|
1808
1829
|
input_per_million: 3.0,
|
|
@@ -1823,6 +1844,34 @@ exports.MODEL_REGISTRY = [
|
|
|
1823
1844
|
score: 94,
|
|
1824
1845
|
description: 'Claude Sonnet 4.6 with updated reasoning and multimodal capabilities.',
|
|
1825
1846
|
},
|
|
1847
|
+
{
|
|
1848
|
+
id: 'claude-sonnet-5',
|
|
1849
|
+
aliases: ['claude-sonnet-latest', 'sonnet-5', 'sonnet-5-latest'],
|
|
1850
|
+
provider: 'anthropic',
|
|
1851
|
+
cost: {
|
|
1852
|
+
input_per_million: 2.0,
|
|
1853
|
+
output_per_million: 10.0,
|
|
1854
|
+
cached_input_per_million: 0.2,
|
|
1855
|
+
},
|
|
1856
|
+
features: {
|
|
1857
|
+
context_length: 1_000_000,
|
|
1858
|
+
input_modality: ['text', 'image'],
|
|
1859
|
+
output_modality: ['text'],
|
|
1860
|
+
tool_use: true,
|
|
1861
|
+
streaming: true,
|
|
1862
|
+
json_output: true,
|
|
1863
|
+
reasoning_output: true,
|
|
1864
|
+
max_output_tokens: 128000,
|
|
1865
|
+
},
|
|
1866
|
+
class: 'reasoning',
|
|
1867
|
+
score: 96,
|
|
1868
|
+
scores: {
|
|
1869
|
+
monologue: 95,
|
|
1870
|
+
code: 96,
|
|
1871
|
+
reasoning: 95,
|
|
1872
|
+
},
|
|
1873
|
+
description: 'Claude Sonnet 5 - latest Sonnet model with 1M context, 128K output, vision support, and implicit adaptive thinking controls.',
|
|
1874
|
+
},
|
|
1826
1875
|
{
|
|
1827
1876
|
id: 'claude-sonnet-4-5-20250514-long-context',
|
|
1828
1877
|
aliases: ['claude-sonnet-4-5-long', 'claude-sonnet-4.5-long'],
|
|
@@ -2641,6 +2690,22 @@ exports.MODEL_REGISTRY = [
|
|
|
2641
2690
|
class: 'voice',
|
|
2642
2691
|
description: "Gemini's advanced text-to-speech model with superior voice quality, expression control, and multi-speaker support for creating dynamic conversations.",
|
|
2643
2692
|
},
|
|
2693
|
+
{
|
|
2694
|
+
id: 'gemini-3.1-flash-tts-preview',
|
|
2695
|
+
provider: 'google',
|
|
2696
|
+
cost: {
|
|
2697
|
+
input_per_million: 10.0,
|
|
2698
|
+
output_per_million: 0,
|
|
2699
|
+
},
|
|
2700
|
+
features: {
|
|
2701
|
+
input_modality: ['text'],
|
|
2702
|
+
output_modality: ['audio'],
|
|
2703
|
+
streaming: true,
|
|
2704
|
+
context_length: 32000,
|
|
2705
|
+
},
|
|
2706
|
+
class: 'voice',
|
|
2707
|
+
description: 'Gemini 3.1 Flash TTS preview for low-latency speech generation with steerable prompts and expressive audio tags.',
|
|
2708
|
+
},
|
|
2644
2709
|
{
|
|
2645
2710
|
id: 'gemini-2.5-flash-native-audio-preview',
|
|
2646
2711
|
aliases: ['gemini-2.5-flash-native-audio-preview-12-2025'],
|
|
@@ -2658,6 +2723,21 @@ exports.MODEL_REGISTRY = [
|
|
|
2658
2723
|
class: 'voice',
|
|
2659
2724
|
description: "Gemini's native audio preview model providing low-latency text-to-speech with built-in audio processing.",
|
|
2660
2725
|
},
|
|
2726
|
+
{
|
|
2727
|
+
id: 'gemini-omni-flash',
|
|
2728
|
+
provider: 'google',
|
|
2729
|
+
cost: {
|
|
2730
|
+
input_per_million: 0,
|
|
2731
|
+
output_per_million: 0,
|
|
2732
|
+
},
|
|
2733
|
+
features: {
|
|
2734
|
+
input_modality: ['text', 'image', 'audio', 'video'],
|
|
2735
|
+
output_modality: ['text', 'image', 'audio'],
|
|
2736
|
+
streaming: true,
|
|
2737
|
+
},
|
|
2738
|
+
class: 'standard',
|
|
2739
|
+
description: 'Gemini Omni Flash preview for multimodal, conversational generation and editing across text, image, audio, and video inputs.',
|
|
2740
|
+
},
|
|
2661
2741
|
{
|
|
2662
2742
|
id: 'perplexity/sonar',
|
|
2663
2743
|
provider: 'openrouter',
|
|
@@ -3000,6 +3080,29 @@ exports.MODEL_REGISTRY = [
|
|
|
3000
3080
|
class: 'transcription',
|
|
3001
3081
|
description: 'Gemini Live API for real-time multimodal interaction with modality-specific pricing',
|
|
3002
3082
|
},
|
|
3083
|
+
{
|
|
3084
|
+
id: 'gemini-3.1-flash-live-preview',
|
|
3085
|
+
provider: 'google',
|
|
3086
|
+
cost: {
|
|
3087
|
+
input_per_million: {
|
|
3088
|
+
text: 0.5,
|
|
3089
|
+
audio: 3.0,
|
|
3090
|
+
video: 3.0,
|
|
3091
|
+
},
|
|
3092
|
+
output_per_million: {
|
|
3093
|
+
text: 2.0,
|
|
3094
|
+
audio: 12.0,
|
|
3095
|
+
},
|
|
3096
|
+
},
|
|
3097
|
+
features: {
|
|
3098
|
+
context_length: 32000,
|
|
3099
|
+
input_modality: ['text', 'audio', 'video'],
|
|
3100
|
+
output_modality: ['text', 'audio'],
|
|
3101
|
+
streaming: true,
|
|
3102
|
+
},
|
|
3103
|
+
class: 'transcription',
|
|
3104
|
+
description: 'Gemini 3.1 Flash Live preview for high-quality, low-latency audio-to-audio realtime dialogue and voice-first applications.',
|
|
3105
|
+
},
|
|
3003
3106
|
{
|
|
3004
3107
|
id: 'gemini-2.0-flash-live-001',
|
|
3005
3108
|
provider: 'google',
|
|
@@ -3177,8 +3280,8 @@ exports.MODEL_REGISTRY = [
|
|
|
3177
3280
|
provider: 'openrouter',
|
|
3178
3281
|
openrouter_id: 'openai/gpt-oss-120b',
|
|
3179
3282
|
cost: {
|
|
3180
|
-
input_per_million: 0.
|
|
3181
|
-
output_per_million: 0.
|
|
3283
|
+
input_per_million: 0.03,
|
|
3284
|
+
output_per_million: 0.15,
|
|
3182
3285
|
},
|
|
3183
3286
|
features: {
|
|
3184
3287
|
context_length: 131072,
|
|
@@ -3237,6 +3340,29 @@ exports.MODEL_REGISTRY = [
|
|
|
3237
3340
|
class: 'code',
|
|
3238
3341
|
description: 'Qwen3.7 Max via OpenRouter. Flagship Qwen 3.7 model for agent-centric coding, productivity, and long-horizon autonomous execution.',
|
|
3239
3342
|
},
|
|
3343
|
+
{
|
|
3344
|
+
id: 'qwen/qwen3.7-plus',
|
|
3345
|
+
aliases: ['Qwen3.7 Plus', 'qwen3.7-plus', 'qwen-3.7-plus'],
|
|
3346
|
+
provider: 'openrouter',
|
|
3347
|
+
openrouter_id: 'qwen/qwen3.7-plus',
|
|
3348
|
+
cost: {
|
|
3349
|
+
input_per_million: 0.32,
|
|
3350
|
+
cached_input_per_million: 0.064,
|
|
3351
|
+
output_per_million: 1.28,
|
|
3352
|
+
},
|
|
3353
|
+
features: {
|
|
3354
|
+
context_length: 1000000,
|
|
3355
|
+
input_modality: ['text', 'image'],
|
|
3356
|
+
output_modality: ['text'],
|
|
3357
|
+
tool_use: true,
|
|
3358
|
+
streaming: true,
|
|
3359
|
+
json_output: true,
|
|
3360
|
+
max_output_tokens: 65536,
|
|
3361
|
+
reasoning_output: true,
|
|
3362
|
+
},
|
|
3363
|
+
class: 'reasoning',
|
|
3364
|
+
description: 'Qwen3.7 Plus via OpenRouter. Current multimodal Qwen 3.7 model with 1M context for agentic workflows and visual reasoning.',
|
|
3365
|
+
},
|
|
3240
3366
|
{
|
|
3241
3367
|
id: 'qwen/qwen3.6-plus',
|
|
3242
3368
|
aliases: ['Qwen 3.6', 'Qwen3.6', 'qwen3.6', 'qwen-3.6', 'qwen3.6-plus', 'qwen-3.6-plus'],
|
|
@@ -3297,7 +3423,7 @@ exports.MODEL_REGISTRY = [
|
|
|
3297
3423
|
tool_use: true,
|
|
3298
3424
|
streaming: true,
|
|
3299
3425
|
json_output: true,
|
|
3300
|
-
max_output_tokens:
|
|
3426
|
+
max_output_tokens: 262144,
|
|
3301
3427
|
reasoning_output: true,
|
|
3302
3428
|
},
|
|
3303
3429
|
class: 'reasoning',
|
|
@@ -3332,8 +3458,9 @@ exports.MODEL_REGISTRY = [
|
|
|
3332
3458
|
provider: 'openrouter',
|
|
3333
3459
|
openrouter_id: 'qwen/qwen3.6-27b',
|
|
3334
3460
|
cost: {
|
|
3335
|
-
input_per_million: 0.
|
|
3336
|
-
|
|
3461
|
+
input_per_million: 0.285,
|
|
3462
|
+
cached_input_per_million: 0.15,
|
|
3463
|
+
output_per_million: 2.4,
|
|
3337
3464
|
},
|
|
3338
3465
|
features: {
|
|
3339
3466
|
context_length: 262144,
|
|
@@ -3396,13 +3523,13 @@ exports.MODEL_REGISTRY = [
|
|
|
3396
3523
|
},
|
|
3397
3524
|
{
|
|
3398
3525
|
id: 'z-ai/glm-5.1',
|
|
3399
|
-
aliases: ['GLM-5.1', 'glm-5.1'
|
|
3526
|
+
aliases: ['GLM-5.1', 'glm-5.1'],
|
|
3400
3527
|
provider: 'openrouter',
|
|
3401
3528
|
openrouter_id: 'z-ai/glm-5.1',
|
|
3402
3529
|
cost: {
|
|
3403
|
-
input_per_million: 0.
|
|
3404
|
-
output_per_million: 3.
|
|
3405
|
-
cached_input_per_million: 0.
|
|
3530
|
+
input_per_million: 0.966,
|
|
3531
|
+
output_per_million: 3.036,
|
|
3532
|
+
cached_input_per_million: 0.1794,
|
|
3406
3533
|
},
|
|
3407
3534
|
features: {
|
|
3408
3535
|
context_length: 202752,
|
|
@@ -3416,6 +3543,29 @@ exports.MODEL_REGISTRY = [
|
|
|
3416
3543
|
class: 'reasoning',
|
|
3417
3544
|
description: 'GLM-5.1 via OpenRouter. Z.ai flagship text model for long-horizon autonomous coding and sustained agent workflows.',
|
|
3418
3545
|
},
|
|
3546
|
+
{
|
|
3547
|
+
id: 'z-ai/glm-5.2',
|
|
3548
|
+
aliases: ['GLM-5.2', 'glm-5.2', 'glm-5'],
|
|
3549
|
+
provider: 'openrouter',
|
|
3550
|
+
openrouter_id: 'z-ai/glm-5.2',
|
|
3551
|
+
cost: {
|
|
3552
|
+
input_per_million: 0.93,
|
|
3553
|
+
output_per_million: 3.0,
|
|
3554
|
+
cached_input_per_million: 0.18,
|
|
3555
|
+
},
|
|
3556
|
+
features: {
|
|
3557
|
+
context_length: 1048576,
|
|
3558
|
+
input_modality: ['text'],
|
|
3559
|
+
output_modality: ['text'],
|
|
3560
|
+
tool_use: true,
|
|
3561
|
+
streaming: true,
|
|
3562
|
+
json_output: true,
|
|
3563
|
+
max_output_tokens: 32768,
|
|
3564
|
+
reasoning_output: true,
|
|
3565
|
+
},
|
|
3566
|
+
class: 'reasoning',
|
|
3567
|
+
description: 'GLM-5.2 via OpenRouter. Z.ai 1M-context text model for long-horizon autonomous coding and sustained agent workflows.',
|
|
3568
|
+
},
|
|
3419
3569
|
{
|
|
3420
3570
|
id: 'deepseek/deepseek-v4-pro',
|
|
3421
3571
|
aliases: ['DeepSeek-V4', 'DeepSeek-V4-Pro', 'deepseek-v4', 'deepseek-v4-pro'],
|
|
@@ -3445,9 +3595,9 @@ exports.MODEL_REGISTRY = [
|
|
|
3445
3595
|
provider: 'openrouter',
|
|
3446
3596
|
openrouter_id: 'deepseek/deepseek-v4-flash',
|
|
3447
3597
|
cost: {
|
|
3448
|
-
input_per_million: 0.
|
|
3449
|
-
cached_input_per_million: 0.
|
|
3450
|
-
output_per_million: 0.
|
|
3598
|
+
input_per_million: 0.09,
|
|
3599
|
+
cached_input_per_million: 0.018,
|
|
3600
|
+
output_per_million: 0.18,
|
|
3451
3601
|
},
|
|
3452
3602
|
features: {
|
|
3453
3603
|
context_length: 1048576,
|
|
@@ -3468,8 +3618,8 @@ exports.MODEL_REGISTRY = [
|
|
|
3468
3618
|
provider: 'openrouter',
|
|
3469
3619
|
openrouter_id: 'xiaomi/mimo-v2.5',
|
|
3470
3620
|
cost: {
|
|
3471
|
-
input_per_million: 0.
|
|
3472
|
-
cached_input_per_million: 0.
|
|
3621
|
+
input_per_million: 0.105,
|
|
3622
|
+
cached_input_per_million: 0.028,
|
|
3473
3623
|
output_per_million: 0.28,
|
|
3474
3624
|
},
|
|
3475
3625
|
features: {
|
|
@@ -3533,14 +3683,14 @@ exports.MODEL_REGISTRY = [
|
|
|
3533
3683
|
description: 'MiniMax M3 via OpenRouter. Multimodal 1M-context foundation model for long-horizon agentic work, coding, and video-aware reasoning.',
|
|
3534
3684
|
},
|
|
3535
3685
|
{
|
|
3536
|
-
id: 'tencent/hy3
|
|
3537
|
-
aliases: ['Tencent Hy3 Preview', 'Hy3 Preview', 'Hy3-preview', 'hy3-preview'],
|
|
3686
|
+
id: 'tencent/hy3',
|
|
3687
|
+
aliases: ['Tencent Hy3', 'Hy3', 'hy3', 'Tencent Hy3 Preview', 'Hy3 Preview', 'Hy3-preview', 'hy3-preview'],
|
|
3538
3688
|
provider: 'openrouter',
|
|
3539
|
-
openrouter_id: 'tencent/hy3
|
|
3689
|
+
openrouter_id: 'tencent/hy3',
|
|
3540
3690
|
cost: {
|
|
3541
|
-
input_per_million: 0.
|
|
3542
|
-
cached_input_per_million: 0.
|
|
3543
|
-
output_per_million: 0.
|
|
3691
|
+
input_per_million: 0.2,
|
|
3692
|
+
cached_input_per_million: 0.5,
|
|
3693
|
+
output_per_million: 0.8,
|
|
3544
3694
|
},
|
|
3545
3695
|
features: {
|
|
3546
3696
|
context_length: 262144,
|
|
@@ -3549,19 +3699,20 @@ exports.MODEL_REGISTRY = [
|
|
|
3549
3699
|
tool_use: true,
|
|
3550
3700
|
streaming: true,
|
|
3551
3701
|
json_output: false,
|
|
3702
|
+
max_output_tokens: 131072,
|
|
3552
3703
|
reasoning_output: true,
|
|
3553
3704
|
},
|
|
3554
3705
|
class: 'reasoning',
|
|
3555
|
-
description: 'Tencent Hy3
|
|
3706
|
+
description: 'Tencent Hy3 via OpenRouter. High-efficiency text model for agentic workflows with configurable disabled, low, and high reasoning modes.',
|
|
3556
3707
|
},
|
|
3557
3708
|
{
|
|
3558
3709
|
id: 'moonshotai/kimi-k2.5',
|
|
3559
3710
|
aliases: ['kimi-k2.5', 'kimi-k2-5'],
|
|
3560
3711
|
provider: 'openrouter',
|
|
3561
3712
|
cost: {
|
|
3562
|
-
input_per_million: 0.
|
|
3563
|
-
output_per_million:
|
|
3564
|
-
cached_input_per_million: 0.
|
|
3713
|
+
input_per_million: 0.375,
|
|
3714
|
+
output_per_million: 2.025,
|
|
3715
|
+
cached_input_per_million: 0.203,
|
|
3565
3716
|
},
|
|
3566
3717
|
features: {
|
|
3567
3718
|
context_length: 262144,
|
|
@@ -3582,9 +3733,9 @@ exports.MODEL_REGISTRY = [
|
|
|
3582
3733
|
provider: 'openrouter',
|
|
3583
3734
|
openrouter_id: 'moonshotai/kimi-k2.6',
|
|
3584
3735
|
cost: {
|
|
3585
|
-
input_per_million: 0.
|
|
3586
|
-
output_per_million: 3.
|
|
3587
|
-
cached_input_per_million: 0.
|
|
3736
|
+
input_per_million: 0.66,
|
|
3737
|
+
output_per_million: 3.41,
|
|
3738
|
+
cached_input_per_million: 0.14,
|
|
3588
3739
|
},
|
|
3589
3740
|
features: {
|
|
3590
3741
|
context_length: 262144,
|
|
@@ -3599,6 +3750,29 @@ exports.MODEL_REGISTRY = [
|
|
|
3599
3750
|
class: 'reasoning',
|
|
3600
3751
|
description: 'MoonshotAI Kimi K2.6 via OpenRouter. Multimodal long-horizon coding and multi-agent orchestration model with 262K context.',
|
|
3601
3752
|
},
|
|
3753
|
+
{
|
|
3754
|
+
id: 'moonshotai/kimi-k2.7-code',
|
|
3755
|
+
aliases: ['Kimi K2.7 Code', 'kimi-k2.7-code', 'kimi-k2-7-code', 'kimi-k2.7', 'kimi-k2-7'],
|
|
3756
|
+
provider: 'openrouter',
|
|
3757
|
+
openrouter_id: 'moonshotai/kimi-k2.7-code',
|
|
3758
|
+
cost: {
|
|
3759
|
+
input_per_million: 0.74,
|
|
3760
|
+
output_per_million: 3.5,
|
|
3761
|
+
cached_input_per_million: 0.15,
|
|
3762
|
+
},
|
|
3763
|
+
features: {
|
|
3764
|
+
context_length: 262144,
|
|
3765
|
+
input_modality: ['text', 'image'],
|
|
3766
|
+
output_modality: ['text'],
|
|
3767
|
+
tool_use: true,
|
|
3768
|
+
streaming: true,
|
|
3769
|
+
json_output: true,
|
|
3770
|
+
max_output_tokens: 16384,
|
|
3771
|
+
reasoning_output: true,
|
|
3772
|
+
},
|
|
3773
|
+
class: 'code',
|
|
3774
|
+
description: 'MoonshotAI Kimi K2.7 Code via OpenRouter. Coding-focused long-context model for software engineering and agentic coding workflows.',
|
|
3775
|
+
},
|
|
3602
3776
|
];
|
|
3603
3777
|
function findModel(modelId) {
|
|
3604
3778
|
const externalModel = (0, external_models_js_1.getExternalModel)(modelId);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model_data.d.ts","sourceRoot":"","sources":["../../../data/model_data.ts"],"names":[],"mappings":"AAYA,OAAO,EACH,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,EACb,MAAM,mBAAmB,CAAC;AAM3B,YAAY,EACR,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,GACb,CAAC;AAOF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0MzB,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"model_data.d.ts","sourceRoot":"","sources":["../../../data/model_data.ts"],"names":[],"mappings":"AAYA,OAAO,EACH,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,EACb,MAAM,mBAAmB,CAAC;AAM3B,YAAY,EACR,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,GACb,CAAC;AAOF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0MzB,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,UAAU,EA6xHtC,CAAC;AAQF,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAuBjE"}
|