@oh-my-pi/pi-catalog 16.2.8 → 16.2.11
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/CHANGELOG.md +33 -0
- package/dist/types/discovery/openai-compatible.d.ts +3 -1
- package/dist/types/identity/classify.d.ts +7 -0
- package/dist/types/identity/family.d.ts +8 -7
- package/dist/types/provider-models/descriptors.d.ts +4 -0
- package/dist/types/provider-models/openai-compat.d.ts +3 -2
- package/package.json +3 -3
- package/src/compat/openai.ts +20 -11
- package/src/discovery/openai-compatible.ts +51 -18
- package/src/identity/classify.ts +14 -0
- package/src/identity/family.ts +12 -14
- package/src/model-thinking.ts +10 -15
- package/src/models.json +564 -737
- package/src/provider-models/descriptors.ts +2 -0
- package/src/provider-models/openai-compat.ts +80 -35
- package/src/variant-collapse.ts +2 -2
package/src/models.json
CHANGED
|
@@ -10758,6 +10758,49 @@
|
|
|
10758
10758
|
"contextWindow": 200000,
|
|
10759
10759
|
"maxTokens": 8192
|
|
10760
10760
|
},
|
|
10761
|
+
"claude-3-7-sonnet-20250219": {
|
|
10762
|
+
"id": "claude-3-7-sonnet-20250219",
|
|
10763
|
+
"name": "Claude Sonnet 3.7",
|
|
10764
|
+
"api": "anthropic-messages",
|
|
10765
|
+
"provider": "anthropic",
|
|
10766
|
+
"baseUrl": "https://api.anthropic.com/v1",
|
|
10767
|
+
"reasoning": true,
|
|
10768
|
+
"input": [
|
|
10769
|
+
"text",
|
|
10770
|
+
"image"
|
|
10771
|
+
],
|
|
10772
|
+
"cost": {
|
|
10773
|
+
"input": 3,
|
|
10774
|
+
"output": 15,
|
|
10775
|
+
"cacheRead": 0.3,
|
|
10776
|
+
"cacheWrite": 3.75
|
|
10777
|
+
},
|
|
10778
|
+
"contextWindow": 200000,
|
|
10779
|
+
"maxTokens": 64000,
|
|
10780
|
+
"thinking": {
|
|
10781
|
+
"mode": "budget",
|
|
10782
|
+
"efforts": [
|
|
10783
|
+
"minimal",
|
|
10784
|
+
"low",
|
|
10785
|
+
"medium",
|
|
10786
|
+
"high",
|
|
10787
|
+
"xhigh"
|
|
10788
|
+
]
|
|
10789
|
+
},
|
|
10790
|
+
"compat": {
|
|
10791
|
+
"officialEndpoint": true,
|
|
10792
|
+
"disableAdaptiveThinking": false,
|
|
10793
|
+
"supportsEagerToolInputStreaming": true,
|
|
10794
|
+
"supportsLongCacheRetention": true,
|
|
10795
|
+
"supportsMidConversationSystem": false,
|
|
10796
|
+
"supportsForcedToolChoice": true,
|
|
10797
|
+
"supportsSamplingParams": true,
|
|
10798
|
+
"requiresToolResultId": false,
|
|
10799
|
+
"requiresThinkingEnabled": false,
|
|
10800
|
+
"replayUnsignedThinking": false,
|
|
10801
|
+
"escapeBuiltinToolNames": false
|
|
10802
|
+
}
|
|
10803
|
+
},
|
|
10761
10804
|
"claude-3-haiku-20240307": {
|
|
10762
10805
|
"id": "claude-3-haiku-20240307",
|
|
10763
10806
|
"name": "Claude Haiku 3",
|
|
@@ -10778,6 +10821,72 @@
|
|
|
10778
10821
|
"contextWindow": 200000,
|
|
10779
10822
|
"maxTokens": 4096
|
|
10780
10823
|
},
|
|
10824
|
+
"claude-3-opus-20240229": {
|
|
10825
|
+
"id": "claude-3-opus-20240229",
|
|
10826
|
+
"name": "Claude Opus 3",
|
|
10827
|
+
"api": "anthropic-messages",
|
|
10828
|
+
"provider": "anthropic",
|
|
10829
|
+
"baseUrl": "https://api.anthropic.com/v1",
|
|
10830
|
+
"reasoning": false,
|
|
10831
|
+
"input": [
|
|
10832
|
+
"text",
|
|
10833
|
+
"image"
|
|
10834
|
+
],
|
|
10835
|
+
"cost": {
|
|
10836
|
+
"input": 15,
|
|
10837
|
+
"output": 75,
|
|
10838
|
+
"cacheRead": 1.5,
|
|
10839
|
+
"cacheWrite": 18.75
|
|
10840
|
+
},
|
|
10841
|
+
"contextWindow": 200000,
|
|
10842
|
+
"maxTokens": 4096,
|
|
10843
|
+
"compat": {
|
|
10844
|
+
"officialEndpoint": true,
|
|
10845
|
+
"disableAdaptiveThinking": false,
|
|
10846
|
+
"supportsEagerToolInputStreaming": true,
|
|
10847
|
+
"supportsLongCacheRetention": true,
|
|
10848
|
+
"supportsMidConversationSystem": false,
|
|
10849
|
+
"supportsForcedToolChoice": true,
|
|
10850
|
+
"supportsSamplingParams": true,
|
|
10851
|
+
"requiresToolResultId": false,
|
|
10852
|
+
"requiresThinkingEnabled": false,
|
|
10853
|
+
"replayUnsignedThinking": false,
|
|
10854
|
+
"escapeBuiltinToolNames": false
|
|
10855
|
+
}
|
|
10856
|
+
},
|
|
10857
|
+
"claude-3-sonnet-20240229": {
|
|
10858
|
+
"id": "claude-3-sonnet-20240229",
|
|
10859
|
+
"name": "Claude Sonnet 3",
|
|
10860
|
+
"api": "anthropic-messages",
|
|
10861
|
+
"provider": "anthropic",
|
|
10862
|
+
"baseUrl": "https://api.anthropic.com/v1",
|
|
10863
|
+
"reasoning": false,
|
|
10864
|
+
"input": [
|
|
10865
|
+
"text",
|
|
10866
|
+
"image"
|
|
10867
|
+
],
|
|
10868
|
+
"cost": {
|
|
10869
|
+
"input": 3,
|
|
10870
|
+
"output": 15,
|
|
10871
|
+
"cacheRead": 0.3,
|
|
10872
|
+
"cacheWrite": 0.3
|
|
10873
|
+
},
|
|
10874
|
+
"contextWindow": 200000,
|
|
10875
|
+
"maxTokens": 4096,
|
|
10876
|
+
"compat": {
|
|
10877
|
+
"officialEndpoint": true,
|
|
10878
|
+
"disableAdaptiveThinking": false,
|
|
10879
|
+
"supportsEagerToolInputStreaming": true,
|
|
10880
|
+
"supportsLongCacheRetention": true,
|
|
10881
|
+
"supportsMidConversationSystem": false,
|
|
10882
|
+
"supportsForcedToolChoice": true,
|
|
10883
|
+
"supportsSamplingParams": true,
|
|
10884
|
+
"requiresToolResultId": false,
|
|
10885
|
+
"requiresThinkingEnabled": false,
|
|
10886
|
+
"replayUnsignedThinking": false,
|
|
10887
|
+
"escapeBuiltinToolNames": false
|
|
10888
|
+
}
|
|
10889
|
+
},
|
|
10781
10890
|
"claude-fable-5": {
|
|
10782
10891
|
"id": "claude-fable-5",
|
|
10783
10892
|
"name": "Claude Fable 5",
|
|
@@ -11355,6 +11464,44 @@
|
|
|
11355
11464
|
"minimal": "low"
|
|
11356
11465
|
}
|
|
11357
11466
|
}
|
|
11467
|
+
},
|
|
11468
|
+
"claude-sonnet-5": {
|
|
11469
|
+
"id": "claude-sonnet-5",
|
|
11470
|
+
"name": "Claude Sonnet 5",
|
|
11471
|
+
"api": "anthropic-messages",
|
|
11472
|
+
"provider": "anthropic",
|
|
11473
|
+
"baseUrl": "https://api.anthropic.com/v1",
|
|
11474
|
+
"reasoning": true,
|
|
11475
|
+
"input": [
|
|
11476
|
+
"text",
|
|
11477
|
+
"image"
|
|
11478
|
+
],
|
|
11479
|
+
"cost": {
|
|
11480
|
+
"input": 3,
|
|
11481
|
+
"output": 15,
|
|
11482
|
+
"cacheRead": 0.3,
|
|
11483
|
+
"cacheWrite": 3.75
|
|
11484
|
+
},
|
|
11485
|
+
"contextWindow": 1000000,
|
|
11486
|
+
"maxTokens": 128000,
|
|
11487
|
+
"thinking": {
|
|
11488
|
+
"mode": "anthropic-adaptive",
|
|
11489
|
+
"efforts": [
|
|
11490
|
+
"minimal",
|
|
11491
|
+
"low",
|
|
11492
|
+
"medium",
|
|
11493
|
+
"high",
|
|
11494
|
+
"xhigh"
|
|
11495
|
+
],
|
|
11496
|
+
"effortMap": {
|
|
11497
|
+
"minimal": "low",
|
|
11498
|
+
"low": "medium",
|
|
11499
|
+
"medium": "high",
|
|
11500
|
+
"high": "xhigh",
|
|
11501
|
+
"xhigh": "max"
|
|
11502
|
+
},
|
|
11503
|
+
"supportsDisplay": true
|
|
11504
|
+
}
|
|
11358
11505
|
}
|
|
11359
11506
|
},
|
|
11360
11507
|
"azure": {
|
|
@@ -12299,6 +12446,26 @@
|
|
|
12299
12446
|
}
|
|
12300
12447
|
},
|
|
12301
12448
|
"cerebras": {
|
|
12449
|
+
"gemma-4-31b": {
|
|
12450
|
+
"id": "gemma-4-31b",
|
|
12451
|
+
"name": "gemma-4-31b",
|
|
12452
|
+
"api": "openai-completions",
|
|
12453
|
+
"provider": "cerebras",
|
|
12454
|
+
"baseUrl": "https://api.cerebras.ai/v1",
|
|
12455
|
+
"reasoning": false,
|
|
12456
|
+
"input": [
|
|
12457
|
+
"text",
|
|
12458
|
+
"image"
|
|
12459
|
+
],
|
|
12460
|
+
"cost": {
|
|
12461
|
+
"input": 0,
|
|
12462
|
+
"output": 0,
|
|
12463
|
+
"cacheRead": 0,
|
|
12464
|
+
"cacheWrite": 0
|
|
12465
|
+
},
|
|
12466
|
+
"contextWindow": 256000,
|
|
12467
|
+
"maxTokens": 8192
|
|
12468
|
+
},
|
|
12302
12469
|
"gpt-oss-120b": {
|
|
12303
12470
|
"id": "gpt-oss-120b",
|
|
12304
12471
|
"name": "GPT OSS 120B",
|
|
@@ -15395,9 +15562,6 @@
|
|
|
15395
15562
|
"medium": "claude-opus-4-6-thinking",
|
|
15396
15563
|
"high": "claude-opus-4-6-thinking"
|
|
15397
15564
|
}
|
|
15398
|
-
},
|
|
15399
|
-
"compat": {
|
|
15400
|
-
"trustExplicitThinkingOnly": true
|
|
15401
15565
|
}
|
|
15402
15566
|
},
|
|
15403
15567
|
"claude-opus-4-6-1m": {
|
|
@@ -15435,49 +15599,6 @@
|
|
|
15435
15599
|
"medium": "claude-opus-4-6-thinking-1m",
|
|
15436
15600
|
"high": "claude-opus-4-6-thinking-1m"
|
|
15437
15601
|
}
|
|
15438
|
-
},
|
|
15439
|
-
"compat": {
|
|
15440
|
-
"trustExplicitThinkingOnly": true
|
|
15441
|
-
}
|
|
15442
|
-
},
|
|
15443
|
-
"claude-opus-4-6-fast": {
|
|
15444
|
-
"id": "claude-opus-4-6-fast",
|
|
15445
|
-
"name": "Claude Opus 4.6 Fast",
|
|
15446
|
-
"api": "devin-agent",
|
|
15447
|
-
"provider": "devin",
|
|
15448
|
-
"baseUrl": "https://server.codeium.com",
|
|
15449
|
-
"reasoning": true,
|
|
15450
|
-
"input": [
|
|
15451
|
-
"text",
|
|
15452
|
-
"image"
|
|
15453
|
-
],
|
|
15454
|
-
"supportsTools": true,
|
|
15455
|
-
"cost": {
|
|
15456
|
-
"input": 0,
|
|
15457
|
-
"output": 0,
|
|
15458
|
-
"cacheRead": 0,
|
|
15459
|
-
"cacheWrite": 0
|
|
15460
|
-
},
|
|
15461
|
-
"contextWindow": 200000,
|
|
15462
|
-
"maxTokens": 64000,
|
|
15463
|
-
"thinking": {
|
|
15464
|
-
"mode": "budget",
|
|
15465
|
-
"efforts": [
|
|
15466
|
-
"minimal",
|
|
15467
|
-
"low",
|
|
15468
|
-
"medium",
|
|
15469
|
-
"high"
|
|
15470
|
-
],
|
|
15471
|
-
"effortRouting": {
|
|
15472
|
-
"off": "claude-opus-4-6-fast",
|
|
15473
|
-
"minimal": "claude-opus-4-6-thinking-fast",
|
|
15474
|
-
"low": "claude-opus-4-6-thinking-fast",
|
|
15475
|
-
"medium": "claude-opus-4-6-thinking-fast",
|
|
15476
|
-
"high": "claude-opus-4-6-thinking-fast"
|
|
15477
|
-
}
|
|
15478
|
-
},
|
|
15479
|
-
"compat": {
|
|
15480
|
-
"trustExplicitThinkingOnly": true
|
|
15481
15602
|
}
|
|
15482
15603
|
},
|
|
15483
15604
|
"claude-opus-4-7": {
|
|
@@ -15518,10 +15639,7 @@
|
|
|
15518
15639
|
"xhigh": "claude-opus-4-7-max"
|
|
15519
15640
|
}
|
|
15520
15641
|
},
|
|
15521
|
-
"requestModelId": "claude-opus-4-7-low"
|
|
15522
|
-
"compat": {
|
|
15523
|
-
"trustExplicitThinkingOnly": true
|
|
15524
|
-
}
|
|
15642
|
+
"requestModelId": "claude-opus-4-7-low"
|
|
15525
15643
|
},
|
|
15526
15644
|
"claude-opus-4-7-fast": {
|
|
15527
15645
|
"id": "claude-opus-4-7-fast",
|
|
@@ -15561,10 +15679,7 @@
|
|
|
15561
15679
|
"xhigh": "claude-opus-4-7-max-fast"
|
|
15562
15680
|
}
|
|
15563
15681
|
},
|
|
15564
|
-
"requestModelId": "claude-opus-4-7-low-fast"
|
|
15565
|
-
"compat": {
|
|
15566
|
-
"trustExplicitThinkingOnly": true
|
|
15567
|
-
}
|
|
15682
|
+
"requestModelId": "claude-opus-4-7-low-fast"
|
|
15568
15683
|
},
|
|
15569
15684
|
"claude-opus-4-8": {
|
|
15570
15685
|
"id": "claude-opus-4-8",
|
|
@@ -15604,10 +15719,7 @@
|
|
|
15604
15719
|
"xhigh": "claude-opus-4-8-max"
|
|
15605
15720
|
}
|
|
15606
15721
|
},
|
|
15607
|
-
"requestModelId": "claude-opus-4-8-low"
|
|
15608
|
-
"compat": {
|
|
15609
|
-
"trustExplicitThinkingOnly": true
|
|
15610
|
-
}
|
|
15722
|
+
"requestModelId": "claude-opus-4-8-low"
|
|
15611
15723
|
},
|
|
15612
15724
|
"claude-opus-4-8-fast": {
|
|
15613
15725
|
"id": "claude-opus-4-8-fast",
|
|
@@ -15647,10 +15759,7 @@
|
|
|
15647
15759
|
"xhigh": "claude-opus-4-8-max-fast"
|
|
15648
15760
|
}
|
|
15649
15761
|
},
|
|
15650
|
-
"requestModelId": "claude-opus-4-8-low-fast"
|
|
15651
|
-
"compat": {
|
|
15652
|
-
"trustExplicitThinkingOnly": true
|
|
15653
|
-
}
|
|
15762
|
+
"requestModelId": "claude-opus-4-8-low-fast"
|
|
15654
15763
|
},
|
|
15655
15764
|
"claude-sonnet-4-6": {
|
|
15656
15765
|
"id": "claude-sonnet-4-6",
|
|
@@ -15687,9 +15796,6 @@
|
|
|
15687
15796
|
"medium": "claude-sonnet-4-6-thinking",
|
|
15688
15797
|
"high": "claude-sonnet-4-6-thinking"
|
|
15689
15798
|
}
|
|
15690
|
-
},
|
|
15691
|
-
"compat": {
|
|
15692
|
-
"trustExplicitThinkingOnly": true
|
|
15693
15799
|
}
|
|
15694
15800
|
},
|
|
15695
15801
|
"claude-sonnet-4-6-1m": {
|
|
@@ -15727,11 +15833,113 @@
|
|
|
15727
15833
|
"medium": "claude-sonnet-4-6-thinking-1m",
|
|
15728
15834
|
"high": "claude-sonnet-4-6-thinking-1m"
|
|
15729
15835
|
}
|
|
15730
|
-
},
|
|
15731
|
-
"compat": {
|
|
15732
|
-
"trustExplicitThinkingOnly": true
|
|
15733
15836
|
}
|
|
15734
15837
|
},
|
|
15838
|
+
"claude-sonnet-5-high": {
|
|
15839
|
+
"id": "claude-sonnet-5-high",
|
|
15840
|
+
"name": "Claude Sonnet 5 High",
|
|
15841
|
+
"api": "devin-agent",
|
|
15842
|
+
"provider": "devin",
|
|
15843
|
+
"baseUrl": "https://server.codeium.com",
|
|
15844
|
+
"reasoning": true,
|
|
15845
|
+
"input": [
|
|
15846
|
+
"text",
|
|
15847
|
+
"image"
|
|
15848
|
+
],
|
|
15849
|
+
"supportsTools": true,
|
|
15850
|
+
"cost": {
|
|
15851
|
+
"input": 0,
|
|
15852
|
+
"output": 0,
|
|
15853
|
+
"cacheRead": 0,
|
|
15854
|
+
"cacheWrite": 0
|
|
15855
|
+
},
|
|
15856
|
+
"contextWindow": 1000000,
|
|
15857
|
+
"maxTokens": 64000
|
|
15858
|
+
},
|
|
15859
|
+
"claude-sonnet-5-low": {
|
|
15860
|
+
"id": "claude-sonnet-5-low",
|
|
15861
|
+
"name": "Claude Sonnet 5 Low",
|
|
15862
|
+
"api": "devin-agent",
|
|
15863
|
+
"provider": "devin",
|
|
15864
|
+
"baseUrl": "https://server.codeium.com",
|
|
15865
|
+
"reasoning": true,
|
|
15866
|
+
"input": [
|
|
15867
|
+
"text",
|
|
15868
|
+
"image"
|
|
15869
|
+
],
|
|
15870
|
+
"supportsTools": true,
|
|
15871
|
+
"cost": {
|
|
15872
|
+
"input": 0,
|
|
15873
|
+
"output": 0,
|
|
15874
|
+
"cacheRead": 0,
|
|
15875
|
+
"cacheWrite": 0
|
|
15876
|
+
},
|
|
15877
|
+
"contextWindow": 1000000,
|
|
15878
|
+
"maxTokens": 64000
|
|
15879
|
+
},
|
|
15880
|
+
"claude-sonnet-5-max": {
|
|
15881
|
+
"id": "claude-sonnet-5-max",
|
|
15882
|
+
"name": "Claude Sonnet 5 Max",
|
|
15883
|
+
"api": "devin-agent",
|
|
15884
|
+
"provider": "devin",
|
|
15885
|
+
"baseUrl": "https://server.codeium.com",
|
|
15886
|
+
"reasoning": true,
|
|
15887
|
+
"input": [
|
|
15888
|
+
"text",
|
|
15889
|
+
"image"
|
|
15890
|
+
],
|
|
15891
|
+
"supportsTools": true,
|
|
15892
|
+
"cost": {
|
|
15893
|
+
"input": 0,
|
|
15894
|
+
"output": 0,
|
|
15895
|
+
"cacheRead": 0,
|
|
15896
|
+
"cacheWrite": 0
|
|
15897
|
+
},
|
|
15898
|
+
"contextWindow": 1000000,
|
|
15899
|
+
"maxTokens": 64000
|
|
15900
|
+
},
|
|
15901
|
+
"claude-sonnet-5-medium": {
|
|
15902
|
+
"id": "claude-sonnet-5-medium",
|
|
15903
|
+
"name": "Claude Sonnet 5 Medium",
|
|
15904
|
+
"api": "devin-agent",
|
|
15905
|
+
"provider": "devin",
|
|
15906
|
+
"baseUrl": "https://server.codeium.com",
|
|
15907
|
+
"reasoning": true,
|
|
15908
|
+
"input": [
|
|
15909
|
+
"text",
|
|
15910
|
+
"image"
|
|
15911
|
+
],
|
|
15912
|
+
"supportsTools": true,
|
|
15913
|
+
"cost": {
|
|
15914
|
+
"input": 0,
|
|
15915
|
+
"output": 0,
|
|
15916
|
+
"cacheRead": 0,
|
|
15917
|
+
"cacheWrite": 0
|
|
15918
|
+
},
|
|
15919
|
+
"contextWindow": 1000000,
|
|
15920
|
+
"maxTokens": 64000
|
|
15921
|
+
},
|
|
15922
|
+
"claude-sonnet-5-xhigh": {
|
|
15923
|
+
"id": "claude-sonnet-5-xhigh",
|
|
15924
|
+
"name": "Claude Sonnet 5 XHigh",
|
|
15925
|
+
"api": "devin-agent",
|
|
15926
|
+
"provider": "devin",
|
|
15927
|
+
"baseUrl": "https://server.codeium.com",
|
|
15928
|
+
"reasoning": true,
|
|
15929
|
+
"input": [
|
|
15930
|
+
"text",
|
|
15931
|
+
"image"
|
|
15932
|
+
],
|
|
15933
|
+
"supportsTools": true,
|
|
15934
|
+
"cost": {
|
|
15935
|
+
"input": 0,
|
|
15936
|
+
"output": 0,
|
|
15937
|
+
"cacheRead": 0,
|
|
15938
|
+
"cacheWrite": 0
|
|
15939
|
+
},
|
|
15940
|
+
"contextWindow": 1000000,
|
|
15941
|
+
"maxTokens": 64000
|
|
15942
|
+
},
|
|
15735
15943
|
"deepseek-v4": {
|
|
15736
15944
|
"id": "deepseek-v4",
|
|
15737
15945
|
"name": "DeepSeek V4 Pro",
|
|
@@ -15784,10 +15992,7 @@
|
|
|
15784
15992
|
"high": "gemini-3-1-pro-high"
|
|
15785
15993
|
}
|
|
15786
15994
|
},
|
|
15787
|
-
"requestModelId": "gemini-3-1-pro-low"
|
|
15788
|
-
"compat": {
|
|
15789
|
-
"trustExplicitThinkingOnly": true
|
|
15790
|
-
}
|
|
15995
|
+
"requestModelId": "gemini-3-1-pro-low"
|
|
15791
15996
|
},
|
|
15792
15997
|
"gemini-3-5-flash": {
|
|
15793
15998
|
"id": "gemini-3-5-flash",
|
|
@@ -15825,10 +16030,7 @@
|
|
|
15825
16030
|
"high": "gemini-3-5-flash-high"
|
|
15826
16031
|
}
|
|
15827
16032
|
},
|
|
15828
|
-
"requestModelId": "gemini-3-5-flash-minimal"
|
|
15829
|
-
"compat": {
|
|
15830
|
-
"trustExplicitThinkingOnly": true
|
|
15831
|
-
}
|
|
16033
|
+
"requestModelId": "gemini-3-5-flash-minimal"
|
|
15832
16034
|
},
|
|
15833
16035
|
"gemini-3-flash": {
|
|
15834
16036
|
"id": "gemini-3-flash",
|
|
@@ -15866,10 +16068,7 @@
|
|
|
15866
16068
|
"high": "MODEL_GOOGLE_GEMINI_3_0_FLASH_HIGH"
|
|
15867
16069
|
}
|
|
15868
16070
|
},
|
|
15869
|
-
"requestModelId": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL"
|
|
15870
|
-
"compat": {
|
|
15871
|
-
"trustExplicitThinkingOnly": true
|
|
15872
|
-
}
|
|
16071
|
+
"requestModelId": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL"
|
|
15873
16072
|
},
|
|
15874
16073
|
"glm-5-1": {
|
|
15875
16074
|
"id": "glm-5-1",
|
|
@@ -16049,10 +16248,7 @@
|
|
|
16049
16248
|
"xhigh": "MODEL_GPT_5_2_XHIGH"
|
|
16050
16249
|
}
|
|
16051
16250
|
},
|
|
16052
|
-
"requestModelId": "MODEL_GPT_5_2_NONE"
|
|
16053
|
-
"compat": {
|
|
16054
|
-
"trustExplicitThinkingOnly": true
|
|
16055
|
-
}
|
|
16251
|
+
"requestModelId": "MODEL_GPT_5_2_NONE"
|
|
16056
16252
|
},
|
|
16057
16253
|
"gpt-5-3-codex": {
|
|
16058
16254
|
"id": "gpt-5-3-codex",
|
|
@@ -16092,10 +16288,7 @@
|
|
|
16092
16288
|
"xhigh": "gpt-5-3-codex-xhigh"
|
|
16093
16289
|
}
|
|
16094
16290
|
},
|
|
16095
|
-
"requestModelId": "gpt-5-3-codex-low"
|
|
16096
|
-
"compat": {
|
|
16097
|
-
"trustExplicitThinkingOnly": true
|
|
16098
|
-
}
|
|
16291
|
+
"requestModelId": "gpt-5-3-codex-low"
|
|
16099
16292
|
},
|
|
16100
16293
|
"gpt-5-3-codex-fast": {
|
|
16101
16294
|
"id": "gpt-5-3-codex-fast",
|
|
@@ -16135,10 +16328,7 @@
|
|
|
16135
16328
|
"xhigh": "gpt-5-3-codex-xhigh-priority"
|
|
16136
16329
|
}
|
|
16137
16330
|
},
|
|
16138
|
-
"requestModelId": "gpt-5-3-codex-low-priority"
|
|
16139
|
-
"compat": {
|
|
16140
|
-
"trustExplicitThinkingOnly": true
|
|
16141
|
-
}
|
|
16331
|
+
"requestModelId": "gpt-5-3-codex-low-priority"
|
|
16142
16332
|
},
|
|
16143
16333
|
"gpt-5-4": {
|
|
16144
16334
|
"id": "gpt-5-4",
|
|
@@ -16178,10 +16368,7 @@
|
|
|
16178
16368
|
"xhigh": "gpt-5-4-xhigh"
|
|
16179
16369
|
}
|
|
16180
16370
|
},
|
|
16181
|
-
"requestModelId": "gpt-5-4-none"
|
|
16182
|
-
"compat": {
|
|
16183
|
-
"trustExplicitThinkingOnly": true
|
|
16184
|
-
}
|
|
16371
|
+
"requestModelId": "gpt-5-4-none"
|
|
16185
16372
|
},
|
|
16186
16373
|
"gpt-5-4-fast": {
|
|
16187
16374
|
"id": "gpt-5-4-fast",
|
|
@@ -16221,10 +16408,7 @@
|
|
|
16221
16408
|
"xhigh": "gpt-5-4-xhigh-priority"
|
|
16222
16409
|
}
|
|
16223
16410
|
},
|
|
16224
|
-
"requestModelId": "gpt-5-4-none-priority"
|
|
16225
|
-
"compat": {
|
|
16226
|
-
"trustExplicitThinkingOnly": true
|
|
16227
|
-
}
|
|
16411
|
+
"requestModelId": "gpt-5-4-none-priority"
|
|
16228
16412
|
},
|
|
16229
16413
|
"gpt-5-4-mini": {
|
|
16230
16414
|
"id": "gpt-5-4-mini",
|
|
@@ -16264,10 +16448,7 @@
|
|
|
16264
16448
|
"xhigh": "gpt-5-4-mini-xhigh"
|
|
16265
16449
|
}
|
|
16266
16450
|
},
|
|
16267
|
-
"requestModelId": "gpt-5-4-mini-low"
|
|
16268
|
-
"compat": {
|
|
16269
|
-
"trustExplicitThinkingOnly": true
|
|
16270
|
-
}
|
|
16451
|
+
"requestModelId": "gpt-5-4-mini-low"
|
|
16271
16452
|
},
|
|
16272
16453
|
"gpt-5-5": {
|
|
16273
16454
|
"id": "gpt-5-5",
|
|
@@ -16307,10 +16488,7 @@
|
|
|
16307
16488
|
"xhigh": "gpt-5-5-xhigh"
|
|
16308
16489
|
}
|
|
16309
16490
|
},
|
|
16310
|
-
"requestModelId": "gpt-5-5-none"
|
|
16311
|
-
"compat": {
|
|
16312
|
-
"trustExplicitThinkingOnly": true
|
|
16313
|
-
}
|
|
16491
|
+
"requestModelId": "gpt-5-5-none"
|
|
16314
16492
|
},
|
|
16315
16493
|
"gpt-5-5-fast": {
|
|
16316
16494
|
"id": "gpt-5-5-fast",
|
|
@@ -16350,10 +16528,7 @@
|
|
|
16350
16528
|
"xhigh": "gpt-5-5-xhigh-priority"
|
|
16351
16529
|
}
|
|
16352
16530
|
},
|
|
16353
|
-
"requestModelId": "gpt-5-5-none-priority"
|
|
16354
|
-
"compat": {
|
|
16355
|
-
"trustExplicitThinkingOnly": true
|
|
16356
|
-
}
|
|
16531
|
+
"requestModelId": "gpt-5-5-none-priority"
|
|
16357
16532
|
},
|
|
16358
16533
|
"kimi-k2-6": {
|
|
16359
16534
|
"id": "kimi-k2-6",
|
|
@@ -16659,12 +16834,7 @@
|
|
|
16659
16834
|
}
|
|
16660
16835
|
},
|
|
16661
16836
|
"compat": {
|
|
16662
|
-
"supportsDeveloperRole": false,
|
|
16663
|
-
"supportsReasoningEffort": true,
|
|
16664
|
-
"maxTokensField": "max_tokens",
|
|
16665
16837
|
"supportsToolChoice": false,
|
|
16666
|
-
"reasoningContentField": "reasoning_content",
|
|
16667
|
-
"requiresReasoningContentForToolCalls": true,
|
|
16668
16838
|
"requiresAssistantContentForToolCalls": true
|
|
16669
16839
|
}
|
|
16670
16840
|
},
|
|
@@ -16704,12 +16874,7 @@
|
|
|
16704
16874
|
}
|
|
16705
16875
|
},
|
|
16706
16876
|
"compat": {
|
|
16707
|
-
"supportsDeveloperRole": false,
|
|
16708
|
-
"supportsReasoningEffort": true,
|
|
16709
|
-
"maxTokensField": "max_tokens",
|
|
16710
16877
|
"supportsToolChoice": false,
|
|
16711
|
-
"reasoningContentField": "reasoning_content",
|
|
16712
|
-
"requiresReasoningContentForToolCalls": true,
|
|
16713
16878
|
"requiresAssistantContentForToolCalls": true
|
|
16714
16879
|
}
|
|
16715
16880
|
},
|
|
@@ -17155,9 +17320,9 @@
|
|
|
17155
17320
|
"image"
|
|
17156
17321
|
],
|
|
17157
17322
|
"cost": {
|
|
17158
|
-
"input": 0.
|
|
17159
|
-
"output":
|
|
17160
|
-
"cacheRead": 0.
|
|
17323
|
+
"input": 0.3,
|
|
17324
|
+
"output": 1.2,
|
|
17325
|
+
"cacheRead": 0.06,
|
|
17161
17326
|
"cacheWrite": 0
|
|
17162
17327
|
},
|
|
17163
17328
|
"contextWindow": 512000,
|
|
@@ -17785,7 +17950,6 @@
|
|
|
17785
17950
|
},
|
|
17786
17951
|
"compat": {
|
|
17787
17952
|
"supportsStore": false,
|
|
17788
|
-
"supportsDeveloperRole": false,
|
|
17789
17953
|
"supportsReasoningEffort": false
|
|
17790
17954
|
},
|
|
17791
17955
|
"thinking": {
|
|
@@ -17926,7 +18090,6 @@
|
|
|
17926
18090
|
},
|
|
17927
18091
|
"compat": {
|
|
17928
18092
|
"supportsStore": false,
|
|
17929
|
-
"supportsDeveloperRole": false,
|
|
17930
18093
|
"supportsReasoningEffort": false
|
|
17931
18094
|
},
|
|
17932
18095
|
"premiumMultiplier": 0
|
|
@@ -18378,7 +18541,6 @@
|
|
|
18378
18541
|
},
|
|
18379
18542
|
"compat": {
|
|
18380
18543
|
"supportsStore": false,
|
|
18381
|
-
"supportsDeveloperRole": false,
|
|
18382
18544
|
"supportsReasoningEffort": false
|
|
18383
18545
|
},
|
|
18384
18546
|
"premiumMultiplier": 0.25,
|
|
@@ -18417,7 +18579,6 @@
|
|
|
18417
18579
|
},
|
|
18418
18580
|
"compat": {
|
|
18419
18581
|
"supportsStore": false,
|
|
18420
|
-
"supportsDeveloperRole": false,
|
|
18421
18582
|
"supportsReasoningEffort": false
|
|
18422
18583
|
},
|
|
18423
18584
|
"thinking": {
|
|
@@ -24377,6 +24538,25 @@
|
|
|
24377
24538
|
]
|
|
24378
24539
|
}
|
|
24379
24540
|
},
|
|
24541
|
+
"anthropic/claude-sonnet-5": {
|
|
24542
|
+
"id": "anthropic/claude-sonnet-5",
|
|
24543
|
+
"name": "Claude Sonnet 5",
|
|
24544
|
+
"api": "openai-completions",
|
|
24545
|
+
"provider": "kilo",
|
|
24546
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
24547
|
+
"reasoning": false,
|
|
24548
|
+
"input": [
|
|
24549
|
+
"text"
|
|
24550
|
+
],
|
|
24551
|
+
"cost": {
|
|
24552
|
+
"input": 0,
|
|
24553
|
+
"output": 0,
|
|
24554
|
+
"cacheRead": 0,
|
|
24555
|
+
"cacheWrite": 0
|
|
24556
|
+
},
|
|
24557
|
+
"contextWindow": 1000000,
|
|
24558
|
+
"maxTokens": 128000
|
|
24559
|
+
},
|
|
24380
24560
|
"arcee-ai/coder-large": {
|
|
24381
24561
|
"id": "arcee-ai/coder-large",
|
|
24382
24562
|
"name": "Coder Large",
|
|
@@ -25546,33 +25726,6 @@
|
|
|
25546
25726
|
"high": "giga-potato-thinking",
|
|
25547
25727
|
"xhigh": "giga-potato-thinking"
|
|
25548
25728
|
}
|
|
25549
|
-
},
|
|
25550
|
-
"compat": {
|
|
25551
|
-
"supportsStore": false,
|
|
25552
|
-
"supportsDeveloperRole": false,
|
|
25553
|
-
"supportsMultipleSystemMessages": false,
|
|
25554
|
-
"supportsReasoningEffort": true,
|
|
25555
|
-
"supportsReasoningParams": true,
|
|
25556
|
-
"reasoningEffortMap": {},
|
|
25557
|
-
"supportsUsageInStreaming": true,
|
|
25558
|
-
"alwaysSendMaxTokens": false,
|
|
25559
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
25560
|
-
"disableReasoningOnToolChoice": false,
|
|
25561
|
-
"supportsToolChoice": true,
|
|
25562
|
-
"maxTokensField": "max_completion_tokens",
|
|
25563
|
-
"requiresToolResultName": false,
|
|
25564
|
-
"requiresAssistantAfterToolResult": false,
|
|
25565
|
-
"requiresThinkingAsText": false,
|
|
25566
|
-
"requiresMistralToolIds": false,
|
|
25567
|
-
"thinkingFormat": "openai",
|
|
25568
|
-
"reasoningContentField": "reasoning_content",
|
|
25569
|
-
"requiresReasoningContentForToolCalls": false,
|
|
25570
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
25571
|
-
"requiresAssistantContentForToolCalls": false,
|
|
25572
|
-
"isOpenRouterHost": false,
|
|
25573
|
-
"isVercelGatewayHost": false,
|
|
25574
|
-
"supportsStrictMode": false,
|
|
25575
|
-
"toolStrictMode": "mixed"
|
|
25576
25729
|
}
|
|
25577
25730
|
},
|
|
25578
25731
|
"google/gemini-2.0-flash-001": {
|
|
@@ -25984,6 +26137,25 @@
|
|
|
25984
26137
|
"requiresEffort": true
|
|
25985
26138
|
}
|
|
25986
26139
|
},
|
|
26140
|
+
"google/gemini-3.1-flash-lite-image": {
|
|
26141
|
+
"id": "google/gemini-3.1-flash-lite-image",
|
|
26142
|
+
"name": "Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)",
|
|
26143
|
+
"api": "openai-completions",
|
|
26144
|
+
"provider": "kilo",
|
|
26145
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
26146
|
+
"reasoning": false,
|
|
26147
|
+
"input": [
|
|
26148
|
+
"text"
|
|
26149
|
+
],
|
|
26150
|
+
"cost": {
|
|
26151
|
+
"input": 0,
|
|
26152
|
+
"output": 0,
|
|
26153
|
+
"cacheRead": 0,
|
|
26154
|
+
"cacheWrite": 0
|
|
26155
|
+
},
|
|
26156
|
+
"contextWindow": null,
|
|
26157
|
+
"maxTokens": null
|
|
26158
|
+
},
|
|
25987
26159
|
"google/gemini-3.1-flash-lite-preview": {
|
|
25988
26160
|
"id": "google/gemini-3.1-flash-lite-preview",
|
|
25989
26161
|
"name": "Gemini 3.1 Flash Lite Preview",
|
|
@@ -30751,50 +30923,6 @@
|
|
|
30751
30923
|
"high": "perplexity/sonar-reasoning-pro",
|
|
30752
30924
|
"xhigh": "perplexity/sonar-reasoning-pro"
|
|
30753
30925
|
}
|
|
30754
|
-
},
|
|
30755
|
-
"compat": {
|
|
30756
|
-
"supportsStore": false,
|
|
30757
|
-
"supportsDeveloperRole": false,
|
|
30758
|
-
"supportsMultipleSystemMessages": false,
|
|
30759
|
-
"supportsReasoningEffort": true,
|
|
30760
|
-
"supportsReasoningParams": true,
|
|
30761
|
-
"reasoningEffortMap": {},
|
|
30762
|
-
"supportsUsageInStreaming": true,
|
|
30763
|
-
"enableGeminiThinkingLoopGuard": false,
|
|
30764
|
-
"alwaysSendMaxTokens": false,
|
|
30765
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
30766
|
-
"disableReasoningOnToolChoice": false,
|
|
30767
|
-
"supportsToolChoice": true,
|
|
30768
|
-
"supportsForcedToolChoice": true,
|
|
30769
|
-
"supportsNamedToolChoice": true,
|
|
30770
|
-
"maxTokensField": "max_completion_tokens",
|
|
30771
|
-
"requiresToolResultName": false,
|
|
30772
|
-
"requiresAssistantAfterToolResult": false,
|
|
30773
|
-
"requiresThinkingAsText": false,
|
|
30774
|
-
"requiresMistralToolIds": false,
|
|
30775
|
-
"thinkingFormat": "openai",
|
|
30776
|
-
"reasoningDisableMode": "lowest-effort",
|
|
30777
|
-
"omitReasoningEffort": false,
|
|
30778
|
-
"includeEncryptedReasoning": true,
|
|
30779
|
-
"filterReasoningHistory": false,
|
|
30780
|
-
"reasoningContentField": "reasoning_content",
|
|
30781
|
-
"requiresReasoningContentForToolCalls": false,
|
|
30782
|
-
"requiresReasoningContentForAllAssistantTurns": false,
|
|
30783
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
30784
|
-
"replayReasoningContent": false,
|
|
30785
|
-
"qwenPreserveThinking": false,
|
|
30786
|
-
"requiresAssistantContentForToolCalls": false,
|
|
30787
|
-
"isOpenRouterHost": false,
|
|
30788
|
-
"wireModelIdMode": "raw",
|
|
30789
|
-
"isVercelGatewayHost": false,
|
|
30790
|
-
"supportsStrictMode": false,
|
|
30791
|
-
"toolStrictMode": "mixed",
|
|
30792
|
-
"stripDeepseekSpecialTokens": false,
|
|
30793
|
-
"streamMarkupHealingPattern": "thinking",
|
|
30794
|
-
"reasoningDeltasMayBeCumulative": false,
|
|
30795
|
-
"emptyLengthFinishIsContextError": false,
|
|
30796
|
-
"usesOpenAIToolCallIdLimit": false,
|
|
30797
|
-
"dropThinkingWhenReasoningEffort": false
|
|
30798
30926
|
}
|
|
30799
30927
|
},
|
|
30800
30928
|
"perplexity/sonar-pro-search": {
|
|
@@ -34005,11 +34133,6 @@
|
|
|
34005
34133
|
"medium",
|
|
34006
34134
|
"high"
|
|
34007
34135
|
]
|
|
34008
|
-
},
|
|
34009
|
-
"compat": {
|
|
34010
|
-
"thinkingFormat": "zai",
|
|
34011
|
-
"reasoningContentField": "reasoning_content",
|
|
34012
|
-
"supportsDeveloperRole": false
|
|
34013
34136
|
}
|
|
34014
34137
|
},
|
|
34015
34138
|
"kimi-k2": {
|
|
@@ -34033,12 +34156,7 @@
|
|
|
34033
34156
|
"cacheWrite": 0
|
|
34034
34157
|
},
|
|
34035
34158
|
"contextWindow": 262144,
|
|
34036
|
-
"maxTokens": 262144
|
|
34037
|
-
"compat": {
|
|
34038
|
-
"thinkingFormat": "zai",
|
|
34039
|
-
"reasoningContentField": "reasoning_content",
|
|
34040
|
-
"supportsDeveloperRole": false
|
|
34041
|
-
}
|
|
34159
|
+
"maxTokens": 262144
|
|
34042
34160
|
},
|
|
34043
34161
|
"kimi-k2-turbo-preview": {
|
|
34044
34162
|
"id": "kimi-k2-turbo-preview",
|
|
@@ -34061,12 +34179,7 @@
|
|
|
34061
34179
|
"cacheWrite": 0
|
|
34062
34180
|
},
|
|
34063
34181
|
"contextWindow": 262144,
|
|
34064
|
-
"maxTokens": 32000
|
|
34065
|
-
"compat": {
|
|
34066
|
-
"thinkingFormat": "zai",
|
|
34067
|
-
"reasoningContentField": "reasoning_content",
|
|
34068
|
-
"supportsDeveloperRole": false
|
|
34069
|
-
}
|
|
34182
|
+
"maxTokens": 32000
|
|
34070
34183
|
},
|
|
34071
34184
|
"kimi-k2.5": {
|
|
34072
34185
|
"id": "kimi-k2.5",
|
|
@@ -34099,11 +34212,6 @@
|
|
|
34099
34212
|
"medium",
|
|
34100
34213
|
"high"
|
|
34101
34214
|
]
|
|
34102
|
-
},
|
|
34103
|
-
"compat": {
|
|
34104
|
-
"thinkingFormat": "zai",
|
|
34105
|
-
"reasoningContentField": "reasoning_content",
|
|
34106
|
-
"supportsDeveloperRole": false
|
|
34107
34215
|
}
|
|
34108
34216
|
}
|
|
34109
34217
|
},
|
|
@@ -34725,10 +34833,10 @@
|
|
|
34725
34833
|
"cacheWrite": 0
|
|
34726
34834
|
},
|
|
34727
34835
|
"compat": {
|
|
34728
|
-
"supportsDeveloperRole": false,
|
|
34729
34836
|
"supportsReasoningEffort": false,
|
|
34730
|
-
"
|
|
34731
|
-
"
|
|
34837
|
+
"supportsStore": false,
|
|
34838
|
+
"supportsDeveloperRole": false,
|
|
34839
|
+
"reasoningContentField": "reasoning_content"
|
|
34732
34840
|
},
|
|
34733
34841
|
"contextWindow": 1000000,
|
|
34734
34842
|
"maxTokens": 32000,
|
|
@@ -34827,10 +34935,10 @@
|
|
|
34827
34935
|
"cacheWrite": 0
|
|
34828
34936
|
},
|
|
34829
34937
|
"compat": {
|
|
34830
|
-
"supportsDeveloperRole": false,
|
|
34831
34938
|
"supportsReasoningEffort": false,
|
|
34832
|
-
"
|
|
34833
|
-
"
|
|
34939
|
+
"supportsStore": false,
|
|
34940
|
+
"supportsDeveloperRole": false,
|
|
34941
|
+
"reasoningContentField": "reasoning_content"
|
|
34834
34942
|
},
|
|
34835
34943
|
"contextWindow": 204800,
|
|
34836
34944
|
"maxTokens": 32000,
|
|
@@ -35034,10 +35142,10 @@
|
|
|
35034
35142
|
"cacheWrite": 0
|
|
35035
35143
|
},
|
|
35036
35144
|
"compat": {
|
|
35037
|
-
"supportsDeveloperRole": false,
|
|
35038
35145
|
"supportsReasoningEffort": false,
|
|
35039
|
-
"
|
|
35040
|
-
"
|
|
35146
|
+
"supportsStore": false,
|
|
35147
|
+
"supportsDeveloperRole": false,
|
|
35148
|
+
"reasoningContentField": "reasoning_content"
|
|
35041
35149
|
},
|
|
35042
35150
|
"contextWindow": 1000000,
|
|
35043
35151
|
"maxTokens": 32000,
|
|
@@ -35136,10 +35244,10 @@
|
|
|
35136
35244
|
"cacheWrite": 0
|
|
35137
35245
|
},
|
|
35138
35246
|
"compat": {
|
|
35139
|
-
"supportsDeveloperRole": false,
|
|
35140
35247
|
"supportsReasoningEffort": false,
|
|
35141
|
-
"
|
|
35142
|
-
"
|
|
35248
|
+
"supportsStore": false,
|
|
35249
|
+
"supportsDeveloperRole": false,
|
|
35250
|
+
"reasoningContentField": "reasoning_content"
|
|
35143
35251
|
},
|
|
35144
35252
|
"contextWindow": 204800,
|
|
35145
35253
|
"maxTokens": 32000,
|
|
@@ -37128,33 +37236,6 @@
|
|
|
37128
37236
|
"high": "arcee-ai/trinity-large-thinking",
|
|
37129
37237
|
"xhigh": "arcee-ai/trinity-large-thinking"
|
|
37130
37238
|
}
|
|
37131
|
-
},
|
|
37132
|
-
"compat": {
|
|
37133
|
-
"supportsStore": true,
|
|
37134
|
-
"supportsDeveloperRole": false,
|
|
37135
|
-
"supportsMultipleSystemMessages": false,
|
|
37136
|
-
"supportsReasoningEffort": true,
|
|
37137
|
-
"supportsReasoningParams": true,
|
|
37138
|
-
"reasoningEffortMap": {},
|
|
37139
|
-
"supportsUsageInStreaming": true,
|
|
37140
|
-
"alwaysSendMaxTokens": false,
|
|
37141
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
37142
|
-
"disableReasoningOnToolChoice": false,
|
|
37143
|
-
"supportsToolChoice": true,
|
|
37144
|
-
"maxTokensField": "max_completion_tokens",
|
|
37145
|
-
"requiresToolResultName": false,
|
|
37146
|
-
"requiresAssistantAfterToolResult": false,
|
|
37147
|
-
"requiresThinkingAsText": false,
|
|
37148
|
-
"requiresMistralToolIds": false,
|
|
37149
|
-
"thinkingFormat": "openai",
|
|
37150
|
-
"reasoningContentField": "reasoning_content",
|
|
37151
|
-
"requiresReasoningContentForToolCalls": false,
|
|
37152
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
37153
|
-
"requiresAssistantContentForToolCalls": false,
|
|
37154
|
-
"isOpenRouterHost": false,
|
|
37155
|
-
"isVercelGatewayHost": false,
|
|
37156
|
-
"supportsStrictMode": false,
|
|
37157
|
-
"toolStrictMode": "mixed"
|
|
37158
37239
|
}
|
|
37159
37240
|
},
|
|
37160
37241
|
"arcee-ai/trinity-large-preview": {
|
|
@@ -38987,31 +39068,9 @@
|
|
|
38987
39068
|
}
|
|
38988
39069
|
},
|
|
38989
39070
|
"compat": {
|
|
38990
|
-
"supportsStore": true,
|
|
38991
|
-
"supportsDeveloperRole": false,
|
|
38992
|
-
"supportsMultipleSystemMessages": true,
|
|
38993
|
-
"supportsReasoningEffort": true,
|
|
38994
|
-
"supportsReasoningParams": true,
|
|
38995
|
-
"reasoningEffortMap": {},
|
|
38996
|
-
"supportsUsageInStreaming": true,
|
|
38997
|
-
"alwaysSendMaxTokens": false,
|
|
38998
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
38999
39071
|
"disableReasoningOnToolChoice": false,
|
|
39000
|
-
"supportsToolChoice": true,
|
|
39001
|
-
"maxTokensField": "max_completion_tokens",
|
|
39002
|
-
"requiresToolResultName": false,
|
|
39003
|
-
"requiresAssistantAfterToolResult": false,
|
|
39004
|
-
"requiresThinkingAsText": false,
|
|
39005
|
-
"requiresMistralToolIds": false,
|
|
39006
|
-
"thinkingFormat": "openai",
|
|
39007
|
-
"reasoningContentField": "reasoning_content",
|
|
39008
39072
|
"requiresReasoningContentForToolCalls": false,
|
|
39009
|
-
"allowsSyntheticReasoningContentForToolCalls": true
|
|
39010
|
-
"requiresAssistantContentForToolCalls": false,
|
|
39011
|
-
"isOpenRouterHost": false,
|
|
39012
|
-
"isVercelGatewayHost": false,
|
|
39013
|
-
"supportsStrictMode": false,
|
|
39014
|
-
"toolStrictMode": "mixed"
|
|
39073
|
+
"allowsSyntheticReasoningContentForToolCalls": true
|
|
39015
39074
|
}
|
|
39016
39075
|
},
|
|
39017
39076
|
"deepseek-chat": {
|
|
@@ -39660,33 +39719,6 @@
|
|
|
39660
39719
|
"high": "doubao-seed-1-6-thinking-250615",
|
|
39661
39720
|
"xhigh": "doubao-seed-1-6-thinking-250615"
|
|
39662
39721
|
}
|
|
39663
|
-
},
|
|
39664
|
-
"compat": {
|
|
39665
|
-
"supportsStore": true,
|
|
39666
|
-
"supportsDeveloperRole": false,
|
|
39667
|
-
"supportsMultipleSystemMessages": false,
|
|
39668
|
-
"supportsReasoningEffort": true,
|
|
39669
|
-
"supportsReasoningParams": true,
|
|
39670
|
-
"reasoningEffortMap": {},
|
|
39671
|
-
"supportsUsageInStreaming": true,
|
|
39672
|
-
"alwaysSendMaxTokens": false,
|
|
39673
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
39674
|
-
"disableReasoningOnToolChoice": false,
|
|
39675
|
-
"supportsToolChoice": true,
|
|
39676
|
-
"maxTokensField": "max_completion_tokens",
|
|
39677
|
-
"requiresToolResultName": false,
|
|
39678
|
-
"requiresAssistantAfterToolResult": false,
|
|
39679
|
-
"requiresThinkingAsText": false,
|
|
39680
|
-
"requiresMistralToolIds": false,
|
|
39681
|
-
"thinkingFormat": "openai",
|
|
39682
|
-
"reasoningContentField": "reasoning_content",
|
|
39683
|
-
"requiresReasoningContentForToolCalls": false,
|
|
39684
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
39685
|
-
"requiresAssistantContentForToolCalls": false,
|
|
39686
|
-
"isOpenRouterHost": false,
|
|
39687
|
-
"isVercelGatewayHost": false,
|
|
39688
|
-
"supportsStrictMode": false,
|
|
39689
|
-
"toolStrictMode": "mixed"
|
|
39690
39722
|
}
|
|
39691
39723
|
},
|
|
39692
39724
|
"doubao-seed-1-6-flash-250615": {
|
|
@@ -40674,7 +40706,6 @@
|
|
|
40674
40706
|
},
|
|
40675
40707
|
"compat": {
|
|
40676
40708
|
"supportsStore": false,
|
|
40677
|
-
"supportsDeveloperRole": false,
|
|
40678
40709
|
"supportsReasoningEffort": false
|
|
40679
40710
|
}
|
|
40680
40711
|
},
|
|
@@ -40809,31 +40840,7 @@
|
|
|
40809
40840
|
"requiresEffort": true
|
|
40810
40841
|
},
|
|
40811
40842
|
"compat": {
|
|
40812
|
-
"
|
|
40813
|
-
"supportsDeveloperRole": false,
|
|
40814
|
-
"supportsMultipleSystemMessages": false,
|
|
40815
|
-
"supportsReasoningEffort": true,
|
|
40816
|
-
"supportsReasoningParams": true,
|
|
40817
|
-
"reasoningEffortMap": {},
|
|
40818
|
-
"supportsUsageInStreaming": false,
|
|
40819
|
-
"alwaysSendMaxTokens": false,
|
|
40820
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
40821
|
-
"disableReasoningOnToolChoice": false,
|
|
40822
|
-
"supportsToolChoice": true,
|
|
40823
|
-
"maxTokensField": "max_completion_tokens",
|
|
40824
|
-
"requiresToolResultName": false,
|
|
40825
|
-
"requiresAssistantAfterToolResult": false,
|
|
40826
|
-
"requiresThinkingAsText": false,
|
|
40827
|
-
"requiresMistralToolIds": false,
|
|
40828
|
-
"thinkingFormat": "openai",
|
|
40829
|
-
"reasoningContentField": "reasoning_content",
|
|
40830
|
-
"requiresReasoningContentForToolCalls": false,
|
|
40831
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
40832
|
-
"requiresAssistantContentForToolCalls": false,
|
|
40833
|
-
"isOpenRouterHost": false,
|
|
40834
|
-
"isVercelGatewayHost": false,
|
|
40835
|
-
"supportsStrictMode": false,
|
|
40836
|
-
"toolStrictMode": "mixed"
|
|
40843
|
+
"supportsUsageInStreaming": false
|
|
40837
40844
|
}
|
|
40838
40845
|
},
|
|
40839
40846
|
"gemini-exp-1206": {
|
|
@@ -44132,9 +44139,7 @@
|
|
|
44132
44139
|
"requiresEffort": true
|
|
44133
44140
|
},
|
|
44134
44141
|
"compat": {
|
|
44135
|
-
"
|
|
44136
|
-
"thinkingFormat": "zai",
|
|
44137
|
-
"reasoningContentField": "reasoning_content"
|
|
44142
|
+
"thinkingFormat": "zai"
|
|
44138
44143
|
}
|
|
44139
44144
|
},
|
|
44140
44145
|
"minimax/minimax-01": {
|
|
@@ -48114,33 +48119,6 @@
|
|
|
48114
48119
|
"medium": "qwen/qwen3.5-397b-a17b-thinking",
|
|
48115
48120
|
"high": "qwen/qwen3.5-397b-a17b-thinking"
|
|
48116
48121
|
}
|
|
48117
|
-
},
|
|
48118
|
-
"compat": {
|
|
48119
|
-
"supportsStore": false,
|
|
48120
|
-
"supportsDeveloperRole": false,
|
|
48121
|
-
"supportsMultipleSystemMessages": false,
|
|
48122
|
-
"supportsReasoningEffort": true,
|
|
48123
|
-
"supportsReasoningParams": true,
|
|
48124
|
-
"reasoningEffortMap": {},
|
|
48125
|
-
"supportsUsageInStreaming": true,
|
|
48126
|
-
"alwaysSendMaxTokens": false,
|
|
48127
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
48128
|
-
"disableReasoningOnToolChoice": false,
|
|
48129
|
-
"supportsToolChoice": true,
|
|
48130
|
-
"maxTokensField": "max_completion_tokens",
|
|
48131
|
-
"requiresToolResultName": false,
|
|
48132
|
-
"requiresAssistantAfterToolResult": false,
|
|
48133
|
-
"requiresThinkingAsText": false,
|
|
48134
|
-
"requiresMistralToolIds": false,
|
|
48135
|
-
"thinkingFormat": "qwen",
|
|
48136
|
-
"reasoningContentField": "reasoning_content",
|
|
48137
|
-
"requiresReasoningContentForToolCalls": false,
|
|
48138
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
48139
|
-
"requiresAssistantContentForToolCalls": false,
|
|
48140
|
-
"isOpenRouterHost": false,
|
|
48141
|
-
"isVercelGatewayHost": false,
|
|
48142
|
-
"supportsStrictMode": false,
|
|
48143
|
-
"toolStrictMode": "mixed"
|
|
48144
48122
|
}
|
|
48145
48123
|
},
|
|
48146
48124
|
"qwen/qwen3.5-9b": {
|
|
@@ -48206,33 +48184,6 @@
|
|
|
48206
48184
|
"medium": "qwen/qwen3.5-plus-thinking",
|
|
48207
48185
|
"high": "qwen/qwen3.5-plus-thinking"
|
|
48208
48186
|
}
|
|
48209
|
-
},
|
|
48210
|
-
"compat": {
|
|
48211
|
-
"supportsStore": false,
|
|
48212
|
-
"supportsDeveloperRole": false,
|
|
48213
|
-
"supportsMultipleSystemMessages": false,
|
|
48214
|
-
"supportsReasoningEffort": true,
|
|
48215
|
-
"supportsReasoningParams": true,
|
|
48216
|
-
"reasoningEffortMap": {},
|
|
48217
|
-
"supportsUsageInStreaming": true,
|
|
48218
|
-
"alwaysSendMaxTokens": false,
|
|
48219
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
48220
|
-
"disableReasoningOnToolChoice": false,
|
|
48221
|
-
"supportsToolChoice": true,
|
|
48222
|
-
"maxTokensField": "max_completion_tokens",
|
|
48223
|
-
"requiresToolResultName": false,
|
|
48224
|
-
"requiresAssistantAfterToolResult": false,
|
|
48225
|
-
"requiresThinkingAsText": false,
|
|
48226
|
-
"requiresMistralToolIds": false,
|
|
48227
|
-
"thinkingFormat": "qwen",
|
|
48228
|
-
"reasoningContentField": "reasoning_content",
|
|
48229
|
-
"requiresReasoningContentForToolCalls": false,
|
|
48230
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
48231
|
-
"requiresAssistantContentForToolCalls": false,
|
|
48232
|
-
"isOpenRouterHost": false,
|
|
48233
|
-
"isVercelGatewayHost": false,
|
|
48234
|
-
"supportsStrictMode": false,
|
|
48235
|
-
"toolStrictMode": "mixed"
|
|
48236
48187
|
}
|
|
48237
48188
|
},
|
|
48238
48189
|
"Qwen/Qwen3.6-35B-A3B": {
|
|
@@ -49628,33 +49579,6 @@
|
|
|
49628
49579
|
"high": "sonar-reasoning-pro",
|
|
49629
49580
|
"xhigh": "sonar-reasoning-pro"
|
|
49630
49581
|
}
|
|
49631
|
-
},
|
|
49632
|
-
"compat": {
|
|
49633
|
-
"supportsStore": true,
|
|
49634
|
-
"supportsDeveloperRole": false,
|
|
49635
|
-
"supportsMultipleSystemMessages": false,
|
|
49636
|
-
"supportsReasoningEffort": true,
|
|
49637
|
-
"supportsReasoningParams": true,
|
|
49638
|
-
"reasoningEffortMap": {},
|
|
49639
|
-
"supportsUsageInStreaming": true,
|
|
49640
|
-
"alwaysSendMaxTokens": false,
|
|
49641
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
49642
|
-
"disableReasoningOnToolChoice": false,
|
|
49643
|
-
"supportsToolChoice": true,
|
|
49644
|
-
"maxTokensField": "max_completion_tokens",
|
|
49645
|
-
"requiresToolResultName": false,
|
|
49646
|
-
"requiresAssistantAfterToolResult": false,
|
|
49647
|
-
"requiresThinkingAsText": false,
|
|
49648
|
-
"requiresMistralToolIds": false,
|
|
49649
|
-
"thinkingFormat": "openai",
|
|
49650
|
-
"reasoningContentField": "reasoning_content",
|
|
49651
|
-
"requiresReasoningContentForToolCalls": false,
|
|
49652
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
49653
|
-
"requiresAssistantContentForToolCalls": false,
|
|
49654
|
-
"isOpenRouterHost": false,
|
|
49655
|
-
"isVercelGatewayHost": false,
|
|
49656
|
-
"supportsStrictMode": false,
|
|
49657
|
-
"toolStrictMode": "mixed"
|
|
49658
49582
|
}
|
|
49659
49583
|
},
|
|
49660
49584
|
"soob3123/amoral-gemma3-27B-v2": {
|
|
@@ -50376,33 +50300,6 @@
|
|
|
50376
50300
|
"high": "TEE/glm-5-1-thinking",
|
|
50377
50301
|
"xhigh": "TEE/glm-5-1-thinking"
|
|
50378
50302
|
}
|
|
50379
|
-
},
|
|
50380
|
-
"compat": {
|
|
50381
|
-
"supportsStore": true,
|
|
50382
|
-
"supportsDeveloperRole": false,
|
|
50383
|
-
"supportsMultipleSystemMessages": false,
|
|
50384
|
-
"supportsReasoningEffort": true,
|
|
50385
|
-
"supportsReasoningParams": true,
|
|
50386
|
-
"reasoningEffortMap": {},
|
|
50387
|
-
"supportsUsageInStreaming": true,
|
|
50388
|
-
"alwaysSendMaxTokens": false,
|
|
50389
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
50390
|
-
"disableReasoningOnToolChoice": false,
|
|
50391
|
-
"supportsToolChoice": true,
|
|
50392
|
-
"maxTokensField": "max_completion_tokens",
|
|
50393
|
-
"requiresToolResultName": false,
|
|
50394
|
-
"requiresAssistantAfterToolResult": false,
|
|
50395
|
-
"requiresThinkingAsText": false,
|
|
50396
|
-
"requiresMistralToolIds": false,
|
|
50397
|
-
"thinkingFormat": "openai",
|
|
50398
|
-
"reasoningContentField": "reasoning_content",
|
|
50399
|
-
"requiresReasoningContentForToolCalls": false,
|
|
50400
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50401
|
-
"requiresAssistantContentForToolCalls": false,
|
|
50402
|
-
"isOpenRouterHost": false,
|
|
50403
|
-
"isVercelGatewayHost": false,
|
|
50404
|
-
"supportsStrictMode": false,
|
|
50405
|
-
"toolStrictMode": "mixed"
|
|
50406
50303
|
}
|
|
50407
50304
|
},
|
|
50408
50305
|
"TEE/glm-5.1": {
|
|
@@ -50440,33 +50337,6 @@
|
|
|
50440
50337
|
"high": "TEE/glm-5.1-thinking",
|
|
50441
50338
|
"xhigh": "TEE/glm-5.1-thinking"
|
|
50442
50339
|
}
|
|
50443
|
-
},
|
|
50444
|
-
"compat": {
|
|
50445
|
-
"supportsStore": true,
|
|
50446
|
-
"supportsDeveloperRole": false,
|
|
50447
|
-
"supportsMultipleSystemMessages": false,
|
|
50448
|
-
"supportsReasoningEffort": true,
|
|
50449
|
-
"supportsReasoningParams": true,
|
|
50450
|
-
"reasoningEffortMap": {},
|
|
50451
|
-
"supportsUsageInStreaming": true,
|
|
50452
|
-
"alwaysSendMaxTokens": false,
|
|
50453
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
50454
|
-
"disableReasoningOnToolChoice": false,
|
|
50455
|
-
"supportsToolChoice": true,
|
|
50456
|
-
"maxTokensField": "max_completion_tokens",
|
|
50457
|
-
"requiresToolResultName": false,
|
|
50458
|
-
"requiresAssistantAfterToolResult": false,
|
|
50459
|
-
"requiresThinkingAsText": false,
|
|
50460
|
-
"requiresMistralToolIds": false,
|
|
50461
|
-
"thinkingFormat": "openai",
|
|
50462
|
-
"reasoningContentField": "reasoning_content",
|
|
50463
|
-
"requiresReasoningContentForToolCalls": false,
|
|
50464
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50465
|
-
"requiresAssistantContentForToolCalls": false,
|
|
50466
|
-
"isOpenRouterHost": false,
|
|
50467
|
-
"isVercelGatewayHost": false,
|
|
50468
|
-
"supportsStrictMode": false,
|
|
50469
|
-
"toolStrictMode": "mixed"
|
|
50470
50340
|
}
|
|
50471
50341
|
},
|
|
50472
50342
|
"TEE/glm-5.2": {
|
|
@@ -50475,7 +50345,7 @@
|
|
|
50475
50345
|
"api": "openai-completions",
|
|
50476
50346
|
"provider": "nanogpt",
|
|
50477
50347
|
"baseUrl": "https://nano-gpt.com/api/v1",
|
|
50478
|
-
"reasoning":
|
|
50348
|
+
"reasoning": true,
|
|
50479
50349
|
"input": [
|
|
50480
50350
|
"text"
|
|
50481
50351
|
],
|
|
@@ -50486,7 +50356,20 @@
|
|
|
50486
50356
|
"cacheWrite": 0
|
|
50487
50357
|
},
|
|
50488
50358
|
"contextWindow": 1048576,
|
|
50489
|
-
"maxTokens": 131072
|
|
50359
|
+
"maxTokens": 131072,
|
|
50360
|
+
"thinking": {
|
|
50361
|
+
"mode": "effort",
|
|
50362
|
+
"efforts": [
|
|
50363
|
+
"minimal",
|
|
50364
|
+
"low",
|
|
50365
|
+
"medium",
|
|
50366
|
+
"high",
|
|
50367
|
+
"xhigh"
|
|
50368
|
+
],
|
|
50369
|
+
"effortMap": {
|
|
50370
|
+
"xhigh": "max"
|
|
50371
|
+
}
|
|
50372
|
+
}
|
|
50490
50373
|
},
|
|
50491
50374
|
"TEE/gpt-oss-120b": {
|
|
50492
50375
|
"id": "TEE/gpt-oss-120b",
|
|
@@ -50580,33 +50463,6 @@
|
|
|
50580
50463
|
"high": "TEE/kimi-k2.5-thinking",
|
|
50581
50464
|
"xhigh": "TEE/kimi-k2.5-thinking"
|
|
50582
50465
|
}
|
|
50583
|
-
},
|
|
50584
|
-
"compat": {
|
|
50585
|
-
"supportsStore": true,
|
|
50586
|
-
"supportsDeveloperRole": false,
|
|
50587
|
-
"supportsMultipleSystemMessages": false,
|
|
50588
|
-
"supportsReasoningEffort": true,
|
|
50589
|
-
"supportsReasoningParams": true,
|
|
50590
|
-
"reasoningEffortMap": {},
|
|
50591
|
-
"supportsUsageInStreaming": true,
|
|
50592
|
-
"alwaysSendMaxTokens": true,
|
|
50593
|
-
"disableReasoningOnForcedToolChoice": true,
|
|
50594
|
-
"disableReasoningOnToolChoice": false,
|
|
50595
|
-
"supportsToolChoice": true,
|
|
50596
|
-
"maxTokensField": "max_completion_tokens",
|
|
50597
|
-
"requiresToolResultName": false,
|
|
50598
|
-
"requiresAssistantAfterToolResult": false,
|
|
50599
|
-
"requiresThinkingAsText": false,
|
|
50600
|
-
"requiresMistralToolIds": false,
|
|
50601
|
-
"thinkingFormat": "openai",
|
|
50602
|
-
"reasoningContentField": "reasoning_content",
|
|
50603
|
-
"requiresReasoningContentForToolCalls": true,
|
|
50604
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50605
|
-
"requiresAssistantContentForToolCalls": true,
|
|
50606
|
-
"isOpenRouterHost": false,
|
|
50607
|
-
"isVercelGatewayHost": false,
|
|
50608
|
-
"supportsStrictMode": false,
|
|
50609
|
-
"toolStrictMode": "mixed"
|
|
50610
50466
|
}
|
|
50611
50467
|
},
|
|
50612
50468
|
"TEE/kimi-k2.6": {
|
|
@@ -51706,33 +51562,6 @@
|
|
|
51706
51562
|
"high": "x-ai/grok-4.1-fast-reasoning",
|
|
51707
51563
|
"xhigh": "x-ai/grok-4.1-fast-reasoning"
|
|
51708
51564
|
}
|
|
51709
|
-
},
|
|
51710
|
-
"compat": {
|
|
51711
|
-
"supportsStore": true,
|
|
51712
|
-
"supportsDeveloperRole": false,
|
|
51713
|
-
"supportsMultipleSystemMessages": false,
|
|
51714
|
-
"supportsReasoningEffort": true,
|
|
51715
|
-
"supportsReasoningParams": true,
|
|
51716
|
-
"reasoningEffortMap": {},
|
|
51717
|
-
"supportsUsageInStreaming": true,
|
|
51718
|
-
"alwaysSendMaxTokens": false,
|
|
51719
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
51720
|
-
"disableReasoningOnToolChoice": false,
|
|
51721
|
-
"supportsToolChoice": true,
|
|
51722
|
-
"maxTokensField": "max_completion_tokens",
|
|
51723
|
-
"requiresToolResultName": false,
|
|
51724
|
-
"requiresAssistantAfterToolResult": false,
|
|
51725
|
-
"requiresThinkingAsText": false,
|
|
51726
|
-
"requiresMistralToolIds": false,
|
|
51727
|
-
"thinkingFormat": "openai",
|
|
51728
|
-
"reasoningContentField": "reasoning_content",
|
|
51729
|
-
"requiresReasoningContentForToolCalls": false,
|
|
51730
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
51731
|
-
"requiresAssistantContentForToolCalls": false,
|
|
51732
|
-
"isOpenRouterHost": false,
|
|
51733
|
-
"isVercelGatewayHost": false,
|
|
51734
|
-
"supportsStrictMode": false,
|
|
51735
|
-
"toolStrictMode": "mixed"
|
|
51736
51565
|
}
|
|
51737
51566
|
},
|
|
51738
51567
|
"x-ai/grok-4.20": {
|
|
@@ -52006,31 +51835,7 @@
|
|
|
52006
51835
|
}
|
|
52007
51836
|
},
|
|
52008
51837
|
"compat": {
|
|
52009
|
-
"
|
|
52010
|
-
"supportsDeveloperRole": false,
|
|
52011
|
-
"supportsMultipleSystemMessages": false,
|
|
52012
|
-
"supportsReasoningEffort": true,
|
|
52013
|
-
"supportsReasoningParams": true,
|
|
52014
|
-
"reasoningEffortMap": {},
|
|
52015
|
-
"supportsUsageInStreaming": true,
|
|
52016
|
-
"alwaysSendMaxTokens": false,
|
|
52017
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
52018
|
-
"disableReasoningOnToolChoice": false,
|
|
52019
|
-
"supportsToolChoice": true,
|
|
52020
|
-
"maxTokensField": "max_completion_tokens",
|
|
52021
|
-
"requiresToolResultName": false,
|
|
52022
|
-
"requiresAssistantAfterToolResult": false,
|
|
52023
|
-
"requiresThinkingAsText": false,
|
|
52024
|
-
"requiresMistralToolIds": false,
|
|
52025
|
-
"thinkingFormat": "openai",
|
|
52026
|
-
"reasoningContentField": "reasoning_content",
|
|
52027
|
-
"requiresReasoningContentForToolCalls": false,
|
|
52028
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
52029
|
-
"requiresAssistantContentForToolCalls": false,
|
|
52030
|
-
"isOpenRouterHost": false,
|
|
52031
|
-
"isVercelGatewayHost": false,
|
|
52032
|
-
"supportsStrictMode": false,
|
|
52033
|
-
"toolStrictMode": "mixed"
|
|
51838
|
+
"reasoningEffortMap": {}
|
|
52034
51839
|
}
|
|
52035
51840
|
},
|
|
52036
51841
|
"xiaomi/mimo-v2-flash-original": {
|
|
@@ -52068,31 +51873,7 @@
|
|
|
52068
51873
|
}
|
|
52069
51874
|
},
|
|
52070
51875
|
"compat": {
|
|
52071
|
-
"
|
|
52072
|
-
"supportsDeveloperRole": false,
|
|
52073
|
-
"supportsMultipleSystemMessages": false,
|
|
52074
|
-
"supportsReasoningEffort": true,
|
|
52075
|
-
"supportsReasoningParams": true,
|
|
52076
|
-
"reasoningEffortMap": {},
|
|
52077
|
-
"supportsUsageInStreaming": true,
|
|
52078
|
-
"alwaysSendMaxTokens": false,
|
|
52079
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
52080
|
-
"disableReasoningOnToolChoice": false,
|
|
52081
|
-
"supportsToolChoice": true,
|
|
52082
|
-
"maxTokensField": "max_completion_tokens",
|
|
52083
|
-
"requiresToolResultName": false,
|
|
52084
|
-
"requiresAssistantAfterToolResult": false,
|
|
52085
|
-
"requiresThinkingAsText": false,
|
|
52086
|
-
"requiresMistralToolIds": false,
|
|
52087
|
-
"thinkingFormat": "openai",
|
|
52088
|
-
"reasoningContentField": "reasoning_content",
|
|
52089
|
-
"requiresReasoningContentForToolCalls": false,
|
|
52090
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
52091
|
-
"requiresAssistantContentForToolCalls": false,
|
|
52092
|
-
"isOpenRouterHost": false,
|
|
52093
|
-
"isVercelGatewayHost": false,
|
|
52094
|
-
"supportsStrictMode": false,
|
|
52095
|
-
"toolStrictMode": "mixed"
|
|
51876
|
+
"reasoningEffortMap": {}
|
|
52096
51877
|
}
|
|
52097
51878
|
},
|
|
52098
51879
|
"xiaomi/mimo-v2-omni": {
|
|
@@ -59969,9 +59750,9 @@
|
|
|
59969
59750
|
"image"
|
|
59970
59751
|
],
|
|
59971
59752
|
"cost": {
|
|
59972
|
-
"input": 0.
|
|
59973
|
-
"output":
|
|
59974
|
-
"cacheRead": 0.
|
|
59753
|
+
"input": 0.3,
|
|
59754
|
+
"output": 1.2,
|
|
59755
|
+
"cacheRead": 0.06,
|
|
59975
59756
|
"cacheWrite": 0
|
|
59976
59757
|
},
|
|
59977
59758
|
"contextWindow": 1000000,
|
|
@@ -62113,10 +61894,10 @@
|
|
|
62113
61894
|
"image"
|
|
62114
61895
|
],
|
|
62115
61896
|
"cost": {
|
|
62116
|
-
"input":
|
|
62117
|
-
"output":
|
|
62118
|
-
"cacheRead": 0.
|
|
62119
|
-
"cacheWrite":
|
|
61897
|
+
"input": 2,
|
|
61898
|
+
"output": 10,
|
|
61899
|
+
"cacheRead": 0.19999999999999998,
|
|
61900
|
+
"cacheWrite": 2.5
|
|
62120
61901
|
},
|
|
62121
61902
|
"contextWindow": 1000000,
|
|
62122
61903
|
"maxTokens": 128000,
|
|
@@ -63035,6 +62816,43 @@
|
|
|
63035
62816
|
]
|
|
63036
62817
|
}
|
|
63037
62818
|
},
|
|
62819
|
+
"anthropic/claude-sonnet-5": {
|
|
62820
|
+
"id": "anthropic/claude-sonnet-5",
|
|
62821
|
+
"name": "Claude Sonnet 5",
|
|
62822
|
+
"api": "openrouter",
|
|
62823
|
+
"provider": "openrouter",
|
|
62824
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
62825
|
+
"reasoning": true,
|
|
62826
|
+
"input": [
|
|
62827
|
+
"text",
|
|
62828
|
+
"image"
|
|
62829
|
+
],
|
|
62830
|
+
"cost": {
|
|
62831
|
+
"input": 2,
|
|
62832
|
+
"output": 10,
|
|
62833
|
+
"cacheRead": 0.19999999999999998,
|
|
62834
|
+
"cacheWrite": 2.5
|
|
62835
|
+
},
|
|
62836
|
+
"contextWindow": 1000000,
|
|
62837
|
+
"maxTokens": 128000,
|
|
62838
|
+
"thinking": {
|
|
62839
|
+
"mode": "effort",
|
|
62840
|
+
"efforts": [
|
|
62841
|
+
"minimal",
|
|
62842
|
+
"low",
|
|
62843
|
+
"medium",
|
|
62844
|
+
"high",
|
|
62845
|
+
"xhigh"
|
|
62846
|
+
],
|
|
62847
|
+
"effortMap": {
|
|
62848
|
+
"minimal": "low",
|
|
62849
|
+
"low": "medium",
|
|
62850
|
+
"medium": "high",
|
|
62851
|
+
"high": "xhigh",
|
|
62852
|
+
"xhigh": "max"
|
|
62853
|
+
}
|
|
62854
|
+
}
|
|
62855
|
+
},
|
|
63038
62856
|
"arcee-ai/trinity-large-preview": {
|
|
63039
62857
|
"id": "arcee-ai/trinity-large-preview",
|
|
63040
62858
|
"name": "Trinity Large Preview",
|
|
@@ -63789,8 +63607,8 @@
|
|
|
63789
63607
|
"text"
|
|
63790
63608
|
],
|
|
63791
63609
|
"cost": {
|
|
63792
|
-
"input": 0.
|
|
63793
|
-
"output": 0.
|
|
63610
|
+
"input": 0.098,
|
|
63611
|
+
"output": 0.196,
|
|
63794
63612
|
"cacheRead": 0.02,
|
|
63795
63613
|
"cacheWrite": 0
|
|
63796
63614
|
},
|
|
@@ -69337,8 +69155,8 @@
|
|
|
69337
69155
|
"image"
|
|
69338
69156
|
],
|
|
69339
69157
|
"cost": {
|
|
69340
|
-
"input": 0.
|
|
69341
|
-
"output": 2.
|
|
69158
|
+
"input": 0.28500000000000003,
|
|
69159
|
+
"output": 2.4,
|
|
69342
69160
|
"cacheRead": 0.15,
|
|
69343
69161
|
"cacheWrite": 0
|
|
69344
69162
|
},
|
|
@@ -71086,7 +70904,7 @@
|
|
|
71086
70904
|
"synthetic": {
|
|
71087
70905
|
"hf:MiniMaxAI/MiniMax-M3": {
|
|
71088
70906
|
"id": "hf:MiniMaxAI/MiniMax-M3",
|
|
71089
|
-
"name": "MiniMax-M3",
|
|
70907
|
+
"name": "MiniMaxAI/MiniMax-M3",
|
|
71090
70908
|
"api": "openai-completions",
|
|
71091
70909
|
"provider": "synthetic",
|
|
71092
70910
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71101,7 +70919,7 @@
|
|
|
71101
70919
|
"cacheRead": 0.6,
|
|
71102
70920
|
"cacheWrite": 0
|
|
71103
70921
|
},
|
|
71104
|
-
"contextWindow":
|
|
70922
|
+
"contextWindow": 262144,
|
|
71105
70923
|
"maxTokens": 65536,
|
|
71106
70924
|
"thinking": {
|
|
71107
70925
|
"mode": "effort",
|
|
@@ -71116,7 +70934,7 @@
|
|
|
71116
70934
|
},
|
|
71117
70935
|
"hf:moonshotai/Kimi-K2.6": {
|
|
71118
70936
|
"id": "hf:moonshotai/Kimi-K2.6",
|
|
71119
|
-
"name": "Kimi
|
|
70937
|
+
"name": "moonshotai/Kimi-K2.6",
|
|
71120
70938
|
"api": "openai-completions",
|
|
71121
70939
|
"provider": "synthetic",
|
|
71122
70940
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71144,9 +70962,28 @@
|
|
|
71144
70962
|
]
|
|
71145
70963
|
}
|
|
71146
70964
|
},
|
|
70965
|
+
"hf:moonshotai/Kimi-K2.7-Code": {
|
|
70966
|
+
"id": "hf:moonshotai/Kimi-K2.7-Code",
|
|
70967
|
+
"name": "moonshotai/Kimi-K2.7-Code",
|
|
70968
|
+
"api": "openai-completions",
|
|
70969
|
+
"provider": "synthetic",
|
|
70970
|
+
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
70971
|
+
"reasoning": false,
|
|
70972
|
+
"input": [
|
|
70973
|
+
"text"
|
|
70974
|
+
],
|
|
70975
|
+
"cost": {
|
|
70976
|
+
"input": 0,
|
|
70977
|
+
"output": 0,
|
|
70978
|
+
"cacheRead": 0,
|
|
70979
|
+
"cacheWrite": 0
|
|
70980
|
+
},
|
|
70981
|
+
"contextWindow": 262144,
|
|
70982
|
+
"maxTokens": 8192
|
|
70983
|
+
},
|
|
71147
70984
|
"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4": {
|
|
71148
70985
|
"id": "hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
71149
|
-
"name": "Nemotron
|
|
70986
|
+
"name": "nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
71150
70987
|
"api": "openai-completions",
|
|
71151
70988
|
"provider": "synthetic",
|
|
71152
70989
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71175,7 +71012,7 @@
|
|
|
71175
71012
|
},
|
|
71176
71013
|
"hf:openai/gpt-oss-120b": {
|
|
71177
71014
|
"id": "hf:openai/gpt-oss-120b",
|
|
71178
|
-
"name": "
|
|
71015
|
+
"name": "openai/gpt-oss-120b",
|
|
71179
71016
|
"api": "openai-completions",
|
|
71180
71017
|
"provider": "synthetic",
|
|
71181
71018
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71200,38 +71037,9 @@
|
|
|
71200
71037
|
]
|
|
71201
71038
|
}
|
|
71202
71039
|
},
|
|
71203
|
-
"hf:Qwen/Qwen3.5-397B-A17B": {
|
|
71204
|
-
"id": "hf:Qwen/Qwen3.5-397B-A17B",
|
|
71205
|
-
"name": "Qwen3.5 397B-A17B",
|
|
71206
|
-
"api": "openai-completions",
|
|
71207
|
-
"provider": "synthetic",
|
|
71208
|
-
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
71209
|
-
"reasoning": true,
|
|
71210
|
-
"input": [
|
|
71211
|
-
"text",
|
|
71212
|
-
"image"
|
|
71213
|
-
],
|
|
71214
|
-
"cost": {
|
|
71215
|
-
"input": 0.6,
|
|
71216
|
-
"output": 3.6,
|
|
71217
|
-
"cacheRead": 0.6,
|
|
71218
|
-
"cacheWrite": 0
|
|
71219
|
-
},
|
|
71220
|
-
"contextWindow": 262144,
|
|
71221
|
-
"maxTokens": 65536,
|
|
71222
|
-
"thinking": {
|
|
71223
|
-
"mode": "effort",
|
|
71224
|
-
"efforts": [
|
|
71225
|
-
"minimal",
|
|
71226
|
-
"low",
|
|
71227
|
-
"medium",
|
|
71228
|
-
"high"
|
|
71229
|
-
]
|
|
71230
|
-
}
|
|
71231
|
-
},
|
|
71232
71040
|
"hf:Qwen/Qwen3.6-27B": {
|
|
71233
71041
|
"id": "hf:Qwen/Qwen3.6-27B",
|
|
71234
|
-
"name": "Qwen3.6
|
|
71042
|
+
"name": "Qwen/Qwen3.6-27B",
|
|
71235
71043
|
"api": "openai-completions",
|
|
71236
71044
|
"provider": "synthetic",
|
|
71237
71045
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71258,38 +71066,9 @@
|
|
|
71258
71066
|
]
|
|
71259
71067
|
}
|
|
71260
71068
|
},
|
|
71261
|
-
"hf:zai-org/GLM-4.7": {
|
|
71262
|
-
"id": "hf:zai-org/GLM-4.7",
|
|
71263
|
-
"name": "GLM-4.7",
|
|
71264
|
-
"api": "openai-completions",
|
|
71265
|
-
"provider": "synthetic",
|
|
71266
|
-
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
71267
|
-
"reasoning": true,
|
|
71268
|
-
"input": [
|
|
71269
|
-
"text"
|
|
71270
|
-
],
|
|
71271
|
-
"cost": {
|
|
71272
|
-
"input": 0.45,
|
|
71273
|
-
"output": 2.19,
|
|
71274
|
-
"cacheRead": 0.45,
|
|
71275
|
-
"cacheWrite": 0
|
|
71276
|
-
},
|
|
71277
|
-
"contextWindow": 202752,
|
|
71278
|
-
"maxTokens": 65536,
|
|
71279
|
-
"thinking": {
|
|
71280
|
-
"mode": "effort",
|
|
71281
|
-
"efforts": [
|
|
71282
|
-
"minimal",
|
|
71283
|
-
"low",
|
|
71284
|
-
"medium",
|
|
71285
|
-
"high",
|
|
71286
|
-
"xhigh"
|
|
71287
|
-
]
|
|
71288
|
-
}
|
|
71289
|
-
},
|
|
71290
71069
|
"hf:zai-org/GLM-4.7-Flash": {
|
|
71291
71070
|
"id": "hf:zai-org/GLM-4.7-Flash",
|
|
71292
|
-
"name": "GLM-4.7-Flash",
|
|
71071
|
+
"name": "zai-org/GLM-4.7-Flash",
|
|
71293
71072
|
"api": "openai-completions",
|
|
71294
71073
|
"provider": "synthetic",
|
|
71295
71074
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71318,7 +71097,7 @@
|
|
|
71318
71097
|
},
|
|
71319
71098
|
"hf:zai-org/GLM-5.1": {
|
|
71320
71099
|
"id": "hf:zai-org/GLM-5.1",
|
|
71321
|
-
"name": "GLM-5.1",
|
|
71100
|
+
"name": "zai-org/GLM-5.1",
|
|
71322
71101
|
"api": "openai-completions",
|
|
71323
71102
|
"provider": "synthetic",
|
|
71324
71103
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71347,7 +71126,7 @@
|
|
|
71347
71126
|
},
|
|
71348
71127
|
"hf:zai-org/GLM-5.2": {
|
|
71349
71128
|
"id": "hf:zai-org/GLM-5.2",
|
|
71350
|
-
"name": "GLM-5.2",
|
|
71129
|
+
"name": "zai-org/GLM-5.2",
|
|
71351
71130
|
"api": "openai-completions",
|
|
71352
71131
|
"provider": "synthetic",
|
|
71353
71132
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -75770,18 +75549,7 @@
|
|
|
75770
75549
|
}
|
|
75771
75550
|
},
|
|
75772
75551
|
"compat": {
|
|
75773
|
-
"
|
|
75774
|
-
"disableStrictTools": false,
|
|
75775
|
-
"disableAdaptiveThinking": false,
|
|
75776
|
-
"supportsEagerToolInputStreaming": true,
|
|
75777
|
-
"supportsLongCacheRetention": false,
|
|
75778
|
-
"supportsMidConversationSystem": false,
|
|
75779
|
-
"supportsForcedToolChoice": true,
|
|
75780
|
-
"supportsSamplingParams": true,
|
|
75781
|
-
"requiresToolResultId": false,
|
|
75782
|
-
"requiresThinkingEnabled": false,
|
|
75783
|
-
"replayUnsignedThinking": false,
|
|
75784
|
-
"escapeBuiltinToolNames": false
|
|
75552
|
+
"replayUnsignedThinking": false
|
|
75785
75553
|
}
|
|
75786
75554
|
},
|
|
75787
75555
|
"alibaba/qwen3-max-preview": {
|
|
@@ -76662,6 +76430,44 @@
|
|
|
76662
76430
|
}
|
|
76663
76431
|
}
|
|
76664
76432
|
},
|
|
76433
|
+
"anthropic/claude-sonnet-5": {
|
|
76434
|
+
"id": "anthropic/claude-sonnet-5",
|
|
76435
|
+
"name": "Claude Sonnet 5",
|
|
76436
|
+
"api": "anthropic-messages",
|
|
76437
|
+
"provider": "vercel-ai-gateway",
|
|
76438
|
+
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
76439
|
+
"reasoning": true,
|
|
76440
|
+
"input": [
|
|
76441
|
+
"text",
|
|
76442
|
+
"image"
|
|
76443
|
+
],
|
|
76444
|
+
"cost": {
|
|
76445
|
+
"input": 2,
|
|
76446
|
+
"output": 10,
|
|
76447
|
+
"cacheRead": 0.19999999999999998,
|
|
76448
|
+
"cacheWrite": 2.5
|
|
76449
|
+
},
|
|
76450
|
+
"contextWindow": 1000000,
|
|
76451
|
+
"maxTokens": 128000,
|
|
76452
|
+
"thinking": {
|
|
76453
|
+
"mode": "anthropic-adaptive",
|
|
76454
|
+
"efforts": [
|
|
76455
|
+
"minimal",
|
|
76456
|
+
"low",
|
|
76457
|
+
"medium",
|
|
76458
|
+
"high",
|
|
76459
|
+
"xhigh"
|
|
76460
|
+
],
|
|
76461
|
+
"effortMap": {
|
|
76462
|
+
"minimal": "low",
|
|
76463
|
+
"low": "medium",
|
|
76464
|
+
"medium": "high",
|
|
76465
|
+
"high": "xhigh",
|
|
76466
|
+
"xhigh": "max"
|
|
76467
|
+
},
|
|
76468
|
+
"supportsDisplay": true
|
|
76469
|
+
}
|
|
76470
|
+
},
|
|
76665
76471
|
"arcee-ai/trinity-large-preview": {
|
|
76666
76472
|
"id": "arcee-ai/trinity-large-preview",
|
|
76667
76473
|
"name": "Trinity Large Preview",
|
|
@@ -78501,15 +78307,6 @@
|
|
|
78501
78307
|
}
|
|
78502
78308
|
},
|
|
78503
78309
|
"compat": {
|
|
78504
|
-
"officialEndpoint": false,
|
|
78505
|
-
"disableStrictTools": false,
|
|
78506
|
-
"disableAdaptiveThinking": false,
|
|
78507
|
-
"supportsEagerToolInputStreaming": true,
|
|
78508
|
-
"supportsLongCacheRetention": false,
|
|
78509
|
-
"supportsMidConversationSystem": false,
|
|
78510
|
-
"supportsForcedToolChoice": true,
|
|
78511
|
-
"supportsSamplingParams": true,
|
|
78512
|
-
"requiresToolResultId": false,
|
|
78513
78310
|
"replayUnsignedThinking": false
|
|
78514
78311
|
}
|
|
78515
78312
|
},
|
|
@@ -81124,10 +80921,6 @@
|
|
|
81124
80921
|
},
|
|
81125
80922
|
"contextWindow": 1000000,
|
|
81126
80923
|
"maxTokens": 65536,
|
|
81127
|
-
"compat": {
|
|
81128
|
-
"supportsDeveloperRole": false,
|
|
81129
|
-
"reasoningContentField": "reasoning_content"
|
|
81130
|
-
},
|
|
81131
80924
|
"thinking": {
|
|
81132
80925
|
"mode": "effort",
|
|
81133
80926
|
"efforts": [
|
|
@@ -81164,10 +80957,6 @@
|
|
|
81164
80957
|
},
|
|
81165
80958
|
"contextWindow": 1000000,
|
|
81166
80959
|
"maxTokens": 65536,
|
|
81167
|
-
"compat": {
|
|
81168
|
-
"supportsDeveloperRole": false,
|
|
81169
|
-
"reasoningContentField": "reasoning_content"
|
|
81170
|
-
},
|
|
81171
80960
|
"thinking": {
|
|
81172
80961
|
"mode": "effort",
|
|
81173
80962
|
"efforts": [
|
|
@@ -81205,9 +80994,7 @@
|
|
|
81205
80994
|
"contextWindow": 202752,
|
|
81206
80995
|
"maxTokens": 65536,
|
|
81207
80996
|
"compat": {
|
|
81208
|
-
"
|
|
81209
|
-
"thinkingFormat": "zai",
|
|
81210
|
-
"reasoningContentField": "reasoning_content"
|
|
80997
|
+
"thinkingFormat": "zai"
|
|
81211
80998
|
},
|
|
81212
80999
|
"thinking": {
|
|
81213
81000
|
"mode": "effort",
|
|
@@ -81239,9 +81026,7 @@
|
|
|
81239
81026
|
"contextWindow": 262144,
|
|
81240
81027
|
"maxTokens": 65536,
|
|
81241
81028
|
"compat": {
|
|
81242
|
-
"
|
|
81243
|
-
"thinkingFormat": "zai",
|
|
81244
|
-
"reasoningContentField": "reasoning_content"
|
|
81029
|
+
"thinkingFormat": "zai"
|
|
81245
81030
|
},
|
|
81246
81031
|
"thinking": {
|
|
81247
81032
|
"mode": "effort",
|
|
@@ -81271,10 +81056,7 @@
|
|
|
81271
81056
|
"cacheWrite": 0
|
|
81272
81057
|
},
|
|
81273
81058
|
"contextWindow": 262144,
|
|
81274
|
-
"maxTokens": 65536
|
|
81275
|
-
"compat": {
|
|
81276
|
-
"supportsDeveloperRole": false
|
|
81277
|
-
}
|
|
81059
|
+
"maxTokens": 65536
|
|
81278
81060
|
},
|
|
81279
81061
|
"Qwen3.6-35B-A3B": {
|
|
81280
81062
|
"id": "Qwen3.6-35B-A3B",
|
|
@@ -81294,10 +81076,7 @@
|
|
|
81294
81076
|
"cacheWrite": 0
|
|
81295
81077
|
},
|
|
81296
81078
|
"contextWindow": 256000,
|
|
81297
|
-
"maxTokens": 65536
|
|
81298
|
-
"compat": {
|
|
81299
|
-
"supportsDeveloperRole": false
|
|
81300
|
-
}
|
|
81079
|
+
"maxTokens": 65536
|
|
81301
81080
|
},
|
|
81302
81081
|
"qwen3.7-max": {
|
|
81303
81082
|
"id": "qwen3.7-max",
|
|
@@ -81317,10 +81096,6 @@
|
|
|
81317
81096
|
},
|
|
81318
81097
|
"contextWindow": 256000,
|
|
81319
81098
|
"maxTokens": 65536,
|
|
81320
|
-
"compat": {
|
|
81321
|
-
"supportsDeveloperRole": false,
|
|
81322
|
-
"reasoningContentField": "reasoning_content"
|
|
81323
|
-
},
|
|
81324
81099
|
"thinking": {
|
|
81325
81100
|
"mode": "effort",
|
|
81326
81101
|
"efforts": [
|
|
@@ -82095,14 +81870,6 @@
|
|
|
82095
81870
|
},
|
|
82096
81871
|
"contextWindow": 2000000,
|
|
82097
81872
|
"maxTokens": 2000000,
|
|
82098
|
-
"compat": {
|
|
82099
|
-
"reasoningEffortMap": {
|
|
82100
|
-
"minimal": "low"
|
|
82101
|
-
},
|
|
82102
|
-
"includeEncryptedReasoning": false,
|
|
82103
|
-
"filterReasoningHistory": true,
|
|
82104
|
-
"omitReasoningEffort": false
|
|
82105
|
-
},
|
|
82106
81873
|
"thinking": {
|
|
82107
81874
|
"mode": "effort",
|
|
82108
81875
|
"efforts": [
|
|
@@ -82115,6 +81882,14 @@
|
|
|
82115
81882
|
"effortMap": {
|
|
82116
81883
|
"minimal": "low"
|
|
82117
81884
|
}
|
|
81885
|
+
},
|
|
81886
|
+
"compat": {
|
|
81887
|
+
"reasoningEffortMap": {
|
|
81888
|
+
"minimal": "low"
|
|
81889
|
+
},
|
|
81890
|
+
"includeEncryptedReasoning": false,
|
|
81891
|
+
"filterReasoningHistory": true,
|
|
81892
|
+
"omitReasoningEffort": false
|
|
82118
81893
|
}
|
|
82119
81894
|
},
|
|
82120
81895
|
"grok-4.3": {
|
|
@@ -82136,14 +81911,6 @@
|
|
|
82136
81911
|
},
|
|
82137
81912
|
"contextWindow": 1000000,
|
|
82138
81913
|
"maxTokens": 1000000,
|
|
82139
|
-
"compat": {
|
|
82140
|
-
"reasoningEffortMap": {
|
|
82141
|
-
"minimal": "low"
|
|
82142
|
-
},
|
|
82143
|
-
"includeEncryptedReasoning": false,
|
|
82144
|
-
"filterReasoningHistory": true,
|
|
82145
|
-
"omitReasoningEffort": false
|
|
82146
|
-
},
|
|
82147
81914
|
"thinking": {
|
|
82148
81915
|
"mode": "effort",
|
|
82149
81916
|
"efforts": [
|
|
@@ -82156,6 +81923,14 @@
|
|
|
82156
81923
|
"effortMap": {
|
|
82157
81924
|
"minimal": "low"
|
|
82158
81925
|
}
|
|
81926
|
+
},
|
|
81927
|
+
"compat": {
|
|
81928
|
+
"reasoningEffortMap": {
|
|
81929
|
+
"minimal": "low"
|
|
81930
|
+
},
|
|
81931
|
+
"includeEncryptedReasoning": false,
|
|
81932
|
+
"filterReasoningHistory": true,
|
|
81933
|
+
"omitReasoningEffort": false
|
|
82159
81934
|
}
|
|
82160
81935
|
},
|
|
82161
81936
|
"grok-build": {
|
|
@@ -83638,6 +83413,44 @@
|
|
|
83638
83413
|
}
|
|
83639
83414
|
}
|
|
83640
83415
|
},
|
|
83416
|
+
"anthropic/claude-sonnet-5": {
|
|
83417
|
+
"id": "anthropic/claude-sonnet-5",
|
|
83418
|
+
"name": "Claude Sonnet 5",
|
|
83419
|
+
"api": "anthropic-messages",
|
|
83420
|
+
"provider": "zenmux",
|
|
83421
|
+
"baseUrl": "https://zenmux.ai/api/anthropic",
|
|
83422
|
+
"reasoning": true,
|
|
83423
|
+
"input": [
|
|
83424
|
+
"text",
|
|
83425
|
+
"image"
|
|
83426
|
+
],
|
|
83427
|
+
"cost": {
|
|
83428
|
+
"input": 2,
|
|
83429
|
+
"output": 10,
|
|
83430
|
+
"cacheRead": 0.2,
|
|
83431
|
+
"cacheWrite": 4
|
|
83432
|
+
},
|
|
83433
|
+
"contextWindow": 1000000,
|
|
83434
|
+
"maxTokens": 128000,
|
|
83435
|
+
"thinking": {
|
|
83436
|
+
"mode": "anthropic-adaptive",
|
|
83437
|
+
"efforts": [
|
|
83438
|
+
"minimal",
|
|
83439
|
+
"low",
|
|
83440
|
+
"medium",
|
|
83441
|
+
"high",
|
|
83442
|
+
"xhigh"
|
|
83443
|
+
],
|
|
83444
|
+
"effortMap": {
|
|
83445
|
+
"minimal": "low",
|
|
83446
|
+
"low": "medium",
|
|
83447
|
+
"medium": "high",
|
|
83448
|
+
"high": "xhigh",
|
|
83449
|
+
"xhigh": "max"
|
|
83450
|
+
},
|
|
83451
|
+
"supportsDisplay": true
|
|
83452
|
+
}
|
|
83453
|
+
},
|
|
83641
83454
|
"baidu/ernie-5.0-thinking-preview": {
|
|
83642
83455
|
"id": "baidu/ernie-5.0-thinking-preview",
|
|
83643
83456
|
"name": "ERNIE 5.0",
|
|
@@ -85079,6 +84892,35 @@
|
|
|
85079
84892
|
"contextWindow": 256000,
|
|
85080
84893
|
"maxTokens": 80000
|
|
85081
84894
|
},
|
|
84895
|
+
"meituan/longcat-2.0": {
|
|
84896
|
+
"id": "meituan/longcat-2.0",
|
|
84897
|
+
"name": "LongCat-2.0",
|
|
84898
|
+
"api": "openai-completions",
|
|
84899
|
+
"provider": "zenmux",
|
|
84900
|
+
"baseUrl": "https://zenmux.ai/api/v1",
|
|
84901
|
+
"reasoning": true,
|
|
84902
|
+
"input": [
|
|
84903
|
+
"text"
|
|
84904
|
+
],
|
|
84905
|
+
"cost": {
|
|
84906
|
+
"input": 0.3,
|
|
84907
|
+
"output": 1.18,
|
|
84908
|
+
"cacheRead": 0.006,
|
|
84909
|
+
"cacheWrite": 0
|
|
84910
|
+
},
|
|
84911
|
+
"contextWindow": 1000000,
|
|
84912
|
+
"maxTokens": null,
|
|
84913
|
+
"thinking": {
|
|
84914
|
+
"mode": "effort",
|
|
84915
|
+
"efforts": [
|
|
84916
|
+
"minimal",
|
|
84917
|
+
"low",
|
|
84918
|
+
"medium",
|
|
84919
|
+
"high",
|
|
84920
|
+
"xhigh"
|
|
84921
|
+
]
|
|
84922
|
+
}
|
|
84923
|
+
},
|
|
85082
84924
|
"meta/llama-3.3-70b-instruct": {
|
|
85083
84925
|
"id": "meta/llama-3.3-70b-instruct",
|
|
85084
84926
|
"name": "Llama 3.3 70b Instruct",
|
|
@@ -88290,11 +88132,6 @@
|
|
|
88290
88132
|
"medium",
|
|
88291
88133
|
"high"
|
|
88292
88134
|
]
|
|
88293
|
-
},
|
|
88294
|
-
"compat": {
|
|
88295
|
-
"thinkingFormat": "zai",
|
|
88296
|
-
"reasoningContentField": "reasoning_content",
|
|
88297
|
-
"supportsDeveloperRole": false
|
|
88298
88135
|
}
|
|
88299
88136
|
},
|
|
88300
88137
|
"glm-4.5-air": {
|
|
@@ -88356,11 +88193,6 @@
|
|
|
88356
88193
|
"medium",
|
|
88357
88194
|
"high"
|
|
88358
88195
|
]
|
|
88359
|
-
},
|
|
88360
|
-
"compat": {
|
|
88361
|
-
"thinkingFormat": "zai",
|
|
88362
|
-
"reasoningContentField": "reasoning_content",
|
|
88363
|
-
"supportsDeveloperRole": false
|
|
88364
88196
|
}
|
|
88365
88197
|
},
|
|
88366
88198
|
"glm-4.6v": {
|
|
@@ -88456,11 +88288,6 @@
|
|
|
88456
88288
|
"medium",
|
|
88457
88289
|
"high"
|
|
88458
88290
|
]
|
|
88459
|
-
},
|
|
88460
|
-
"compat": {
|
|
88461
|
-
"thinkingFormat": "zai",
|
|
88462
|
-
"reasoningContentField": "reasoning_content",
|
|
88463
|
-
"supportsDeveloperRole": false
|
|
88464
88291
|
}
|
|
88465
88292
|
},
|
|
88466
88293
|
"glm-5-turbo": {
|