@oh-my-pi/pi-catalog 16.2.9 → 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 +23 -0
- package/dist/types/discovery/openai-compatible.d.ts +3 -1
- 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/models.json +454 -610
- 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": {
|
|
@@ -15415,9 +15562,6 @@
|
|
|
15415
15562
|
"medium": "claude-opus-4-6-thinking",
|
|
15416
15563
|
"high": "claude-opus-4-6-thinking"
|
|
15417
15564
|
}
|
|
15418
|
-
},
|
|
15419
|
-
"compat": {
|
|
15420
|
-
"trustExplicitThinkingOnly": true
|
|
15421
15565
|
}
|
|
15422
15566
|
},
|
|
15423
15567
|
"claude-opus-4-6-1m": {
|
|
@@ -15455,9 +15599,6 @@
|
|
|
15455
15599
|
"medium": "claude-opus-4-6-thinking-1m",
|
|
15456
15600
|
"high": "claude-opus-4-6-thinking-1m"
|
|
15457
15601
|
}
|
|
15458
|
-
},
|
|
15459
|
-
"compat": {
|
|
15460
|
-
"trustExplicitThinkingOnly": true
|
|
15461
15602
|
}
|
|
15462
15603
|
},
|
|
15463
15604
|
"claude-opus-4-7": {
|
|
@@ -15498,10 +15639,7 @@
|
|
|
15498
15639
|
"xhigh": "claude-opus-4-7-max"
|
|
15499
15640
|
}
|
|
15500
15641
|
},
|
|
15501
|
-
"requestModelId": "claude-opus-4-7-low"
|
|
15502
|
-
"compat": {
|
|
15503
|
-
"trustExplicitThinkingOnly": true
|
|
15504
|
-
}
|
|
15642
|
+
"requestModelId": "claude-opus-4-7-low"
|
|
15505
15643
|
},
|
|
15506
15644
|
"claude-opus-4-7-fast": {
|
|
15507
15645
|
"id": "claude-opus-4-7-fast",
|
|
@@ -15541,10 +15679,7 @@
|
|
|
15541
15679
|
"xhigh": "claude-opus-4-7-max-fast"
|
|
15542
15680
|
}
|
|
15543
15681
|
},
|
|
15544
|
-
"requestModelId": "claude-opus-4-7-low-fast"
|
|
15545
|
-
"compat": {
|
|
15546
|
-
"trustExplicitThinkingOnly": true
|
|
15547
|
-
}
|
|
15682
|
+
"requestModelId": "claude-opus-4-7-low-fast"
|
|
15548
15683
|
},
|
|
15549
15684
|
"claude-opus-4-8": {
|
|
15550
15685
|
"id": "claude-opus-4-8",
|
|
@@ -15584,10 +15719,7 @@
|
|
|
15584
15719
|
"xhigh": "claude-opus-4-8-max"
|
|
15585
15720
|
}
|
|
15586
15721
|
},
|
|
15587
|
-
"requestModelId": "claude-opus-4-8-low"
|
|
15588
|
-
"compat": {
|
|
15589
|
-
"trustExplicitThinkingOnly": true
|
|
15590
|
-
}
|
|
15722
|
+
"requestModelId": "claude-opus-4-8-low"
|
|
15591
15723
|
},
|
|
15592
15724
|
"claude-opus-4-8-fast": {
|
|
15593
15725
|
"id": "claude-opus-4-8-fast",
|
|
@@ -15627,10 +15759,7 @@
|
|
|
15627
15759
|
"xhigh": "claude-opus-4-8-max-fast"
|
|
15628
15760
|
}
|
|
15629
15761
|
},
|
|
15630
|
-
"requestModelId": "claude-opus-4-8-low-fast"
|
|
15631
|
-
"compat": {
|
|
15632
|
-
"trustExplicitThinkingOnly": true
|
|
15633
|
-
}
|
|
15762
|
+
"requestModelId": "claude-opus-4-8-low-fast"
|
|
15634
15763
|
},
|
|
15635
15764
|
"claude-sonnet-4-6": {
|
|
15636
15765
|
"id": "claude-sonnet-4-6",
|
|
@@ -15667,9 +15796,6 @@
|
|
|
15667
15796
|
"medium": "claude-sonnet-4-6-thinking",
|
|
15668
15797
|
"high": "claude-sonnet-4-6-thinking"
|
|
15669
15798
|
}
|
|
15670
|
-
},
|
|
15671
|
-
"compat": {
|
|
15672
|
-
"trustExplicitThinkingOnly": true
|
|
15673
15799
|
}
|
|
15674
15800
|
},
|
|
15675
15801
|
"claude-sonnet-4-6-1m": {
|
|
@@ -15707,11 +15833,113 @@
|
|
|
15707
15833
|
"medium": "claude-sonnet-4-6-thinking-1m",
|
|
15708
15834
|
"high": "claude-sonnet-4-6-thinking-1m"
|
|
15709
15835
|
}
|
|
15710
|
-
},
|
|
15711
|
-
"compat": {
|
|
15712
|
-
"trustExplicitThinkingOnly": true
|
|
15713
15836
|
}
|
|
15714
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
|
+
},
|
|
15715
15943
|
"deepseek-v4": {
|
|
15716
15944
|
"id": "deepseek-v4",
|
|
15717
15945
|
"name": "DeepSeek V4 Pro",
|
|
@@ -15764,10 +15992,7 @@
|
|
|
15764
15992
|
"high": "gemini-3-1-pro-high"
|
|
15765
15993
|
}
|
|
15766
15994
|
},
|
|
15767
|
-
"requestModelId": "gemini-3-1-pro-low"
|
|
15768
|
-
"compat": {
|
|
15769
|
-
"trustExplicitThinkingOnly": true
|
|
15770
|
-
}
|
|
15995
|
+
"requestModelId": "gemini-3-1-pro-low"
|
|
15771
15996
|
},
|
|
15772
15997
|
"gemini-3-5-flash": {
|
|
15773
15998
|
"id": "gemini-3-5-flash",
|
|
@@ -15805,10 +16030,7 @@
|
|
|
15805
16030
|
"high": "gemini-3-5-flash-high"
|
|
15806
16031
|
}
|
|
15807
16032
|
},
|
|
15808
|
-
"requestModelId": "gemini-3-5-flash-minimal"
|
|
15809
|
-
"compat": {
|
|
15810
|
-
"trustExplicitThinkingOnly": true
|
|
15811
|
-
}
|
|
16033
|
+
"requestModelId": "gemini-3-5-flash-minimal"
|
|
15812
16034
|
},
|
|
15813
16035
|
"gemini-3-flash": {
|
|
15814
16036
|
"id": "gemini-3-flash",
|
|
@@ -15846,10 +16068,7 @@
|
|
|
15846
16068
|
"high": "MODEL_GOOGLE_GEMINI_3_0_FLASH_HIGH"
|
|
15847
16069
|
}
|
|
15848
16070
|
},
|
|
15849
|
-
"requestModelId": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL"
|
|
15850
|
-
"compat": {
|
|
15851
|
-
"trustExplicitThinkingOnly": true
|
|
15852
|
-
}
|
|
16071
|
+
"requestModelId": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL"
|
|
15853
16072
|
},
|
|
15854
16073
|
"glm-5-1": {
|
|
15855
16074
|
"id": "glm-5-1",
|
|
@@ -16029,10 +16248,7 @@
|
|
|
16029
16248
|
"xhigh": "MODEL_GPT_5_2_XHIGH"
|
|
16030
16249
|
}
|
|
16031
16250
|
},
|
|
16032
|
-
"requestModelId": "MODEL_GPT_5_2_NONE"
|
|
16033
|
-
"compat": {
|
|
16034
|
-
"trustExplicitThinkingOnly": true
|
|
16035
|
-
}
|
|
16251
|
+
"requestModelId": "MODEL_GPT_5_2_NONE"
|
|
16036
16252
|
},
|
|
16037
16253
|
"gpt-5-3-codex": {
|
|
16038
16254
|
"id": "gpt-5-3-codex",
|
|
@@ -16072,10 +16288,7 @@
|
|
|
16072
16288
|
"xhigh": "gpt-5-3-codex-xhigh"
|
|
16073
16289
|
}
|
|
16074
16290
|
},
|
|
16075
|
-
"requestModelId": "gpt-5-3-codex-low"
|
|
16076
|
-
"compat": {
|
|
16077
|
-
"trustExplicitThinkingOnly": true
|
|
16078
|
-
}
|
|
16291
|
+
"requestModelId": "gpt-5-3-codex-low"
|
|
16079
16292
|
},
|
|
16080
16293
|
"gpt-5-3-codex-fast": {
|
|
16081
16294
|
"id": "gpt-5-3-codex-fast",
|
|
@@ -16115,10 +16328,7 @@
|
|
|
16115
16328
|
"xhigh": "gpt-5-3-codex-xhigh-priority"
|
|
16116
16329
|
}
|
|
16117
16330
|
},
|
|
16118
|
-
"requestModelId": "gpt-5-3-codex-low-priority"
|
|
16119
|
-
"compat": {
|
|
16120
|
-
"trustExplicitThinkingOnly": true
|
|
16121
|
-
}
|
|
16331
|
+
"requestModelId": "gpt-5-3-codex-low-priority"
|
|
16122
16332
|
},
|
|
16123
16333
|
"gpt-5-4": {
|
|
16124
16334
|
"id": "gpt-5-4",
|
|
@@ -16158,10 +16368,7 @@
|
|
|
16158
16368
|
"xhigh": "gpt-5-4-xhigh"
|
|
16159
16369
|
}
|
|
16160
16370
|
},
|
|
16161
|
-
"requestModelId": "gpt-5-4-none"
|
|
16162
|
-
"compat": {
|
|
16163
|
-
"trustExplicitThinkingOnly": true
|
|
16164
|
-
}
|
|
16371
|
+
"requestModelId": "gpt-5-4-none"
|
|
16165
16372
|
},
|
|
16166
16373
|
"gpt-5-4-fast": {
|
|
16167
16374
|
"id": "gpt-5-4-fast",
|
|
@@ -16201,10 +16408,7 @@
|
|
|
16201
16408
|
"xhigh": "gpt-5-4-xhigh-priority"
|
|
16202
16409
|
}
|
|
16203
16410
|
},
|
|
16204
|
-
"requestModelId": "gpt-5-4-none-priority"
|
|
16205
|
-
"compat": {
|
|
16206
|
-
"trustExplicitThinkingOnly": true
|
|
16207
|
-
}
|
|
16411
|
+
"requestModelId": "gpt-5-4-none-priority"
|
|
16208
16412
|
},
|
|
16209
16413
|
"gpt-5-4-mini": {
|
|
16210
16414
|
"id": "gpt-5-4-mini",
|
|
@@ -16244,10 +16448,7 @@
|
|
|
16244
16448
|
"xhigh": "gpt-5-4-mini-xhigh"
|
|
16245
16449
|
}
|
|
16246
16450
|
},
|
|
16247
|
-
"requestModelId": "gpt-5-4-mini-low"
|
|
16248
|
-
"compat": {
|
|
16249
|
-
"trustExplicitThinkingOnly": true
|
|
16250
|
-
}
|
|
16451
|
+
"requestModelId": "gpt-5-4-mini-low"
|
|
16251
16452
|
},
|
|
16252
16453
|
"gpt-5-5": {
|
|
16253
16454
|
"id": "gpt-5-5",
|
|
@@ -16287,10 +16488,7 @@
|
|
|
16287
16488
|
"xhigh": "gpt-5-5-xhigh"
|
|
16288
16489
|
}
|
|
16289
16490
|
},
|
|
16290
|
-
"requestModelId": "gpt-5-5-none"
|
|
16291
|
-
"compat": {
|
|
16292
|
-
"trustExplicitThinkingOnly": true
|
|
16293
|
-
}
|
|
16491
|
+
"requestModelId": "gpt-5-5-none"
|
|
16294
16492
|
},
|
|
16295
16493
|
"gpt-5-5-fast": {
|
|
16296
16494
|
"id": "gpt-5-5-fast",
|
|
@@ -16330,10 +16528,7 @@
|
|
|
16330
16528
|
"xhigh": "gpt-5-5-xhigh-priority"
|
|
16331
16529
|
}
|
|
16332
16530
|
},
|
|
16333
|
-
"requestModelId": "gpt-5-5-none-priority"
|
|
16334
|
-
"compat": {
|
|
16335
|
-
"trustExplicitThinkingOnly": true
|
|
16336
|
-
}
|
|
16531
|
+
"requestModelId": "gpt-5-5-none-priority"
|
|
16337
16532
|
},
|
|
16338
16533
|
"kimi-k2-6": {
|
|
16339
16534
|
"id": "kimi-k2-6",
|
|
@@ -16639,12 +16834,7 @@
|
|
|
16639
16834
|
}
|
|
16640
16835
|
},
|
|
16641
16836
|
"compat": {
|
|
16642
|
-
"supportsDeveloperRole": false,
|
|
16643
|
-
"supportsReasoningEffort": true,
|
|
16644
|
-
"maxTokensField": "max_tokens",
|
|
16645
16837
|
"supportsToolChoice": false,
|
|
16646
|
-
"reasoningContentField": "reasoning_content",
|
|
16647
|
-
"requiresReasoningContentForToolCalls": true,
|
|
16648
16838
|
"requiresAssistantContentForToolCalls": true
|
|
16649
16839
|
}
|
|
16650
16840
|
},
|
|
@@ -16684,12 +16874,7 @@
|
|
|
16684
16874
|
}
|
|
16685
16875
|
},
|
|
16686
16876
|
"compat": {
|
|
16687
|
-
"supportsDeveloperRole": false,
|
|
16688
|
-
"supportsReasoningEffort": true,
|
|
16689
|
-
"maxTokensField": "max_tokens",
|
|
16690
16877
|
"supportsToolChoice": false,
|
|
16691
|
-
"reasoningContentField": "reasoning_content",
|
|
16692
|
-
"requiresReasoningContentForToolCalls": true,
|
|
16693
16878
|
"requiresAssistantContentForToolCalls": true
|
|
16694
16879
|
}
|
|
16695
16880
|
},
|
|
@@ -17135,9 +17320,9 @@
|
|
|
17135
17320
|
"image"
|
|
17136
17321
|
],
|
|
17137
17322
|
"cost": {
|
|
17138
|
-
"input": 0.
|
|
17139
|
-
"output":
|
|
17140
|
-
"cacheRead": 0.
|
|
17323
|
+
"input": 0.3,
|
|
17324
|
+
"output": 1.2,
|
|
17325
|
+
"cacheRead": 0.06,
|
|
17141
17326
|
"cacheWrite": 0
|
|
17142
17327
|
},
|
|
17143
17328
|
"contextWindow": 512000,
|
|
@@ -17765,7 +17950,6 @@
|
|
|
17765
17950
|
},
|
|
17766
17951
|
"compat": {
|
|
17767
17952
|
"supportsStore": false,
|
|
17768
|
-
"supportsDeveloperRole": false,
|
|
17769
17953
|
"supportsReasoningEffort": false
|
|
17770
17954
|
},
|
|
17771
17955
|
"thinking": {
|
|
@@ -17906,7 +18090,6 @@
|
|
|
17906
18090
|
},
|
|
17907
18091
|
"compat": {
|
|
17908
18092
|
"supportsStore": false,
|
|
17909
|
-
"supportsDeveloperRole": false,
|
|
17910
18093
|
"supportsReasoningEffort": false
|
|
17911
18094
|
},
|
|
17912
18095
|
"premiumMultiplier": 0
|
|
@@ -18358,7 +18541,6 @@
|
|
|
18358
18541
|
},
|
|
18359
18542
|
"compat": {
|
|
18360
18543
|
"supportsStore": false,
|
|
18361
|
-
"supportsDeveloperRole": false,
|
|
18362
18544
|
"supportsReasoningEffort": false
|
|
18363
18545
|
},
|
|
18364
18546
|
"premiumMultiplier": 0.25,
|
|
@@ -18397,7 +18579,6 @@
|
|
|
18397
18579
|
},
|
|
18398
18580
|
"compat": {
|
|
18399
18581
|
"supportsStore": false,
|
|
18400
|
-
"supportsDeveloperRole": false,
|
|
18401
18582
|
"supportsReasoningEffort": false
|
|
18402
18583
|
},
|
|
18403
18584
|
"thinking": {
|
|
@@ -24357,6 +24538,25 @@
|
|
|
24357
24538
|
]
|
|
24358
24539
|
}
|
|
24359
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
|
+
},
|
|
24360
24560
|
"arcee-ai/coder-large": {
|
|
24361
24561
|
"id": "arcee-ai/coder-large",
|
|
24362
24562
|
"name": "Coder Large",
|
|
@@ -25526,33 +25726,6 @@
|
|
|
25526
25726
|
"high": "giga-potato-thinking",
|
|
25527
25727
|
"xhigh": "giga-potato-thinking"
|
|
25528
25728
|
}
|
|
25529
|
-
},
|
|
25530
|
-
"compat": {
|
|
25531
|
-
"supportsStore": false,
|
|
25532
|
-
"supportsDeveloperRole": false,
|
|
25533
|
-
"supportsMultipleSystemMessages": false,
|
|
25534
|
-
"supportsReasoningEffort": true,
|
|
25535
|
-
"supportsReasoningParams": true,
|
|
25536
|
-
"reasoningEffortMap": {},
|
|
25537
|
-
"supportsUsageInStreaming": true,
|
|
25538
|
-
"alwaysSendMaxTokens": false,
|
|
25539
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
25540
|
-
"disableReasoningOnToolChoice": false,
|
|
25541
|
-
"supportsToolChoice": true,
|
|
25542
|
-
"maxTokensField": "max_completion_tokens",
|
|
25543
|
-
"requiresToolResultName": false,
|
|
25544
|
-
"requiresAssistantAfterToolResult": false,
|
|
25545
|
-
"requiresThinkingAsText": false,
|
|
25546
|
-
"requiresMistralToolIds": false,
|
|
25547
|
-
"thinkingFormat": "openai",
|
|
25548
|
-
"reasoningContentField": "reasoning_content",
|
|
25549
|
-
"requiresReasoningContentForToolCalls": false,
|
|
25550
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
25551
|
-
"requiresAssistantContentForToolCalls": false,
|
|
25552
|
-
"isOpenRouterHost": false,
|
|
25553
|
-
"isVercelGatewayHost": false,
|
|
25554
|
-
"supportsStrictMode": false,
|
|
25555
|
-
"toolStrictMode": "mixed"
|
|
25556
25729
|
}
|
|
25557
25730
|
},
|
|
25558
25731
|
"google/gemini-2.0-flash-001": {
|
|
@@ -25964,6 +26137,25 @@
|
|
|
25964
26137
|
"requiresEffort": true
|
|
25965
26138
|
}
|
|
25966
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
|
+
},
|
|
25967
26159
|
"google/gemini-3.1-flash-lite-preview": {
|
|
25968
26160
|
"id": "google/gemini-3.1-flash-lite-preview",
|
|
25969
26161
|
"name": "Gemini 3.1 Flash Lite Preview",
|
|
@@ -30731,50 +30923,6 @@
|
|
|
30731
30923
|
"high": "perplexity/sonar-reasoning-pro",
|
|
30732
30924
|
"xhigh": "perplexity/sonar-reasoning-pro"
|
|
30733
30925
|
}
|
|
30734
|
-
},
|
|
30735
|
-
"compat": {
|
|
30736
|
-
"supportsStore": false,
|
|
30737
|
-
"supportsDeveloperRole": false,
|
|
30738
|
-
"supportsMultipleSystemMessages": false,
|
|
30739
|
-
"supportsReasoningEffort": true,
|
|
30740
|
-
"supportsReasoningParams": true,
|
|
30741
|
-
"reasoningEffortMap": {},
|
|
30742
|
-
"supportsUsageInStreaming": true,
|
|
30743
|
-
"enableGeminiThinkingLoopGuard": false,
|
|
30744
|
-
"alwaysSendMaxTokens": false,
|
|
30745
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
30746
|
-
"disableReasoningOnToolChoice": false,
|
|
30747
|
-
"supportsToolChoice": true,
|
|
30748
|
-
"supportsForcedToolChoice": true,
|
|
30749
|
-
"supportsNamedToolChoice": true,
|
|
30750
|
-
"maxTokensField": "max_completion_tokens",
|
|
30751
|
-
"requiresToolResultName": false,
|
|
30752
|
-
"requiresAssistantAfterToolResult": false,
|
|
30753
|
-
"requiresThinkingAsText": false,
|
|
30754
|
-
"requiresMistralToolIds": false,
|
|
30755
|
-
"thinkingFormat": "openai",
|
|
30756
|
-
"reasoningDisableMode": "lowest-effort",
|
|
30757
|
-
"omitReasoningEffort": false,
|
|
30758
|
-
"includeEncryptedReasoning": true,
|
|
30759
|
-
"filterReasoningHistory": false,
|
|
30760
|
-
"reasoningContentField": "reasoning_content",
|
|
30761
|
-
"requiresReasoningContentForToolCalls": false,
|
|
30762
|
-
"requiresReasoningContentForAllAssistantTurns": false,
|
|
30763
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
30764
|
-
"replayReasoningContent": false,
|
|
30765
|
-
"qwenPreserveThinking": false,
|
|
30766
|
-
"requiresAssistantContentForToolCalls": false,
|
|
30767
|
-
"isOpenRouterHost": false,
|
|
30768
|
-
"wireModelIdMode": "raw",
|
|
30769
|
-
"isVercelGatewayHost": false,
|
|
30770
|
-
"supportsStrictMode": false,
|
|
30771
|
-
"toolStrictMode": "mixed",
|
|
30772
|
-
"stripDeepseekSpecialTokens": false,
|
|
30773
|
-
"streamMarkupHealingPattern": "thinking",
|
|
30774
|
-
"reasoningDeltasMayBeCumulative": false,
|
|
30775
|
-
"emptyLengthFinishIsContextError": false,
|
|
30776
|
-
"usesOpenAIToolCallIdLimit": false,
|
|
30777
|
-
"dropThinkingWhenReasoningEffort": false
|
|
30778
30926
|
}
|
|
30779
30927
|
},
|
|
30780
30928
|
"perplexity/sonar-pro-search": {
|
|
@@ -33985,11 +34133,6 @@
|
|
|
33985
34133
|
"medium",
|
|
33986
34134
|
"high"
|
|
33987
34135
|
]
|
|
33988
|
-
},
|
|
33989
|
-
"compat": {
|
|
33990
|
-
"thinkingFormat": "zai",
|
|
33991
|
-
"reasoningContentField": "reasoning_content",
|
|
33992
|
-
"supportsDeveloperRole": false
|
|
33993
34136
|
}
|
|
33994
34137
|
},
|
|
33995
34138
|
"kimi-k2": {
|
|
@@ -34013,12 +34156,7 @@
|
|
|
34013
34156
|
"cacheWrite": 0
|
|
34014
34157
|
},
|
|
34015
34158
|
"contextWindow": 262144,
|
|
34016
|
-
"maxTokens": 262144
|
|
34017
|
-
"compat": {
|
|
34018
|
-
"thinkingFormat": "zai",
|
|
34019
|
-
"reasoningContentField": "reasoning_content",
|
|
34020
|
-
"supportsDeveloperRole": false
|
|
34021
|
-
}
|
|
34159
|
+
"maxTokens": 262144
|
|
34022
34160
|
},
|
|
34023
34161
|
"kimi-k2-turbo-preview": {
|
|
34024
34162
|
"id": "kimi-k2-turbo-preview",
|
|
@@ -34041,12 +34179,7 @@
|
|
|
34041
34179
|
"cacheWrite": 0
|
|
34042
34180
|
},
|
|
34043
34181
|
"contextWindow": 262144,
|
|
34044
|
-
"maxTokens": 32000
|
|
34045
|
-
"compat": {
|
|
34046
|
-
"thinkingFormat": "zai",
|
|
34047
|
-
"reasoningContentField": "reasoning_content",
|
|
34048
|
-
"supportsDeveloperRole": false
|
|
34049
|
-
}
|
|
34182
|
+
"maxTokens": 32000
|
|
34050
34183
|
},
|
|
34051
34184
|
"kimi-k2.5": {
|
|
34052
34185
|
"id": "kimi-k2.5",
|
|
@@ -34079,11 +34212,6 @@
|
|
|
34079
34212
|
"medium",
|
|
34080
34213
|
"high"
|
|
34081
34214
|
]
|
|
34082
|
-
},
|
|
34083
|
-
"compat": {
|
|
34084
|
-
"thinkingFormat": "zai",
|
|
34085
|
-
"reasoningContentField": "reasoning_content",
|
|
34086
|
-
"supportsDeveloperRole": false
|
|
34087
34215
|
}
|
|
34088
34216
|
}
|
|
34089
34217
|
},
|
|
@@ -34705,10 +34833,10 @@
|
|
|
34705
34833
|
"cacheWrite": 0
|
|
34706
34834
|
},
|
|
34707
34835
|
"compat": {
|
|
34708
|
-
"supportsDeveloperRole": false,
|
|
34709
34836
|
"supportsReasoningEffort": false,
|
|
34710
|
-
"
|
|
34711
|
-
"
|
|
34837
|
+
"supportsStore": false,
|
|
34838
|
+
"supportsDeveloperRole": false,
|
|
34839
|
+
"reasoningContentField": "reasoning_content"
|
|
34712
34840
|
},
|
|
34713
34841
|
"contextWindow": 1000000,
|
|
34714
34842
|
"maxTokens": 32000,
|
|
@@ -34807,10 +34935,10 @@
|
|
|
34807
34935
|
"cacheWrite": 0
|
|
34808
34936
|
},
|
|
34809
34937
|
"compat": {
|
|
34810
|
-
"supportsDeveloperRole": false,
|
|
34811
34938
|
"supportsReasoningEffort": false,
|
|
34812
|
-
"
|
|
34813
|
-
"
|
|
34939
|
+
"supportsStore": false,
|
|
34940
|
+
"supportsDeveloperRole": false,
|
|
34941
|
+
"reasoningContentField": "reasoning_content"
|
|
34814
34942
|
},
|
|
34815
34943
|
"contextWindow": 204800,
|
|
34816
34944
|
"maxTokens": 32000,
|
|
@@ -35014,10 +35142,10 @@
|
|
|
35014
35142
|
"cacheWrite": 0
|
|
35015
35143
|
},
|
|
35016
35144
|
"compat": {
|
|
35017
|
-
"supportsDeveloperRole": false,
|
|
35018
35145
|
"supportsReasoningEffort": false,
|
|
35019
|
-
"
|
|
35020
|
-
"
|
|
35146
|
+
"supportsStore": false,
|
|
35147
|
+
"supportsDeveloperRole": false,
|
|
35148
|
+
"reasoningContentField": "reasoning_content"
|
|
35021
35149
|
},
|
|
35022
35150
|
"contextWindow": 1000000,
|
|
35023
35151
|
"maxTokens": 32000,
|
|
@@ -35116,10 +35244,10 @@
|
|
|
35116
35244
|
"cacheWrite": 0
|
|
35117
35245
|
},
|
|
35118
35246
|
"compat": {
|
|
35119
|
-
"supportsDeveloperRole": false,
|
|
35120
35247
|
"supportsReasoningEffort": false,
|
|
35121
|
-
"
|
|
35122
|
-
"
|
|
35248
|
+
"supportsStore": false,
|
|
35249
|
+
"supportsDeveloperRole": false,
|
|
35250
|
+
"reasoningContentField": "reasoning_content"
|
|
35123
35251
|
},
|
|
35124
35252
|
"contextWindow": 204800,
|
|
35125
35253
|
"maxTokens": 32000,
|
|
@@ -37108,33 +37236,6 @@
|
|
|
37108
37236
|
"high": "arcee-ai/trinity-large-thinking",
|
|
37109
37237
|
"xhigh": "arcee-ai/trinity-large-thinking"
|
|
37110
37238
|
}
|
|
37111
|
-
},
|
|
37112
|
-
"compat": {
|
|
37113
|
-
"supportsStore": true,
|
|
37114
|
-
"supportsDeveloperRole": false,
|
|
37115
|
-
"supportsMultipleSystemMessages": false,
|
|
37116
|
-
"supportsReasoningEffort": true,
|
|
37117
|
-
"supportsReasoningParams": true,
|
|
37118
|
-
"reasoningEffortMap": {},
|
|
37119
|
-
"supportsUsageInStreaming": true,
|
|
37120
|
-
"alwaysSendMaxTokens": false,
|
|
37121
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
37122
|
-
"disableReasoningOnToolChoice": false,
|
|
37123
|
-
"supportsToolChoice": true,
|
|
37124
|
-
"maxTokensField": "max_completion_tokens",
|
|
37125
|
-
"requiresToolResultName": false,
|
|
37126
|
-
"requiresAssistantAfterToolResult": false,
|
|
37127
|
-
"requiresThinkingAsText": false,
|
|
37128
|
-
"requiresMistralToolIds": false,
|
|
37129
|
-
"thinkingFormat": "openai",
|
|
37130
|
-
"reasoningContentField": "reasoning_content",
|
|
37131
|
-
"requiresReasoningContentForToolCalls": false,
|
|
37132
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
37133
|
-
"requiresAssistantContentForToolCalls": false,
|
|
37134
|
-
"isOpenRouterHost": false,
|
|
37135
|
-
"isVercelGatewayHost": false,
|
|
37136
|
-
"supportsStrictMode": false,
|
|
37137
|
-
"toolStrictMode": "mixed"
|
|
37138
37239
|
}
|
|
37139
37240
|
},
|
|
37140
37241
|
"arcee-ai/trinity-large-preview": {
|
|
@@ -38967,31 +39068,9 @@
|
|
|
38967
39068
|
}
|
|
38968
39069
|
},
|
|
38969
39070
|
"compat": {
|
|
38970
|
-
"supportsStore": true,
|
|
38971
|
-
"supportsDeveloperRole": false,
|
|
38972
|
-
"supportsMultipleSystemMessages": true,
|
|
38973
|
-
"supportsReasoningEffort": true,
|
|
38974
|
-
"supportsReasoningParams": true,
|
|
38975
|
-
"reasoningEffortMap": {},
|
|
38976
|
-
"supportsUsageInStreaming": true,
|
|
38977
|
-
"alwaysSendMaxTokens": false,
|
|
38978
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
38979
39071
|
"disableReasoningOnToolChoice": false,
|
|
38980
|
-
"supportsToolChoice": true,
|
|
38981
|
-
"maxTokensField": "max_completion_tokens",
|
|
38982
|
-
"requiresToolResultName": false,
|
|
38983
|
-
"requiresAssistantAfterToolResult": false,
|
|
38984
|
-
"requiresThinkingAsText": false,
|
|
38985
|
-
"requiresMistralToolIds": false,
|
|
38986
|
-
"thinkingFormat": "openai",
|
|
38987
|
-
"reasoningContentField": "reasoning_content",
|
|
38988
39072
|
"requiresReasoningContentForToolCalls": false,
|
|
38989
|
-
"allowsSyntheticReasoningContentForToolCalls": true
|
|
38990
|
-
"requiresAssistantContentForToolCalls": false,
|
|
38991
|
-
"isOpenRouterHost": false,
|
|
38992
|
-
"isVercelGatewayHost": false,
|
|
38993
|
-
"supportsStrictMode": false,
|
|
38994
|
-
"toolStrictMode": "mixed"
|
|
39073
|
+
"allowsSyntheticReasoningContentForToolCalls": true
|
|
38995
39074
|
}
|
|
38996
39075
|
},
|
|
38997
39076
|
"deepseek-chat": {
|
|
@@ -39640,33 +39719,6 @@
|
|
|
39640
39719
|
"high": "doubao-seed-1-6-thinking-250615",
|
|
39641
39720
|
"xhigh": "doubao-seed-1-6-thinking-250615"
|
|
39642
39721
|
}
|
|
39643
|
-
},
|
|
39644
|
-
"compat": {
|
|
39645
|
-
"supportsStore": true,
|
|
39646
|
-
"supportsDeveloperRole": false,
|
|
39647
|
-
"supportsMultipleSystemMessages": false,
|
|
39648
|
-
"supportsReasoningEffort": true,
|
|
39649
|
-
"supportsReasoningParams": true,
|
|
39650
|
-
"reasoningEffortMap": {},
|
|
39651
|
-
"supportsUsageInStreaming": true,
|
|
39652
|
-
"alwaysSendMaxTokens": false,
|
|
39653
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
39654
|
-
"disableReasoningOnToolChoice": false,
|
|
39655
|
-
"supportsToolChoice": true,
|
|
39656
|
-
"maxTokensField": "max_completion_tokens",
|
|
39657
|
-
"requiresToolResultName": false,
|
|
39658
|
-
"requiresAssistantAfterToolResult": false,
|
|
39659
|
-
"requiresThinkingAsText": false,
|
|
39660
|
-
"requiresMistralToolIds": false,
|
|
39661
|
-
"thinkingFormat": "openai",
|
|
39662
|
-
"reasoningContentField": "reasoning_content",
|
|
39663
|
-
"requiresReasoningContentForToolCalls": false,
|
|
39664
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
39665
|
-
"requiresAssistantContentForToolCalls": false,
|
|
39666
|
-
"isOpenRouterHost": false,
|
|
39667
|
-
"isVercelGatewayHost": false,
|
|
39668
|
-
"supportsStrictMode": false,
|
|
39669
|
-
"toolStrictMode": "mixed"
|
|
39670
39722
|
}
|
|
39671
39723
|
},
|
|
39672
39724
|
"doubao-seed-1-6-flash-250615": {
|
|
@@ -40654,7 +40706,6 @@
|
|
|
40654
40706
|
},
|
|
40655
40707
|
"compat": {
|
|
40656
40708
|
"supportsStore": false,
|
|
40657
|
-
"supportsDeveloperRole": false,
|
|
40658
40709
|
"supportsReasoningEffort": false
|
|
40659
40710
|
}
|
|
40660
40711
|
},
|
|
@@ -40789,31 +40840,7 @@
|
|
|
40789
40840
|
"requiresEffort": true
|
|
40790
40841
|
},
|
|
40791
40842
|
"compat": {
|
|
40792
|
-
"
|
|
40793
|
-
"supportsDeveloperRole": false,
|
|
40794
|
-
"supportsMultipleSystemMessages": false,
|
|
40795
|
-
"supportsReasoningEffort": true,
|
|
40796
|
-
"supportsReasoningParams": true,
|
|
40797
|
-
"reasoningEffortMap": {},
|
|
40798
|
-
"supportsUsageInStreaming": false,
|
|
40799
|
-
"alwaysSendMaxTokens": false,
|
|
40800
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
40801
|
-
"disableReasoningOnToolChoice": false,
|
|
40802
|
-
"supportsToolChoice": true,
|
|
40803
|
-
"maxTokensField": "max_completion_tokens",
|
|
40804
|
-
"requiresToolResultName": false,
|
|
40805
|
-
"requiresAssistantAfterToolResult": false,
|
|
40806
|
-
"requiresThinkingAsText": false,
|
|
40807
|
-
"requiresMistralToolIds": false,
|
|
40808
|
-
"thinkingFormat": "openai",
|
|
40809
|
-
"reasoningContentField": "reasoning_content",
|
|
40810
|
-
"requiresReasoningContentForToolCalls": false,
|
|
40811
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
40812
|
-
"requiresAssistantContentForToolCalls": false,
|
|
40813
|
-
"isOpenRouterHost": false,
|
|
40814
|
-
"isVercelGatewayHost": false,
|
|
40815
|
-
"supportsStrictMode": false,
|
|
40816
|
-
"toolStrictMode": "mixed"
|
|
40843
|
+
"supportsUsageInStreaming": false
|
|
40817
40844
|
}
|
|
40818
40845
|
},
|
|
40819
40846
|
"gemini-exp-1206": {
|
|
@@ -44112,9 +44139,7 @@
|
|
|
44112
44139
|
"requiresEffort": true
|
|
44113
44140
|
},
|
|
44114
44141
|
"compat": {
|
|
44115
|
-
"
|
|
44116
|
-
"thinkingFormat": "zai",
|
|
44117
|
-
"reasoningContentField": "reasoning_content"
|
|
44142
|
+
"thinkingFormat": "zai"
|
|
44118
44143
|
}
|
|
44119
44144
|
},
|
|
44120
44145
|
"minimax/minimax-01": {
|
|
@@ -48094,33 +48119,6 @@
|
|
|
48094
48119
|
"medium": "qwen/qwen3.5-397b-a17b-thinking",
|
|
48095
48120
|
"high": "qwen/qwen3.5-397b-a17b-thinking"
|
|
48096
48121
|
}
|
|
48097
|
-
},
|
|
48098
|
-
"compat": {
|
|
48099
|
-
"supportsStore": false,
|
|
48100
|
-
"supportsDeveloperRole": false,
|
|
48101
|
-
"supportsMultipleSystemMessages": false,
|
|
48102
|
-
"supportsReasoningEffort": true,
|
|
48103
|
-
"supportsReasoningParams": true,
|
|
48104
|
-
"reasoningEffortMap": {},
|
|
48105
|
-
"supportsUsageInStreaming": true,
|
|
48106
|
-
"alwaysSendMaxTokens": false,
|
|
48107
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
48108
|
-
"disableReasoningOnToolChoice": false,
|
|
48109
|
-
"supportsToolChoice": true,
|
|
48110
|
-
"maxTokensField": "max_completion_tokens",
|
|
48111
|
-
"requiresToolResultName": false,
|
|
48112
|
-
"requiresAssistantAfterToolResult": false,
|
|
48113
|
-
"requiresThinkingAsText": false,
|
|
48114
|
-
"requiresMistralToolIds": false,
|
|
48115
|
-
"thinkingFormat": "qwen",
|
|
48116
|
-
"reasoningContentField": "reasoning_content",
|
|
48117
|
-
"requiresReasoningContentForToolCalls": false,
|
|
48118
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
48119
|
-
"requiresAssistantContentForToolCalls": false,
|
|
48120
|
-
"isOpenRouterHost": false,
|
|
48121
|
-
"isVercelGatewayHost": false,
|
|
48122
|
-
"supportsStrictMode": false,
|
|
48123
|
-
"toolStrictMode": "mixed"
|
|
48124
48122
|
}
|
|
48125
48123
|
},
|
|
48126
48124
|
"qwen/qwen3.5-9b": {
|
|
@@ -48186,33 +48184,6 @@
|
|
|
48186
48184
|
"medium": "qwen/qwen3.5-plus-thinking",
|
|
48187
48185
|
"high": "qwen/qwen3.5-plus-thinking"
|
|
48188
48186
|
}
|
|
48189
|
-
},
|
|
48190
|
-
"compat": {
|
|
48191
|
-
"supportsStore": false,
|
|
48192
|
-
"supportsDeveloperRole": false,
|
|
48193
|
-
"supportsMultipleSystemMessages": false,
|
|
48194
|
-
"supportsReasoningEffort": true,
|
|
48195
|
-
"supportsReasoningParams": true,
|
|
48196
|
-
"reasoningEffortMap": {},
|
|
48197
|
-
"supportsUsageInStreaming": true,
|
|
48198
|
-
"alwaysSendMaxTokens": false,
|
|
48199
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
48200
|
-
"disableReasoningOnToolChoice": false,
|
|
48201
|
-
"supportsToolChoice": true,
|
|
48202
|
-
"maxTokensField": "max_completion_tokens",
|
|
48203
|
-
"requiresToolResultName": false,
|
|
48204
|
-
"requiresAssistantAfterToolResult": false,
|
|
48205
|
-
"requiresThinkingAsText": false,
|
|
48206
|
-
"requiresMistralToolIds": false,
|
|
48207
|
-
"thinkingFormat": "qwen",
|
|
48208
|
-
"reasoningContentField": "reasoning_content",
|
|
48209
|
-
"requiresReasoningContentForToolCalls": false,
|
|
48210
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
48211
|
-
"requiresAssistantContentForToolCalls": false,
|
|
48212
|
-
"isOpenRouterHost": false,
|
|
48213
|
-
"isVercelGatewayHost": false,
|
|
48214
|
-
"supportsStrictMode": false,
|
|
48215
|
-
"toolStrictMode": "mixed"
|
|
48216
48187
|
}
|
|
48217
48188
|
},
|
|
48218
48189
|
"Qwen/Qwen3.6-35B-A3B": {
|
|
@@ -49608,33 +49579,6 @@
|
|
|
49608
49579
|
"high": "sonar-reasoning-pro",
|
|
49609
49580
|
"xhigh": "sonar-reasoning-pro"
|
|
49610
49581
|
}
|
|
49611
|
-
},
|
|
49612
|
-
"compat": {
|
|
49613
|
-
"supportsStore": true,
|
|
49614
|
-
"supportsDeveloperRole": false,
|
|
49615
|
-
"supportsMultipleSystemMessages": false,
|
|
49616
|
-
"supportsReasoningEffort": true,
|
|
49617
|
-
"supportsReasoningParams": true,
|
|
49618
|
-
"reasoningEffortMap": {},
|
|
49619
|
-
"supportsUsageInStreaming": true,
|
|
49620
|
-
"alwaysSendMaxTokens": false,
|
|
49621
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
49622
|
-
"disableReasoningOnToolChoice": false,
|
|
49623
|
-
"supportsToolChoice": true,
|
|
49624
|
-
"maxTokensField": "max_completion_tokens",
|
|
49625
|
-
"requiresToolResultName": false,
|
|
49626
|
-
"requiresAssistantAfterToolResult": false,
|
|
49627
|
-
"requiresThinkingAsText": false,
|
|
49628
|
-
"requiresMistralToolIds": false,
|
|
49629
|
-
"thinkingFormat": "openai",
|
|
49630
|
-
"reasoningContentField": "reasoning_content",
|
|
49631
|
-
"requiresReasoningContentForToolCalls": false,
|
|
49632
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
49633
|
-
"requiresAssistantContentForToolCalls": false,
|
|
49634
|
-
"isOpenRouterHost": false,
|
|
49635
|
-
"isVercelGatewayHost": false,
|
|
49636
|
-
"supportsStrictMode": false,
|
|
49637
|
-
"toolStrictMode": "mixed"
|
|
49638
49582
|
}
|
|
49639
49583
|
},
|
|
49640
49584
|
"soob3123/amoral-gemma3-27B-v2": {
|
|
@@ -50356,33 +50300,6 @@
|
|
|
50356
50300
|
"high": "TEE/glm-5-1-thinking",
|
|
50357
50301
|
"xhigh": "TEE/glm-5-1-thinking"
|
|
50358
50302
|
}
|
|
50359
|
-
},
|
|
50360
|
-
"compat": {
|
|
50361
|
-
"supportsStore": true,
|
|
50362
|
-
"supportsDeveloperRole": false,
|
|
50363
|
-
"supportsMultipleSystemMessages": false,
|
|
50364
|
-
"supportsReasoningEffort": true,
|
|
50365
|
-
"supportsReasoningParams": true,
|
|
50366
|
-
"reasoningEffortMap": {},
|
|
50367
|
-
"supportsUsageInStreaming": true,
|
|
50368
|
-
"alwaysSendMaxTokens": false,
|
|
50369
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
50370
|
-
"disableReasoningOnToolChoice": false,
|
|
50371
|
-
"supportsToolChoice": true,
|
|
50372
|
-
"maxTokensField": "max_completion_tokens",
|
|
50373
|
-
"requiresToolResultName": false,
|
|
50374
|
-
"requiresAssistantAfterToolResult": false,
|
|
50375
|
-
"requiresThinkingAsText": false,
|
|
50376
|
-
"requiresMistralToolIds": false,
|
|
50377
|
-
"thinkingFormat": "openai",
|
|
50378
|
-
"reasoningContentField": "reasoning_content",
|
|
50379
|
-
"requiresReasoningContentForToolCalls": false,
|
|
50380
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50381
|
-
"requiresAssistantContentForToolCalls": false,
|
|
50382
|
-
"isOpenRouterHost": false,
|
|
50383
|
-
"isVercelGatewayHost": false,
|
|
50384
|
-
"supportsStrictMode": false,
|
|
50385
|
-
"toolStrictMode": "mixed"
|
|
50386
50303
|
}
|
|
50387
50304
|
},
|
|
50388
50305
|
"TEE/glm-5.1": {
|
|
@@ -50420,33 +50337,6 @@
|
|
|
50420
50337
|
"high": "TEE/glm-5.1-thinking",
|
|
50421
50338
|
"xhigh": "TEE/glm-5.1-thinking"
|
|
50422
50339
|
}
|
|
50423
|
-
},
|
|
50424
|
-
"compat": {
|
|
50425
|
-
"supportsStore": true,
|
|
50426
|
-
"supportsDeveloperRole": false,
|
|
50427
|
-
"supportsMultipleSystemMessages": false,
|
|
50428
|
-
"supportsReasoningEffort": true,
|
|
50429
|
-
"supportsReasoningParams": true,
|
|
50430
|
-
"reasoningEffortMap": {},
|
|
50431
|
-
"supportsUsageInStreaming": true,
|
|
50432
|
-
"alwaysSendMaxTokens": false,
|
|
50433
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
50434
|
-
"disableReasoningOnToolChoice": false,
|
|
50435
|
-
"supportsToolChoice": true,
|
|
50436
|
-
"maxTokensField": "max_completion_tokens",
|
|
50437
|
-
"requiresToolResultName": false,
|
|
50438
|
-
"requiresAssistantAfterToolResult": false,
|
|
50439
|
-
"requiresThinkingAsText": false,
|
|
50440
|
-
"requiresMistralToolIds": false,
|
|
50441
|
-
"thinkingFormat": "openai",
|
|
50442
|
-
"reasoningContentField": "reasoning_content",
|
|
50443
|
-
"requiresReasoningContentForToolCalls": false,
|
|
50444
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50445
|
-
"requiresAssistantContentForToolCalls": false,
|
|
50446
|
-
"isOpenRouterHost": false,
|
|
50447
|
-
"isVercelGatewayHost": false,
|
|
50448
|
-
"supportsStrictMode": false,
|
|
50449
|
-
"toolStrictMode": "mixed"
|
|
50450
50340
|
}
|
|
50451
50341
|
},
|
|
50452
50342
|
"TEE/glm-5.2": {
|
|
@@ -50573,33 +50463,6 @@
|
|
|
50573
50463
|
"high": "TEE/kimi-k2.5-thinking",
|
|
50574
50464
|
"xhigh": "TEE/kimi-k2.5-thinking"
|
|
50575
50465
|
}
|
|
50576
|
-
},
|
|
50577
|
-
"compat": {
|
|
50578
|
-
"supportsStore": true,
|
|
50579
|
-
"supportsDeveloperRole": false,
|
|
50580
|
-
"supportsMultipleSystemMessages": false,
|
|
50581
|
-
"supportsReasoningEffort": true,
|
|
50582
|
-
"supportsReasoningParams": true,
|
|
50583
|
-
"reasoningEffortMap": {},
|
|
50584
|
-
"supportsUsageInStreaming": true,
|
|
50585
|
-
"alwaysSendMaxTokens": true,
|
|
50586
|
-
"disableReasoningOnForcedToolChoice": true,
|
|
50587
|
-
"disableReasoningOnToolChoice": false,
|
|
50588
|
-
"supportsToolChoice": true,
|
|
50589
|
-
"maxTokensField": "max_completion_tokens",
|
|
50590
|
-
"requiresToolResultName": false,
|
|
50591
|
-
"requiresAssistantAfterToolResult": false,
|
|
50592
|
-
"requiresThinkingAsText": false,
|
|
50593
|
-
"requiresMistralToolIds": false,
|
|
50594
|
-
"thinkingFormat": "openai",
|
|
50595
|
-
"reasoningContentField": "reasoning_content",
|
|
50596
|
-
"requiresReasoningContentForToolCalls": true,
|
|
50597
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
50598
|
-
"requiresAssistantContentForToolCalls": true,
|
|
50599
|
-
"isOpenRouterHost": false,
|
|
50600
|
-
"isVercelGatewayHost": false,
|
|
50601
|
-
"supportsStrictMode": false,
|
|
50602
|
-
"toolStrictMode": "mixed"
|
|
50603
50466
|
}
|
|
50604
50467
|
},
|
|
50605
50468
|
"TEE/kimi-k2.6": {
|
|
@@ -51699,33 +51562,6 @@
|
|
|
51699
51562
|
"high": "x-ai/grok-4.1-fast-reasoning",
|
|
51700
51563
|
"xhigh": "x-ai/grok-4.1-fast-reasoning"
|
|
51701
51564
|
}
|
|
51702
|
-
},
|
|
51703
|
-
"compat": {
|
|
51704
|
-
"supportsStore": true,
|
|
51705
|
-
"supportsDeveloperRole": false,
|
|
51706
|
-
"supportsMultipleSystemMessages": false,
|
|
51707
|
-
"supportsReasoningEffort": true,
|
|
51708
|
-
"supportsReasoningParams": true,
|
|
51709
|
-
"reasoningEffortMap": {},
|
|
51710
|
-
"supportsUsageInStreaming": true,
|
|
51711
|
-
"alwaysSendMaxTokens": false,
|
|
51712
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
51713
|
-
"disableReasoningOnToolChoice": false,
|
|
51714
|
-
"supportsToolChoice": true,
|
|
51715
|
-
"maxTokensField": "max_completion_tokens",
|
|
51716
|
-
"requiresToolResultName": false,
|
|
51717
|
-
"requiresAssistantAfterToolResult": false,
|
|
51718
|
-
"requiresThinkingAsText": false,
|
|
51719
|
-
"requiresMistralToolIds": false,
|
|
51720
|
-
"thinkingFormat": "openai",
|
|
51721
|
-
"reasoningContentField": "reasoning_content",
|
|
51722
|
-
"requiresReasoningContentForToolCalls": false,
|
|
51723
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
51724
|
-
"requiresAssistantContentForToolCalls": false,
|
|
51725
|
-
"isOpenRouterHost": false,
|
|
51726
|
-
"isVercelGatewayHost": false,
|
|
51727
|
-
"supportsStrictMode": false,
|
|
51728
|
-
"toolStrictMode": "mixed"
|
|
51729
51565
|
}
|
|
51730
51566
|
},
|
|
51731
51567
|
"x-ai/grok-4.20": {
|
|
@@ -51999,31 +51835,7 @@
|
|
|
51999
51835
|
}
|
|
52000
51836
|
},
|
|
52001
51837
|
"compat": {
|
|
52002
|
-
"
|
|
52003
|
-
"supportsDeveloperRole": false,
|
|
52004
|
-
"supportsMultipleSystemMessages": false,
|
|
52005
|
-
"supportsReasoningEffort": true,
|
|
52006
|
-
"supportsReasoningParams": true,
|
|
52007
|
-
"reasoningEffortMap": {},
|
|
52008
|
-
"supportsUsageInStreaming": true,
|
|
52009
|
-
"alwaysSendMaxTokens": false,
|
|
52010
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
52011
|
-
"disableReasoningOnToolChoice": false,
|
|
52012
|
-
"supportsToolChoice": true,
|
|
52013
|
-
"maxTokensField": "max_completion_tokens",
|
|
52014
|
-
"requiresToolResultName": false,
|
|
52015
|
-
"requiresAssistantAfterToolResult": false,
|
|
52016
|
-
"requiresThinkingAsText": false,
|
|
52017
|
-
"requiresMistralToolIds": false,
|
|
52018
|
-
"thinkingFormat": "openai",
|
|
52019
|
-
"reasoningContentField": "reasoning_content",
|
|
52020
|
-
"requiresReasoningContentForToolCalls": false,
|
|
52021
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
52022
|
-
"requiresAssistantContentForToolCalls": false,
|
|
52023
|
-
"isOpenRouterHost": false,
|
|
52024
|
-
"isVercelGatewayHost": false,
|
|
52025
|
-
"supportsStrictMode": false,
|
|
52026
|
-
"toolStrictMode": "mixed"
|
|
51838
|
+
"reasoningEffortMap": {}
|
|
52027
51839
|
}
|
|
52028
51840
|
},
|
|
52029
51841
|
"xiaomi/mimo-v2-flash-original": {
|
|
@@ -52061,31 +51873,7 @@
|
|
|
52061
51873
|
}
|
|
52062
51874
|
},
|
|
52063
51875
|
"compat": {
|
|
52064
|
-
"
|
|
52065
|
-
"supportsDeveloperRole": false,
|
|
52066
|
-
"supportsMultipleSystemMessages": false,
|
|
52067
|
-
"supportsReasoningEffort": true,
|
|
52068
|
-
"supportsReasoningParams": true,
|
|
52069
|
-
"reasoningEffortMap": {},
|
|
52070
|
-
"supportsUsageInStreaming": true,
|
|
52071
|
-
"alwaysSendMaxTokens": false,
|
|
52072
|
-
"disableReasoningOnForcedToolChoice": false,
|
|
52073
|
-
"disableReasoningOnToolChoice": false,
|
|
52074
|
-
"supportsToolChoice": true,
|
|
52075
|
-
"maxTokensField": "max_completion_tokens",
|
|
52076
|
-
"requiresToolResultName": false,
|
|
52077
|
-
"requiresAssistantAfterToolResult": false,
|
|
52078
|
-
"requiresThinkingAsText": false,
|
|
52079
|
-
"requiresMistralToolIds": false,
|
|
52080
|
-
"thinkingFormat": "openai",
|
|
52081
|
-
"reasoningContentField": "reasoning_content",
|
|
52082
|
-
"requiresReasoningContentForToolCalls": false,
|
|
52083
|
-
"allowsSyntheticReasoningContentForToolCalls": true,
|
|
52084
|
-
"requiresAssistantContentForToolCalls": false,
|
|
52085
|
-
"isOpenRouterHost": false,
|
|
52086
|
-
"isVercelGatewayHost": false,
|
|
52087
|
-
"supportsStrictMode": false,
|
|
52088
|
-
"toolStrictMode": "mixed"
|
|
51876
|
+
"reasoningEffortMap": {}
|
|
52089
51877
|
}
|
|
52090
51878
|
},
|
|
52091
51879
|
"xiaomi/mimo-v2-omni": {
|
|
@@ -59962,9 +59750,9 @@
|
|
|
59962
59750
|
"image"
|
|
59963
59751
|
],
|
|
59964
59752
|
"cost": {
|
|
59965
|
-
"input": 0.
|
|
59966
|
-
"output":
|
|
59967
|
-
"cacheRead": 0.
|
|
59753
|
+
"input": 0.3,
|
|
59754
|
+
"output": 1.2,
|
|
59755
|
+
"cacheRead": 0.06,
|
|
59968
59756
|
"cacheWrite": 0
|
|
59969
59757
|
},
|
|
59970
59758
|
"contextWindow": 1000000,
|
|
@@ -62106,10 +61894,10 @@
|
|
|
62106
61894
|
"image"
|
|
62107
61895
|
],
|
|
62108
61896
|
"cost": {
|
|
62109
|
-
"input":
|
|
62110
|
-
"output":
|
|
62111
|
-
"cacheRead": 0.
|
|
62112
|
-
"cacheWrite":
|
|
61897
|
+
"input": 2,
|
|
61898
|
+
"output": 10,
|
|
61899
|
+
"cacheRead": 0.19999999999999998,
|
|
61900
|
+
"cacheWrite": 2.5
|
|
62113
61901
|
},
|
|
62114
61902
|
"contextWindow": 1000000,
|
|
62115
61903
|
"maxTokens": 128000,
|
|
@@ -63028,6 +62816,43 @@
|
|
|
63028
62816
|
]
|
|
63029
62817
|
}
|
|
63030
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
|
+
},
|
|
63031
62856
|
"arcee-ai/trinity-large-preview": {
|
|
63032
62857
|
"id": "arcee-ai/trinity-large-preview",
|
|
63033
62858
|
"name": "Trinity Large Preview",
|
|
@@ -63782,8 +63607,8 @@
|
|
|
63782
63607
|
"text"
|
|
63783
63608
|
],
|
|
63784
63609
|
"cost": {
|
|
63785
|
-
"input": 0.
|
|
63786
|
-
"output": 0.
|
|
63610
|
+
"input": 0.098,
|
|
63611
|
+
"output": 0.196,
|
|
63787
63612
|
"cacheRead": 0.02,
|
|
63788
63613
|
"cacheWrite": 0
|
|
63789
63614
|
},
|
|
@@ -75724,18 +75549,7 @@
|
|
|
75724
75549
|
}
|
|
75725
75550
|
},
|
|
75726
75551
|
"compat": {
|
|
75727
|
-
"
|
|
75728
|
-
"disableStrictTools": false,
|
|
75729
|
-
"disableAdaptiveThinking": false,
|
|
75730
|
-
"supportsEagerToolInputStreaming": true,
|
|
75731
|
-
"supportsLongCacheRetention": false,
|
|
75732
|
-
"supportsMidConversationSystem": false,
|
|
75733
|
-
"supportsForcedToolChoice": true,
|
|
75734
|
-
"supportsSamplingParams": true,
|
|
75735
|
-
"requiresToolResultId": false,
|
|
75736
|
-
"requiresThinkingEnabled": false,
|
|
75737
|
-
"replayUnsignedThinking": false,
|
|
75738
|
-
"escapeBuiltinToolNames": false
|
|
75552
|
+
"replayUnsignedThinking": false
|
|
75739
75553
|
}
|
|
75740
75554
|
},
|
|
75741
75555
|
"alibaba/qwen3-max-preview": {
|
|
@@ -76616,6 +76430,44 @@
|
|
|
76616
76430
|
}
|
|
76617
76431
|
}
|
|
76618
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
|
+
},
|
|
76619
76471
|
"arcee-ai/trinity-large-preview": {
|
|
76620
76472
|
"id": "arcee-ai/trinity-large-preview",
|
|
76621
76473
|
"name": "Trinity Large Preview",
|
|
@@ -78455,15 +78307,6 @@
|
|
|
78455
78307
|
}
|
|
78456
78308
|
},
|
|
78457
78309
|
"compat": {
|
|
78458
|
-
"officialEndpoint": false,
|
|
78459
|
-
"disableStrictTools": false,
|
|
78460
|
-
"disableAdaptiveThinking": false,
|
|
78461
|
-
"supportsEagerToolInputStreaming": true,
|
|
78462
|
-
"supportsLongCacheRetention": false,
|
|
78463
|
-
"supportsMidConversationSystem": false,
|
|
78464
|
-
"supportsForcedToolChoice": true,
|
|
78465
|
-
"supportsSamplingParams": true,
|
|
78466
|
-
"requiresToolResultId": false,
|
|
78467
78310
|
"replayUnsignedThinking": false
|
|
78468
78311
|
}
|
|
78469
78312
|
},
|
|
@@ -81078,10 +80921,6 @@
|
|
|
81078
80921
|
},
|
|
81079
80922
|
"contextWindow": 1000000,
|
|
81080
80923
|
"maxTokens": 65536,
|
|
81081
|
-
"compat": {
|
|
81082
|
-
"supportsDeveloperRole": false,
|
|
81083
|
-
"reasoningContentField": "reasoning_content"
|
|
81084
|
-
},
|
|
81085
80924
|
"thinking": {
|
|
81086
80925
|
"mode": "effort",
|
|
81087
80926
|
"efforts": [
|
|
@@ -81118,10 +80957,6 @@
|
|
|
81118
80957
|
},
|
|
81119
80958
|
"contextWindow": 1000000,
|
|
81120
80959
|
"maxTokens": 65536,
|
|
81121
|
-
"compat": {
|
|
81122
|
-
"supportsDeveloperRole": false,
|
|
81123
|
-
"reasoningContentField": "reasoning_content"
|
|
81124
|
-
},
|
|
81125
80960
|
"thinking": {
|
|
81126
80961
|
"mode": "effort",
|
|
81127
80962
|
"efforts": [
|
|
@@ -81159,9 +80994,7 @@
|
|
|
81159
80994
|
"contextWindow": 202752,
|
|
81160
80995
|
"maxTokens": 65536,
|
|
81161
80996
|
"compat": {
|
|
81162
|
-
"
|
|
81163
|
-
"thinkingFormat": "zai",
|
|
81164
|
-
"reasoningContentField": "reasoning_content"
|
|
80997
|
+
"thinkingFormat": "zai"
|
|
81165
80998
|
},
|
|
81166
80999
|
"thinking": {
|
|
81167
81000
|
"mode": "effort",
|
|
@@ -81193,9 +81026,7 @@
|
|
|
81193
81026
|
"contextWindow": 262144,
|
|
81194
81027
|
"maxTokens": 65536,
|
|
81195
81028
|
"compat": {
|
|
81196
|
-
"
|
|
81197
|
-
"thinkingFormat": "zai",
|
|
81198
|
-
"reasoningContentField": "reasoning_content"
|
|
81029
|
+
"thinkingFormat": "zai"
|
|
81199
81030
|
},
|
|
81200
81031
|
"thinking": {
|
|
81201
81032
|
"mode": "effort",
|
|
@@ -81225,10 +81056,7 @@
|
|
|
81225
81056
|
"cacheWrite": 0
|
|
81226
81057
|
},
|
|
81227
81058
|
"contextWindow": 262144,
|
|
81228
|
-
"maxTokens": 65536
|
|
81229
|
-
"compat": {
|
|
81230
|
-
"supportsDeveloperRole": false
|
|
81231
|
-
}
|
|
81059
|
+
"maxTokens": 65536
|
|
81232
81060
|
},
|
|
81233
81061
|
"Qwen3.6-35B-A3B": {
|
|
81234
81062
|
"id": "Qwen3.6-35B-A3B",
|
|
@@ -81248,10 +81076,7 @@
|
|
|
81248
81076
|
"cacheWrite": 0
|
|
81249
81077
|
},
|
|
81250
81078
|
"contextWindow": 256000,
|
|
81251
|
-
"maxTokens": 65536
|
|
81252
|
-
"compat": {
|
|
81253
|
-
"supportsDeveloperRole": false
|
|
81254
|
-
}
|
|
81079
|
+
"maxTokens": 65536
|
|
81255
81080
|
},
|
|
81256
81081
|
"qwen3.7-max": {
|
|
81257
81082
|
"id": "qwen3.7-max",
|
|
@@ -81271,10 +81096,6 @@
|
|
|
81271
81096
|
},
|
|
81272
81097
|
"contextWindow": 256000,
|
|
81273
81098
|
"maxTokens": 65536,
|
|
81274
|
-
"compat": {
|
|
81275
|
-
"supportsDeveloperRole": false,
|
|
81276
|
-
"reasoningContentField": "reasoning_content"
|
|
81277
|
-
},
|
|
81278
81099
|
"thinking": {
|
|
81279
81100
|
"mode": "effort",
|
|
81280
81101
|
"efforts": [
|
|
@@ -83592,6 +83413,44 @@
|
|
|
83592
83413
|
}
|
|
83593
83414
|
}
|
|
83594
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
|
+
},
|
|
83595
83454
|
"baidu/ernie-5.0-thinking-preview": {
|
|
83596
83455
|
"id": "baidu/ernie-5.0-thinking-preview",
|
|
83597
83456
|
"name": "ERNIE 5.0",
|
|
@@ -88273,11 +88132,6 @@
|
|
|
88273
88132
|
"medium",
|
|
88274
88133
|
"high"
|
|
88275
88134
|
]
|
|
88276
|
-
},
|
|
88277
|
-
"compat": {
|
|
88278
|
-
"thinkingFormat": "zai",
|
|
88279
|
-
"reasoningContentField": "reasoning_content",
|
|
88280
|
-
"supportsDeveloperRole": false
|
|
88281
88135
|
}
|
|
88282
88136
|
},
|
|
88283
88137
|
"glm-4.5-air": {
|
|
@@ -88339,11 +88193,6 @@
|
|
|
88339
88193
|
"medium",
|
|
88340
88194
|
"high"
|
|
88341
88195
|
]
|
|
88342
|
-
},
|
|
88343
|
-
"compat": {
|
|
88344
|
-
"thinkingFormat": "zai",
|
|
88345
|
-
"reasoningContentField": "reasoning_content",
|
|
88346
|
-
"supportsDeveloperRole": false
|
|
88347
88196
|
}
|
|
88348
88197
|
},
|
|
88349
88198
|
"glm-4.6v": {
|
|
@@ -88439,11 +88288,6 @@
|
|
|
88439
88288
|
"medium",
|
|
88440
88289
|
"high"
|
|
88441
88290
|
]
|
|
88442
|
-
},
|
|
88443
|
-
"compat": {
|
|
88444
|
-
"thinkingFormat": "zai",
|
|
88445
|
-
"reasoningContentField": "reasoning_content",
|
|
88446
|
-
"supportsDeveloperRole": false
|
|
88447
88291
|
}
|
|
88448
88292
|
},
|
|
88449
88293
|
"glm-5-turbo": {
|