@oh-my-pi/pi-catalog 16.1.13 → 16.1.15
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 +16 -0
- package/dist/types/compat/devin.d.ts +9 -0
- package/dist/types/provider-models/descriptors.d.ts +9 -0
- package/dist/types/provider-models/openai-compat.d.ts +7 -0
- package/dist/types/types.d.ts +21 -2
- package/dist/types/variant-collapse.d.ts +1 -0
- package/package.json +3 -3
- package/src/build.ts +3 -0
- package/src/compat/devin.ts +12 -0
- package/src/compat/openai.ts +1 -0
- package/src/discovery/devin.ts +1 -2
- package/src/model-thinking.ts +19 -0
- package/src/models.json +574 -1848
- package/src/provider-models/descriptors.ts +9 -0
- package/src/provider-models/openai-compat.ts +104 -0
- package/src/types.ts +27 -2
- package/src/variant-collapse.ts +271 -0
package/src/models.json
CHANGED
|
@@ -14594,7 +14594,7 @@
|
|
|
14594
14594
|
"contextWindow": 200000,
|
|
14595
14595
|
"maxTokens": 64000,
|
|
14596
14596
|
"thinking": {
|
|
14597
|
-
"mode": "
|
|
14597
|
+
"mode": "budget",
|
|
14598
14598
|
"efforts": [
|
|
14599
14599
|
"minimal",
|
|
14600
14600
|
"low",
|
|
@@ -14608,6 +14608,9 @@
|
|
|
14608
14608
|
"medium": "claude-opus-4-6-thinking",
|
|
14609
14609
|
"high": "claude-opus-4-6-thinking"
|
|
14610
14610
|
}
|
|
14611
|
+
},
|
|
14612
|
+
"compat": {
|
|
14613
|
+
"trustExplicitThinkingOnly": true
|
|
14611
14614
|
}
|
|
14612
14615
|
},
|
|
14613
14616
|
"claude-opus-4-6-1m": {
|
|
@@ -14631,7 +14634,7 @@
|
|
|
14631
14634
|
"contextWindow": 1000000,
|
|
14632
14635
|
"maxTokens": 64000,
|
|
14633
14636
|
"thinking": {
|
|
14634
|
-
"mode": "
|
|
14637
|
+
"mode": "budget",
|
|
14635
14638
|
"efforts": [
|
|
14636
14639
|
"minimal",
|
|
14637
14640
|
"low",
|
|
@@ -14645,6 +14648,9 @@
|
|
|
14645
14648
|
"medium": "claude-opus-4-6-thinking-1m",
|
|
14646
14649
|
"high": "claude-opus-4-6-thinking-1m"
|
|
14647
14650
|
}
|
|
14651
|
+
},
|
|
14652
|
+
"compat": {
|
|
14653
|
+
"trustExplicitThinkingOnly": true
|
|
14648
14654
|
}
|
|
14649
14655
|
},
|
|
14650
14656
|
"claude-opus-4-6-fast": {
|
|
@@ -14668,7 +14674,7 @@
|
|
|
14668
14674
|
"contextWindow": 200000,
|
|
14669
14675
|
"maxTokens": 64000,
|
|
14670
14676
|
"thinking": {
|
|
14671
|
-
"mode": "
|
|
14677
|
+
"mode": "budget",
|
|
14672
14678
|
"efforts": [
|
|
14673
14679
|
"minimal",
|
|
14674
14680
|
"low",
|
|
@@ -14682,371 +14688,14 @@
|
|
|
14682
14688
|
"medium": "claude-opus-4-6-thinking-fast",
|
|
14683
14689
|
"high": "claude-opus-4-6-thinking-fast"
|
|
14684
14690
|
}
|
|
14685
|
-
}
|
|
14686
|
-
},
|
|
14687
|
-
"claude-opus-4-7-high": {
|
|
14688
|
-
"id": "claude-opus-4-7-high",
|
|
14689
|
-
"name": "Claude Opus 4.7 High",
|
|
14690
|
-
"api": "devin-agent",
|
|
14691
|
-
"provider": "devin",
|
|
14692
|
-
"baseUrl": "https://server.codeium.com",
|
|
14693
|
-
"reasoning": true,
|
|
14694
|
-
"input": [
|
|
14695
|
-
"text",
|
|
14696
|
-
"image"
|
|
14697
|
-
],
|
|
14698
|
-
"supportsTools": true,
|
|
14699
|
-
"cost": {
|
|
14700
|
-
"input": 0,
|
|
14701
|
-
"output": 0,
|
|
14702
|
-
"cacheRead": 0,
|
|
14703
|
-
"cacheWrite": 0
|
|
14704
|
-
},
|
|
14705
|
-
"contextWindow": 1000000,
|
|
14706
|
-
"maxTokens": 64000,
|
|
14707
|
-
"thinking": {
|
|
14708
|
-
"mode": "effort",
|
|
14709
|
-
"efforts": [
|
|
14710
|
-
"minimal",
|
|
14711
|
-
"low",
|
|
14712
|
-
"medium",
|
|
14713
|
-
"high"
|
|
14714
|
-
]
|
|
14715
|
-
}
|
|
14716
|
-
},
|
|
14717
|
-
"claude-opus-4-7-high-fast": {
|
|
14718
|
-
"id": "claude-opus-4-7-high-fast",
|
|
14719
|
-
"name": "Claude Opus 4.7 High Fast",
|
|
14720
|
-
"api": "devin-agent",
|
|
14721
|
-
"provider": "devin",
|
|
14722
|
-
"baseUrl": "https://server.codeium.com",
|
|
14723
|
-
"reasoning": true,
|
|
14724
|
-
"input": [
|
|
14725
|
-
"text",
|
|
14726
|
-
"image"
|
|
14727
|
-
],
|
|
14728
|
-
"supportsTools": true,
|
|
14729
|
-
"cost": {
|
|
14730
|
-
"input": 0,
|
|
14731
|
-
"output": 0,
|
|
14732
|
-
"cacheRead": 0,
|
|
14733
|
-
"cacheWrite": 0
|
|
14734
|
-
},
|
|
14735
|
-
"contextWindow": 1000000,
|
|
14736
|
-
"maxTokens": 64000,
|
|
14737
|
-
"thinking": {
|
|
14738
|
-
"mode": "effort",
|
|
14739
|
-
"efforts": [
|
|
14740
|
-
"minimal",
|
|
14741
|
-
"low",
|
|
14742
|
-
"medium",
|
|
14743
|
-
"high"
|
|
14744
|
-
]
|
|
14745
|
-
}
|
|
14746
|
-
},
|
|
14747
|
-
"claude-opus-4-7-low": {
|
|
14748
|
-
"id": "claude-opus-4-7-low",
|
|
14749
|
-
"name": "Claude Opus 4.7 Low",
|
|
14750
|
-
"api": "devin-agent",
|
|
14751
|
-
"provider": "devin",
|
|
14752
|
-
"baseUrl": "https://server.codeium.com",
|
|
14753
|
-
"reasoning": true,
|
|
14754
|
-
"input": [
|
|
14755
|
-
"text",
|
|
14756
|
-
"image"
|
|
14757
|
-
],
|
|
14758
|
-
"supportsTools": true,
|
|
14759
|
-
"cost": {
|
|
14760
|
-
"input": 0,
|
|
14761
|
-
"output": 0,
|
|
14762
|
-
"cacheRead": 0,
|
|
14763
|
-
"cacheWrite": 0
|
|
14764
|
-
},
|
|
14765
|
-
"contextWindow": 1000000,
|
|
14766
|
-
"maxTokens": 64000,
|
|
14767
|
-
"thinking": {
|
|
14768
|
-
"mode": "effort",
|
|
14769
|
-
"efforts": [
|
|
14770
|
-
"minimal",
|
|
14771
|
-
"low",
|
|
14772
|
-
"medium",
|
|
14773
|
-
"high"
|
|
14774
|
-
]
|
|
14775
|
-
}
|
|
14776
|
-
},
|
|
14777
|
-
"claude-opus-4-7-low-fast": {
|
|
14778
|
-
"id": "claude-opus-4-7-low-fast",
|
|
14779
|
-
"name": "Claude Opus 4.7 Low Fast",
|
|
14780
|
-
"api": "devin-agent",
|
|
14781
|
-
"provider": "devin",
|
|
14782
|
-
"baseUrl": "https://server.codeium.com",
|
|
14783
|
-
"reasoning": true,
|
|
14784
|
-
"input": [
|
|
14785
|
-
"text",
|
|
14786
|
-
"image"
|
|
14787
|
-
],
|
|
14788
|
-
"supportsTools": true,
|
|
14789
|
-
"cost": {
|
|
14790
|
-
"input": 0,
|
|
14791
|
-
"output": 0,
|
|
14792
|
-
"cacheRead": 0,
|
|
14793
|
-
"cacheWrite": 0
|
|
14794
|
-
},
|
|
14795
|
-
"contextWindow": 1000000,
|
|
14796
|
-
"maxTokens": 64000,
|
|
14797
|
-
"thinking": {
|
|
14798
|
-
"mode": "effort",
|
|
14799
|
-
"efforts": [
|
|
14800
|
-
"minimal",
|
|
14801
|
-
"low",
|
|
14802
|
-
"medium",
|
|
14803
|
-
"high"
|
|
14804
|
-
]
|
|
14805
|
-
}
|
|
14806
|
-
},
|
|
14807
|
-
"claude-opus-4-7-max": {
|
|
14808
|
-
"id": "claude-opus-4-7-max",
|
|
14809
|
-
"name": "Claude Opus 4.7 Max",
|
|
14810
|
-
"api": "devin-agent",
|
|
14811
|
-
"provider": "devin",
|
|
14812
|
-
"baseUrl": "https://server.codeium.com",
|
|
14813
|
-
"reasoning": true,
|
|
14814
|
-
"input": [
|
|
14815
|
-
"text",
|
|
14816
|
-
"image"
|
|
14817
|
-
],
|
|
14818
|
-
"supportsTools": true,
|
|
14819
|
-
"cost": {
|
|
14820
|
-
"input": 0,
|
|
14821
|
-
"output": 0,
|
|
14822
|
-
"cacheRead": 0,
|
|
14823
|
-
"cacheWrite": 0
|
|
14824
|
-
},
|
|
14825
|
-
"contextWindow": 1000000,
|
|
14826
|
-
"maxTokens": 64000,
|
|
14827
|
-
"thinking": {
|
|
14828
|
-
"mode": "effort",
|
|
14829
|
-
"efforts": [
|
|
14830
|
-
"minimal",
|
|
14831
|
-
"low",
|
|
14832
|
-
"medium",
|
|
14833
|
-
"high"
|
|
14834
|
-
]
|
|
14835
|
-
}
|
|
14836
|
-
},
|
|
14837
|
-
"claude-opus-4-7-max-fast": {
|
|
14838
|
-
"id": "claude-opus-4-7-max-fast",
|
|
14839
|
-
"name": "Claude Opus 4.7 Max Fast",
|
|
14840
|
-
"api": "devin-agent",
|
|
14841
|
-
"provider": "devin",
|
|
14842
|
-
"baseUrl": "https://server.codeium.com",
|
|
14843
|
-
"reasoning": true,
|
|
14844
|
-
"input": [
|
|
14845
|
-
"text",
|
|
14846
|
-
"image"
|
|
14847
|
-
],
|
|
14848
|
-
"supportsTools": true,
|
|
14849
|
-
"cost": {
|
|
14850
|
-
"input": 0,
|
|
14851
|
-
"output": 0,
|
|
14852
|
-
"cacheRead": 0,
|
|
14853
|
-
"cacheWrite": 0
|
|
14854
|
-
},
|
|
14855
|
-
"contextWindow": 1000000,
|
|
14856
|
-
"maxTokens": 64000,
|
|
14857
|
-
"thinking": {
|
|
14858
|
-
"mode": "effort",
|
|
14859
|
-
"efforts": [
|
|
14860
|
-
"minimal",
|
|
14861
|
-
"low",
|
|
14862
|
-
"medium",
|
|
14863
|
-
"high"
|
|
14864
|
-
]
|
|
14865
|
-
}
|
|
14866
|
-
},
|
|
14867
|
-
"claude-opus-4-7-medium": {
|
|
14868
|
-
"id": "claude-opus-4-7-medium",
|
|
14869
|
-
"name": "Claude Opus 4.7 Medium",
|
|
14870
|
-
"api": "devin-agent",
|
|
14871
|
-
"provider": "devin",
|
|
14872
|
-
"baseUrl": "https://server.codeium.com",
|
|
14873
|
-
"reasoning": true,
|
|
14874
|
-
"input": [
|
|
14875
|
-
"text",
|
|
14876
|
-
"image"
|
|
14877
|
-
],
|
|
14878
|
-
"supportsTools": true,
|
|
14879
|
-
"cost": {
|
|
14880
|
-
"input": 0,
|
|
14881
|
-
"output": 0,
|
|
14882
|
-
"cacheRead": 0,
|
|
14883
|
-
"cacheWrite": 0
|
|
14884
|
-
},
|
|
14885
|
-
"contextWindow": 1000000,
|
|
14886
|
-
"maxTokens": 64000,
|
|
14887
|
-
"thinking": {
|
|
14888
|
-
"mode": "effort",
|
|
14889
|
-
"efforts": [
|
|
14890
|
-
"minimal",
|
|
14891
|
-
"low",
|
|
14892
|
-
"medium",
|
|
14893
|
-
"high"
|
|
14894
|
-
]
|
|
14895
|
-
}
|
|
14896
|
-
},
|
|
14897
|
-
"claude-opus-4-7-medium-fast": {
|
|
14898
|
-
"id": "claude-opus-4-7-medium-fast",
|
|
14899
|
-
"name": "Claude Opus 4.7 Medium Fast",
|
|
14900
|
-
"api": "devin-agent",
|
|
14901
|
-
"provider": "devin",
|
|
14902
|
-
"baseUrl": "https://server.codeium.com",
|
|
14903
|
-
"reasoning": true,
|
|
14904
|
-
"input": [
|
|
14905
|
-
"text",
|
|
14906
|
-
"image"
|
|
14907
|
-
],
|
|
14908
|
-
"supportsTools": true,
|
|
14909
|
-
"cost": {
|
|
14910
|
-
"input": 0,
|
|
14911
|
-
"output": 0,
|
|
14912
|
-
"cacheRead": 0,
|
|
14913
|
-
"cacheWrite": 0
|
|
14914
|
-
},
|
|
14915
|
-
"contextWindow": 1000000,
|
|
14916
|
-
"maxTokens": 64000,
|
|
14917
|
-
"thinking": {
|
|
14918
|
-
"mode": "effort",
|
|
14919
|
-
"efforts": [
|
|
14920
|
-
"minimal",
|
|
14921
|
-
"low",
|
|
14922
|
-
"medium",
|
|
14923
|
-
"high"
|
|
14924
|
-
]
|
|
14925
|
-
}
|
|
14926
|
-
},
|
|
14927
|
-
"claude-opus-4-7-xhigh": {
|
|
14928
|
-
"id": "claude-opus-4-7-xhigh",
|
|
14929
|
-
"name": "Claude Opus 4.7 XHigh",
|
|
14930
|
-
"api": "devin-agent",
|
|
14931
|
-
"provider": "devin",
|
|
14932
|
-
"baseUrl": "https://server.codeium.com",
|
|
14933
|
-
"reasoning": true,
|
|
14934
|
-
"input": [
|
|
14935
|
-
"text",
|
|
14936
|
-
"image"
|
|
14937
|
-
],
|
|
14938
|
-
"supportsTools": true,
|
|
14939
|
-
"cost": {
|
|
14940
|
-
"input": 0,
|
|
14941
|
-
"output": 0,
|
|
14942
|
-
"cacheRead": 0,
|
|
14943
|
-
"cacheWrite": 0
|
|
14944
|
-
},
|
|
14945
|
-
"contextWindow": 1000000,
|
|
14946
|
-
"maxTokens": 64000,
|
|
14947
|
-
"thinking": {
|
|
14948
|
-
"mode": "effort",
|
|
14949
|
-
"efforts": [
|
|
14950
|
-
"minimal",
|
|
14951
|
-
"low",
|
|
14952
|
-
"medium",
|
|
14953
|
-
"high"
|
|
14954
|
-
]
|
|
14955
|
-
}
|
|
14956
|
-
},
|
|
14957
|
-
"claude-opus-4-7-xhigh-fast": {
|
|
14958
|
-
"id": "claude-opus-4-7-xhigh-fast",
|
|
14959
|
-
"name": "Claude Opus 4.7 XHigh Fast",
|
|
14960
|
-
"api": "devin-agent",
|
|
14961
|
-
"provider": "devin",
|
|
14962
|
-
"baseUrl": "https://server.codeium.com",
|
|
14963
|
-
"reasoning": true,
|
|
14964
|
-
"input": [
|
|
14965
|
-
"text",
|
|
14966
|
-
"image"
|
|
14967
|
-
],
|
|
14968
|
-
"supportsTools": true,
|
|
14969
|
-
"cost": {
|
|
14970
|
-
"input": 0,
|
|
14971
|
-
"output": 0,
|
|
14972
|
-
"cacheRead": 0,
|
|
14973
|
-
"cacheWrite": 0
|
|
14974
|
-
},
|
|
14975
|
-
"contextWindow": 1000000,
|
|
14976
|
-
"maxTokens": 64000,
|
|
14977
|
-
"thinking": {
|
|
14978
|
-
"mode": "effort",
|
|
14979
|
-
"efforts": [
|
|
14980
|
-
"minimal",
|
|
14981
|
-
"low",
|
|
14982
|
-
"medium",
|
|
14983
|
-
"high"
|
|
14984
|
-
]
|
|
14985
|
-
}
|
|
14986
|
-
},
|
|
14987
|
-
"claude-opus-4-8-high": {
|
|
14988
|
-
"id": "claude-opus-4-8-high",
|
|
14989
|
-
"name": "Claude Opus 4.8 High",
|
|
14990
|
-
"api": "devin-agent",
|
|
14991
|
-
"provider": "devin",
|
|
14992
|
-
"baseUrl": "https://server.codeium.com",
|
|
14993
|
-
"reasoning": true,
|
|
14994
|
-
"input": [
|
|
14995
|
-
"text",
|
|
14996
|
-
"image"
|
|
14997
|
-
],
|
|
14998
|
-
"supportsTools": true,
|
|
14999
|
-
"cost": {
|
|
15000
|
-
"input": 0,
|
|
15001
|
-
"output": 0,
|
|
15002
|
-
"cacheRead": 0,
|
|
15003
|
-
"cacheWrite": 0
|
|
15004
|
-
},
|
|
15005
|
-
"contextWindow": 1000000,
|
|
15006
|
-
"maxTokens": 64000,
|
|
15007
|
-
"thinking": {
|
|
15008
|
-
"mode": "effort",
|
|
15009
|
-
"efforts": [
|
|
15010
|
-
"minimal",
|
|
15011
|
-
"low",
|
|
15012
|
-
"medium",
|
|
15013
|
-
"high"
|
|
15014
|
-
]
|
|
15015
|
-
}
|
|
15016
|
-
},
|
|
15017
|
-
"claude-opus-4-8-high-fast": {
|
|
15018
|
-
"id": "claude-opus-4-8-high-fast",
|
|
15019
|
-
"name": "Claude Opus 4.8 High Fast",
|
|
15020
|
-
"api": "devin-agent",
|
|
15021
|
-
"provider": "devin",
|
|
15022
|
-
"baseUrl": "https://server.codeium.com",
|
|
15023
|
-
"reasoning": true,
|
|
15024
|
-
"input": [
|
|
15025
|
-
"text",
|
|
15026
|
-
"image"
|
|
15027
|
-
],
|
|
15028
|
-
"supportsTools": true,
|
|
15029
|
-
"cost": {
|
|
15030
|
-
"input": 0,
|
|
15031
|
-
"output": 0,
|
|
15032
|
-
"cacheRead": 0,
|
|
15033
|
-
"cacheWrite": 0
|
|
15034
14691
|
},
|
|
15035
|
-
"
|
|
15036
|
-
|
|
15037
|
-
"thinking": {
|
|
15038
|
-
"mode": "effort",
|
|
15039
|
-
"efforts": [
|
|
15040
|
-
"minimal",
|
|
15041
|
-
"low",
|
|
15042
|
-
"medium",
|
|
15043
|
-
"high"
|
|
15044
|
-
]
|
|
14692
|
+
"compat": {
|
|
14693
|
+
"trustExplicitThinkingOnly": true
|
|
15045
14694
|
}
|
|
15046
14695
|
},
|
|
15047
|
-
"claude-opus-4-
|
|
15048
|
-
"id": "claude-opus-4-
|
|
15049
|
-
"name": "Claude Opus 4.
|
|
14696
|
+
"claude-opus-4-7": {
|
|
14697
|
+
"id": "claude-opus-4-7",
|
|
14698
|
+
"name": "Claude Opus 4.7",
|
|
15050
14699
|
"api": "devin-agent",
|
|
15051
14700
|
"provider": "devin",
|
|
15052
14701
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15070,43 +14719,26 @@
|
|
|
15070
14719
|
"minimal",
|
|
15071
14720
|
"low",
|
|
15072
14721
|
"medium",
|
|
15073
|
-
"high"
|
|
15074
|
-
|
|
15075
|
-
|
|
15076
|
-
|
|
15077
|
-
|
|
15078
|
-
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15082
|
-
|
|
15083
|
-
|
|
15084
|
-
"input": [
|
|
15085
|
-
"text",
|
|
15086
|
-
"image"
|
|
15087
|
-
],
|
|
15088
|
-
"supportsTools": true,
|
|
15089
|
-
"cost": {
|
|
15090
|
-
"input": 0,
|
|
15091
|
-
"output": 0,
|
|
15092
|
-
"cacheRead": 0,
|
|
15093
|
-
"cacheWrite": 0
|
|
14722
|
+
"high",
|
|
14723
|
+
"xhigh"
|
|
14724
|
+
],
|
|
14725
|
+
"requiresEffort": true,
|
|
14726
|
+
"effortRouting": {
|
|
14727
|
+
"minimal": "claude-opus-4-7-low",
|
|
14728
|
+
"low": "claude-opus-4-7-medium",
|
|
14729
|
+
"medium": "claude-opus-4-7-high",
|
|
14730
|
+
"high": "claude-opus-4-7-xhigh",
|
|
14731
|
+
"xhigh": "claude-opus-4-7-max"
|
|
14732
|
+
}
|
|
15094
14733
|
},
|
|
15095
|
-
"
|
|
15096
|
-
"
|
|
15097
|
-
|
|
15098
|
-
"mode": "effort",
|
|
15099
|
-
"efforts": [
|
|
15100
|
-
"minimal",
|
|
15101
|
-
"low",
|
|
15102
|
-
"medium",
|
|
15103
|
-
"high"
|
|
15104
|
-
]
|
|
14734
|
+
"requestModelId": "claude-opus-4-7-low",
|
|
14735
|
+
"compat": {
|
|
14736
|
+
"trustExplicitThinkingOnly": true
|
|
15105
14737
|
}
|
|
15106
14738
|
},
|
|
15107
|
-
"claude-opus-4-
|
|
15108
|
-
"id": "claude-opus-4-
|
|
15109
|
-
"name": "Claude Opus 4.
|
|
14739
|
+
"claude-opus-4-7-fast": {
|
|
14740
|
+
"id": "claude-opus-4-7-fast",
|
|
14741
|
+
"name": "Claude Opus 4.7 Fast",
|
|
15110
14742
|
"api": "devin-agent",
|
|
15111
14743
|
"provider": "devin",
|
|
15112
14744
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15130,43 +14762,26 @@
|
|
|
15130
14762
|
"minimal",
|
|
15131
14763
|
"low",
|
|
15132
14764
|
"medium",
|
|
15133
|
-
"high"
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
|
|
15142
|
-
|
|
15143
|
-
|
|
15144
|
-
"input": [
|
|
15145
|
-
"text",
|
|
15146
|
-
"image"
|
|
15147
|
-
],
|
|
15148
|
-
"supportsTools": true,
|
|
15149
|
-
"cost": {
|
|
15150
|
-
"input": 0,
|
|
15151
|
-
"output": 0,
|
|
15152
|
-
"cacheRead": 0,
|
|
15153
|
-
"cacheWrite": 0
|
|
14765
|
+
"high",
|
|
14766
|
+
"xhigh"
|
|
14767
|
+
],
|
|
14768
|
+
"requiresEffort": true,
|
|
14769
|
+
"effortRouting": {
|
|
14770
|
+
"minimal": "claude-opus-4-7-low-fast",
|
|
14771
|
+
"low": "claude-opus-4-7-medium-fast",
|
|
14772
|
+
"medium": "claude-opus-4-7-high-fast",
|
|
14773
|
+
"high": "claude-opus-4-7-xhigh-fast",
|
|
14774
|
+
"xhigh": "claude-opus-4-7-max-fast"
|
|
14775
|
+
}
|
|
15154
14776
|
},
|
|
15155
|
-
"
|
|
15156
|
-
"
|
|
15157
|
-
|
|
15158
|
-
"mode": "effort",
|
|
15159
|
-
"efforts": [
|
|
15160
|
-
"minimal",
|
|
15161
|
-
"low",
|
|
15162
|
-
"medium",
|
|
15163
|
-
"high"
|
|
15164
|
-
]
|
|
14777
|
+
"requestModelId": "claude-opus-4-7-low-fast",
|
|
14778
|
+
"compat": {
|
|
14779
|
+
"trustExplicitThinkingOnly": true
|
|
15165
14780
|
}
|
|
15166
14781
|
},
|
|
15167
|
-
"claude-opus-4-8
|
|
15168
|
-
"id": "claude-opus-4-8
|
|
15169
|
-
"name": "Claude Opus 4.8
|
|
14782
|
+
"claude-opus-4-8": {
|
|
14783
|
+
"id": "claude-opus-4-8",
|
|
14784
|
+
"name": "Claude Opus 4.8",
|
|
15170
14785
|
"api": "devin-agent",
|
|
15171
14786
|
"provider": "devin",
|
|
15172
14787
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15190,43 +14805,26 @@
|
|
|
15190
14805
|
"minimal",
|
|
15191
14806
|
"low",
|
|
15192
14807
|
"medium",
|
|
15193
|
-
"high"
|
|
15194
|
-
|
|
15195
|
-
|
|
15196
|
-
|
|
15197
|
-
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15204
|
-
"input": [
|
|
15205
|
-
"text",
|
|
15206
|
-
"image"
|
|
15207
|
-
],
|
|
15208
|
-
"supportsTools": true,
|
|
15209
|
-
"cost": {
|
|
15210
|
-
"input": 0,
|
|
15211
|
-
"output": 0,
|
|
15212
|
-
"cacheRead": 0,
|
|
15213
|
-
"cacheWrite": 0
|
|
14808
|
+
"high",
|
|
14809
|
+
"xhigh"
|
|
14810
|
+
],
|
|
14811
|
+
"requiresEffort": true,
|
|
14812
|
+
"effortRouting": {
|
|
14813
|
+
"minimal": "claude-opus-4-8-low",
|
|
14814
|
+
"low": "claude-opus-4-8-medium",
|
|
14815
|
+
"medium": "claude-opus-4-8-high",
|
|
14816
|
+
"high": "claude-opus-4-8-xhigh",
|
|
14817
|
+
"xhigh": "claude-opus-4-8-max"
|
|
14818
|
+
}
|
|
15214
14819
|
},
|
|
15215
|
-
"
|
|
15216
|
-
"
|
|
15217
|
-
|
|
15218
|
-
"mode": "effort",
|
|
15219
|
-
"efforts": [
|
|
15220
|
-
"minimal",
|
|
15221
|
-
"low",
|
|
15222
|
-
"medium",
|
|
15223
|
-
"high"
|
|
15224
|
-
]
|
|
14820
|
+
"requestModelId": "claude-opus-4-8-low",
|
|
14821
|
+
"compat": {
|
|
14822
|
+
"trustExplicitThinkingOnly": true
|
|
15225
14823
|
}
|
|
15226
14824
|
},
|
|
15227
|
-
"claude-opus-4-8-
|
|
15228
|
-
"id": "claude-opus-4-8-
|
|
15229
|
-
"name": "Claude Opus 4.8
|
|
14825
|
+
"claude-opus-4-8-fast": {
|
|
14826
|
+
"id": "claude-opus-4-8-fast",
|
|
14827
|
+
"name": "Claude Opus 4.8 Fast",
|
|
15230
14828
|
"api": "devin-agent",
|
|
15231
14829
|
"provider": "devin",
|
|
15232
14830
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15250,38 +14848,21 @@
|
|
|
15250
14848
|
"minimal",
|
|
15251
14849
|
"low",
|
|
15252
14850
|
"medium",
|
|
15253
|
-
"high"
|
|
15254
|
-
|
|
15255
|
-
|
|
15256
|
-
|
|
15257
|
-
|
|
15258
|
-
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
|
|
15262
|
-
|
|
15263
|
-
|
|
15264
|
-
"input": [
|
|
15265
|
-
"text",
|
|
15266
|
-
"image"
|
|
15267
|
-
],
|
|
15268
|
-
"supportsTools": true,
|
|
15269
|
-
"cost": {
|
|
15270
|
-
"input": 0,
|
|
15271
|
-
"output": 0,
|
|
15272
|
-
"cacheRead": 0,
|
|
15273
|
-
"cacheWrite": 0
|
|
14851
|
+
"high",
|
|
14852
|
+
"xhigh"
|
|
14853
|
+
],
|
|
14854
|
+
"requiresEffort": true,
|
|
14855
|
+
"effortRouting": {
|
|
14856
|
+
"minimal": "claude-opus-4-8-low-fast",
|
|
14857
|
+
"low": "claude-opus-4-8-medium-fast",
|
|
14858
|
+
"medium": "claude-opus-4-8-high-fast",
|
|
14859
|
+
"high": "claude-opus-4-8-xhigh-fast",
|
|
14860
|
+
"xhigh": "claude-opus-4-8-max-fast"
|
|
14861
|
+
}
|
|
15274
14862
|
},
|
|
15275
|
-
"
|
|
15276
|
-
"
|
|
15277
|
-
|
|
15278
|
-
"mode": "effort",
|
|
15279
|
-
"efforts": [
|
|
15280
|
-
"minimal",
|
|
15281
|
-
"low",
|
|
15282
|
-
"medium",
|
|
15283
|
-
"high"
|
|
15284
|
-
]
|
|
14863
|
+
"requestModelId": "claude-opus-4-8-low-fast",
|
|
14864
|
+
"compat": {
|
|
14865
|
+
"trustExplicitThinkingOnly": true
|
|
15285
14866
|
}
|
|
15286
14867
|
},
|
|
15287
14868
|
"claude-sonnet-4-6": {
|
|
@@ -15305,7 +14886,7 @@
|
|
|
15305
14886
|
"contextWindow": 200000,
|
|
15306
14887
|
"maxTokens": 64000,
|
|
15307
14888
|
"thinking": {
|
|
15308
|
-
"mode": "
|
|
14889
|
+
"mode": "budget",
|
|
15309
14890
|
"efforts": [
|
|
15310
14891
|
"minimal",
|
|
15311
14892
|
"low",
|
|
@@ -15319,6 +14900,9 @@
|
|
|
15319
14900
|
"medium": "claude-sonnet-4-6-thinking",
|
|
15320
14901
|
"high": "claude-sonnet-4-6-thinking"
|
|
15321
14902
|
}
|
|
14903
|
+
},
|
|
14904
|
+
"compat": {
|
|
14905
|
+
"trustExplicitThinkingOnly": true
|
|
15322
14906
|
}
|
|
15323
14907
|
},
|
|
15324
14908
|
"claude-sonnet-4-6-1m": {
|
|
@@ -15342,7 +14926,7 @@
|
|
|
15342
14926
|
"contextWindow": 1000000,
|
|
15343
14927
|
"maxTokens": 64000,
|
|
15344
14928
|
"thinking": {
|
|
15345
|
-
"mode": "
|
|
14929
|
+
"mode": "budget",
|
|
15346
14930
|
"efforts": [
|
|
15347
14931
|
"minimal",
|
|
15348
14932
|
"low",
|
|
@@ -15356,6 +14940,9 @@
|
|
|
15356
14940
|
"medium": "claude-sonnet-4-6-thinking-1m",
|
|
15357
14941
|
"high": "claude-sonnet-4-6-thinking-1m"
|
|
15358
14942
|
}
|
|
14943
|
+
},
|
|
14944
|
+
"compat": {
|
|
14945
|
+
"trustExplicitThinkingOnly": true
|
|
15359
14946
|
}
|
|
15360
14947
|
},
|
|
15361
14948
|
"deepseek-v4": {
|
|
@@ -15376,20 +14963,11 @@
|
|
|
15376
14963
|
"cacheWrite": 0
|
|
15377
14964
|
},
|
|
15378
14965
|
"contextWindow": 1048576,
|
|
15379
|
-
"maxTokens": 64000
|
|
15380
|
-
"thinking": {
|
|
15381
|
-
"mode": "effort",
|
|
15382
|
-
"efforts": [
|
|
15383
|
-
"minimal",
|
|
15384
|
-
"low",
|
|
15385
|
-
"medium",
|
|
15386
|
-
"high"
|
|
15387
|
-
]
|
|
15388
|
-
}
|
|
14966
|
+
"maxTokens": 64000
|
|
15389
14967
|
},
|
|
15390
|
-
"gemini-3-1-pro
|
|
15391
|
-
"id": "gemini-3-1-pro
|
|
15392
|
-
"name": "Gemini 3.1 Pro
|
|
14968
|
+
"gemini-3-1-pro": {
|
|
14969
|
+
"id": "gemini-3-1-pro",
|
|
14970
|
+
"name": "Gemini 3.1 Pro",
|
|
15393
14971
|
"api": "devin-agent",
|
|
15394
14972
|
"provider": "devin",
|
|
15395
14973
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15410,16 +14988,23 @@
|
|
|
15410
14988
|
"thinking": {
|
|
15411
14989
|
"mode": "effort",
|
|
15412
14990
|
"efforts": [
|
|
15413
|
-
"minimal",
|
|
15414
14991
|
"low",
|
|
15415
|
-
"medium",
|
|
15416
14992
|
"high"
|
|
15417
|
-
]
|
|
14993
|
+
],
|
|
14994
|
+
"requiresEffort": true,
|
|
14995
|
+
"effortRouting": {
|
|
14996
|
+
"low": "gemini-3-1-pro-low",
|
|
14997
|
+
"high": "gemini-3-1-pro-high"
|
|
14998
|
+
}
|
|
14999
|
+
},
|
|
15000
|
+
"requestModelId": "gemini-3-1-pro-low",
|
|
15001
|
+
"compat": {
|
|
15002
|
+
"trustExplicitThinkingOnly": true
|
|
15418
15003
|
}
|
|
15419
15004
|
},
|
|
15420
|
-
"gemini-3-
|
|
15421
|
-
"id": "gemini-3-
|
|
15422
|
-
"name": "Gemini 3.
|
|
15005
|
+
"gemini-3-5-flash": {
|
|
15006
|
+
"id": "gemini-3-5-flash",
|
|
15007
|
+
"name": "Gemini 3.5 Flash",
|
|
15423
15008
|
"api": "devin-agent",
|
|
15424
15009
|
"provider": "devin",
|
|
15425
15010
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -15444,1225 +15029,23 @@
|
|
|
15444
15029
|
"low",
|
|
15445
15030
|
"medium",
|
|
15446
15031
|
"high"
|
|
15447
|
-
]
|
|
15448
|
-
|
|
15449
|
-
|
|
15450
|
-
|
|
15451
|
-
|
|
15452
|
-
|
|
15453
|
-
|
|
15454
|
-
|
|
15455
|
-
"baseUrl": "https://server.codeium.com",
|
|
15456
|
-
"reasoning": true,
|
|
15457
|
-
"input": [
|
|
15458
|
-
"text",
|
|
15459
|
-
"image"
|
|
15460
|
-
],
|
|
15461
|
-
"supportsTools": true,
|
|
15462
|
-
"cost": {
|
|
15463
|
-
"input": 0,
|
|
15464
|
-
"output": 0,
|
|
15465
|
-
"cacheRead": 0,
|
|
15466
|
-
"cacheWrite": 0
|
|
15467
|
-
},
|
|
15468
|
-
"contextWindow": 1048576,
|
|
15469
|
-
"maxTokens": 64000,
|
|
15470
|
-
"thinking": {
|
|
15471
|
-
"mode": "effort",
|
|
15472
|
-
"efforts": [
|
|
15473
|
-
"minimal",
|
|
15474
|
-
"low",
|
|
15475
|
-
"medium",
|
|
15476
|
-
"high"
|
|
15477
|
-
]
|
|
15478
|
-
}
|
|
15479
|
-
},
|
|
15480
|
-
"gemini-3-5-flash-low": {
|
|
15481
|
-
"id": "gemini-3-5-flash-low",
|
|
15482
|
-
"name": "Gemini 3.5 Flash Low",
|
|
15483
|
-
"api": "devin-agent",
|
|
15484
|
-
"provider": "devin",
|
|
15485
|
-
"baseUrl": "https://server.codeium.com",
|
|
15486
|
-
"reasoning": true,
|
|
15487
|
-
"input": [
|
|
15488
|
-
"text",
|
|
15489
|
-
"image"
|
|
15490
|
-
],
|
|
15491
|
-
"supportsTools": true,
|
|
15492
|
-
"cost": {
|
|
15493
|
-
"input": 0,
|
|
15494
|
-
"output": 0,
|
|
15495
|
-
"cacheRead": 0,
|
|
15496
|
-
"cacheWrite": 0
|
|
15497
|
-
},
|
|
15498
|
-
"contextWindow": 1048576,
|
|
15499
|
-
"maxTokens": 64000,
|
|
15500
|
-
"thinking": {
|
|
15501
|
-
"mode": "effort",
|
|
15502
|
-
"efforts": [
|
|
15503
|
-
"minimal",
|
|
15504
|
-
"low",
|
|
15505
|
-
"medium",
|
|
15506
|
-
"high"
|
|
15507
|
-
]
|
|
15508
|
-
}
|
|
15509
|
-
},
|
|
15510
|
-
"gemini-3-5-flash-medium": {
|
|
15511
|
-
"id": "gemini-3-5-flash-medium",
|
|
15512
|
-
"name": "Gemini 3.5 Flash Medium",
|
|
15513
|
-
"api": "devin-agent",
|
|
15514
|
-
"provider": "devin",
|
|
15515
|
-
"baseUrl": "https://server.codeium.com",
|
|
15516
|
-
"reasoning": true,
|
|
15517
|
-
"input": [
|
|
15518
|
-
"text",
|
|
15519
|
-
"image"
|
|
15520
|
-
],
|
|
15521
|
-
"supportsTools": true,
|
|
15522
|
-
"cost": {
|
|
15523
|
-
"input": 0,
|
|
15524
|
-
"output": 0,
|
|
15525
|
-
"cacheRead": 0,
|
|
15526
|
-
"cacheWrite": 0
|
|
15527
|
-
},
|
|
15528
|
-
"contextWindow": 1048576,
|
|
15529
|
-
"maxTokens": 64000,
|
|
15530
|
-
"thinking": {
|
|
15531
|
-
"mode": "effort",
|
|
15532
|
-
"efforts": [
|
|
15533
|
-
"minimal",
|
|
15534
|
-
"low",
|
|
15535
|
-
"medium",
|
|
15536
|
-
"high"
|
|
15537
|
-
]
|
|
15538
|
-
}
|
|
15539
|
-
},
|
|
15540
|
-
"gemini-3-5-flash-minimal": {
|
|
15541
|
-
"id": "gemini-3-5-flash-minimal",
|
|
15542
|
-
"name": "Gemini 3.5 Flash Minimal",
|
|
15543
|
-
"api": "devin-agent",
|
|
15544
|
-
"provider": "devin",
|
|
15545
|
-
"baseUrl": "https://server.codeium.com",
|
|
15546
|
-
"reasoning": true,
|
|
15547
|
-
"input": [
|
|
15548
|
-
"text",
|
|
15549
|
-
"image"
|
|
15550
|
-
],
|
|
15551
|
-
"supportsTools": true,
|
|
15552
|
-
"cost": {
|
|
15553
|
-
"input": 0,
|
|
15554
|
-
"output": 0,
|
|
15555
|
-
"cacheRead": 0,
|
|
15556
|
-
"cacheWrite": 0
|
|
15557
|
-
},
|
|
15558
|
-
"contextWindow": 1048576,
|
|
15559
|
-
"maxTokens": 64000,
|
|
15560
|
-
"thinking": {
|
|
15561
|
-
"mode": "effort",
|
|
15562
|
-
"efforts": [
|
|
15563
|
-
"minimal",
|
|
15564
|
-
"low",
|
|
15565
|
-
"medium",
|
|
15566
|
-
"high"
|
|
15567
|
-
]
|
|
15568
|
-
}
|
|
15569
|
-
},
|
|
15570
|
-
"glm-5-1": {
|
|
15571
|
-
"id": "glm-5-1",
|
|
15572
|
-
"name": "GLM-5.1",
|
|
15573
|
-
"api": "devin-agent",
|
|
15574
|
-
"provider": "devin",
|
|
15575
|
-
"baseUrl": "https://server.codeium.com",
|
|
15576
|
-
"reasoning": true,
|
|
15577
|
-
"input": [
|
|
15578
|
-
"text"
|
|
15579
|
-
],
|
|
15580
|
-
"supportsTools": true,
|
|
15581
|
-
"cost": {
|
|
15582
|
-
"input": 0,
|
|
15583
|
-
"output": 0,
|
|
15584
|
-
"cacheRead": 0,
|
|
15585
|
-
"cacheWrite": 0
|
|
15586
|
-
},
|
|
15587
|
-
"contextWindow": 200000,
|
|
15588
|
-
"maxTokens": 64000,
|
|
15589
|
-
"thinking": {
|
|
15590
|
-
"mode": "effort",
|
|
15591
|
-
"efforts": [
|
|
15592
|
-
"minimal",
|
|
15593
|
-
"low",
|
|
15594
|
-
"medium",
|
|
15595
|
-
"high"
|
|
15596
|
-
]
|
|
15597
|
-
}
|
|
15598
|
-
},
|
|
15599
|
-
"glm-5-2": {
|
|
15600
|
-
"id": "glm-5-2",
|
|
15601
|
-
"name": "GLM-5.2",
|
|
15602
|
-
"api": "devin-agent",
|
|
15603
|
-
"provider": "devin",
|
|
15604
|
-
"baseUrl": "https://server.codeium.com",
|
|
15605
|
-
"reasoning": true,
|
|
15606
|
-
"input": [
|
|
15607
|
-
"text"
|
|
15608
|
-
],
|
|
15609
|
-
"supportsTools": true,
|
|
15610
|
-
"cost": {
|
|
15611
|
-
"input": 0,
|
|
15612
|
-
"output": 0,
|
|
15613
|
-
"cacheRead": 0,
|
|
15614
|
-
"cacheWrite": 0
|
|
15615
|
-
},
|
|
15616
|
-
"contextWindow": 200000,
|
|
15617
|
-
"maxTokens": 64000,
|
|
15618
|
-
"thinking": {
|
|
15619
|
-
"mode": "effort",
|
|
15620
|
-
"efforts": [
|
|
15621
|
-
"minimal",
|
|
15622
|
-
"low",
|
|
15623
|
-
"medium",
|
|
15624
|
-
"high"
|
|
15625
|
-
]
|
|
15626
|
-
}
|
|
15627
|
-
},
|
|
15628
|
-
"gpt-5-3-codex-high": {
|
|
15629
|
-
"id": "gpt-5-3-codex-high",
|
|
15630
|
-
"name": "GPT-5.3-Codex High",
|
|
15631
|
-
"api": "devin-agent",
|
|
15632
|
-
"provider": "devin",
|
|
15633
|
-
"baseUrl": "https://server.codeium.com",
|
|
15634
|
-
"reasoning": true,
|
|
15635
|
-
"input": [
|
|
15636
|
-
"text",
|
|
15637
|
-
"image"
|
|
15638
|
-
],
|
|
15639
|
-
"supportsTools": true,
|
|
15640
|
-
"cost": {
|
|
15641
|
-
"input": 0,
|
|
15642
|
-
"output": 0,
|
|
15643
|
-
"cacheRead": 0,
|
|
15644
|
-
"cacheWrite": 0
|
|
15645
|
-
},
|
|
15646
|
-
"contextWindow": 400000,
|
|
15647
|
-
"maxTokens": 64000,
|
|
15648
|
-
"thinking": {
|
|
15649
|
-
"mode": "effort",
|
|
15650
|
-
"efforts": [
|
|
15651
|
-
"minimal",
|
|
15652
|
-
"low",
|
|
15653
|
-
"medium",
|
|
15654
|
-
"high"
|
|
15655
|
-
]
|
|
15656
|
-
}
|
|
15657
|
-
},
|
|
15658
|
-
"gpt-5-3-codex-high-priority": {
|
|
15659
|
-
"id": "gpt-5-3-codex-high-priority",
|
|
15660
|
-
"name": "GPT-5.3-Codex High Fast",
|
|
15661
|
-
"api": "devin-agent",
|
|
15662
|
-
"provider": "devin",
|
|
15663
|
-
"baseUrl": "https://server.codeium.com",
|
|
15664
|
-
"reasoning": true,
|
|
15665
|
-
"input": [
|
|
15666
|
-
"text",
|
|
15667
|
-
"image"
|
|
15668
|
-
],
|
|
15669
|
-
"supportsTools": true,
|
|
15670
|
-
"cost": {
|
|
15671
|
-
"input": 0,
|
|
15672
|
-
"output": 0,
|
|
15673
|
-
"cacheRead": 0,
|
|
15674
|
-
"cacheWrite": 0
|
|
15675
|
-
},
|
|
15676
|
-
"contextWindow": 400000,
|
|
15677
|
-
"maxTokens": 64000,
|
|
15678
|
-
"thinking": {
|
|
15679
|
-
"mode": "effort",
|
|
15680
|
-
"efforts": [
|
|
15681
|
-
"minimal",
|
|
15682
|
-
"low",
|
|
15683
|
-
"medium",
|
|
15684
|
-
"high"
|
|
15685
|
-
]
|
|
15686
|
-
}
|
|
15687
|
-
},
|
|
15688
|
-
"gpt-5-3-codex-low": {
|
|
15689
|
-
"id": "gpt-5-3-codex-low",
|
|
15690
|
-
"name": "GPT-5.3-Codex Low",
|
|
15691
|
-
"api": "devin-agent",
|
|
15692
|
-
"provider": "devin",
|
|
15693
|
-
"baseUrl": "https://server.codeium.com",
|
|
15694
|
-
"reasoning": true,
|
|
15695
|
-
"input": [
|
|
15696
|
-
"text",
|
|
15697
|
-
"image"
|
|
15698
|
-
],
|
|
15699
|
-
"supportsTools": true,
|
|
15700
|
-
"cost": {
|
|
15701
|
-
"input": 0,
|
|
15702
|
-
"output": 0,
|
|
15703
|
-
"cacheRead": 0,
|
|
15704
|
-
"cacheWrite": 0
|
|
15705
|
-
},
|
|
15706
|
-
"contextWindow": 400000,
|
|
15707
|
-
"maxTokens": 64000,
|
|
15708
|
-
"thinking": {
|
|
15709
|
-
"mode": "effort",
|
|
15710
|
-
"efforts": [
|
|
15711
|
-
"minimal",
|
|
15712
|
-
"low",
|
|
15713
|
-
"medium",
|
|
15714
|
-
"high"
|
|
15715
|
-
]
|
|
15716
|
-
}
|
|
15717
|
-
},
|
|
15718
|
-
"gpt-5-3-codex-low-priority": {
|
|
15719
|
-
"id": "gpt-5-3-codex-low-priority",
|
|
15720
|
-
"name": "GPT-5.3-Codex Low Fast",
|
|
15721
|
-
"api": "devin-agent",
|
|
15722
|
-
"provider": "devin",
|
|
15723
|
-
"baseUrl": "https://server.codeium.com",
|
|
15724
|
-
"reasoning": true,
|
|
15725
|
-
"input": [
|
|
15726
|
-
"text",
|
|
15727
|
-
"image"
|
|
15728
|
-
],
|
|
15729
|
-
"supportsTools": true,
|
|
15730
|
-
"cost": {
|
|
15731
|
-
"input": 0,
|
|
15732
|
-
"output": 0,
|
|
15733
|
-
"cacheRead": 0,
|
|
15734
|
-
"cacheWrite": 0
|
|
15735
|
-
},
|
|
15736
|
-
"contextWindow": 400000,
|
|
15737
|
-
"maxTokens": 64000,
|
|
15738
|
-
"thinking": {
|
|
15739
|
-
"mode": "effort",
|
|
15740
|
-
"efforts": [
|
|
15741
|
-
"minimal",
|
|
15742
|
-
"low",
|
|
15743
|
-
"medium",
|
|
15744
|
-
"high"
|
|
15745
|
-
]
|
|
15746
|
-
}
|
|
15747
|
-
},
|
|
15748
|
-
"gpt-5-3-codex-medium": {
|
|
15749
|
-
"id": "gpt-5-3-codex-medium",
|
|
15750
|
-
"name": "GPT-5.3-Codex Medium",
|
|
15751
|
-
"api": "devin-agent",
|
|
15752
|
-
"provider": "devin",
|
|
15753
|
-
"baseUrl": "https://server.codeium.com",
|
|
15754
|
-
"reasoning": true,
|
|
15755
|
-
"input": [
|
|
15756
|
-
"text",
|
|
15757
|
-
"image"
|
|
15758
|
-
],
|
|
15759
|
-
"supportsTools": true,
|
|
15760
|
-
"cost": {
|
|
15761
|
-
"input": 0,
|
|
15762
|
-
"output": 0,
|
|
15763
|
-
"cacheRead": 0,
|
|
15764
|
-
"cacheWrite": 0
|
|
15765
|
-
},
|
|
15766
|
-
"contextWindow": 400000,
|
|
15767
|
-
"maxTokens": 64000,
|
|
15768
|
-
"thinking": {
|
|
15769
|
-
"mode": "effort",
|
|
15770
|
-
"efforts": [
|
|
15771
|
-
"minimal",
|
|
15772
|
-
"low",
|
|
15773
|
-
"medium",
|
|
15774
|
-
"high"
|
|
15775
|
-
]
|
|
15776
|
-
}
|
|
15777
|
-
},
|
|
15778
|
-
"gpt-5-3-codex-medium-priority": {
|
|
15779
|
-
"id": "gpt-5-3-codex-medium-priority",
|
|
15780
|
-
"name": "GPT-5.3-Codex Medium Fast",
|
|
15781
|
-
"api": "devin-agent",
|
|
15782
|
-
"provider": "devin",
|
|
15783
|
-
"baseUrl": "https://server.codeium.com",
|
|
15784
|
-
"reasoning": true,
|
|
15785
|
-
"input": [
|
|
15786
|
-
"text",
|
|
15787
|
-
"image"
|
|
15788
|
-
],
|
|
15789
|
-
"supportsTools": true,
|
|
15790
|
-
"cost": {
|
|
15791
|
-
"input": 0,
|
|
15792
|
-
"output": 0,
|
|
15793
|
-
"cacheRead": 0,
|
|
15794
|
-
"cacheWrite": 0
|
|
15795
|
-
},
|
|
15796
|
-
"contextWindow": 400000,
|
|
15797
|
-
"maxTokens": 64000,
|
|
15798
|
-
"thinking": {
|
|
15799
|
-
"mode": "effort",
|
|
15800
|
-
"efforts": [
|
|
15801
|
-
"minimal",
|
|
15802
|
-
"low",
|
|
15803
|
-
"medium",
|
|
15804
|
-
"high"
|
|
15805
|
-
]
|
|
15806
|
-
}
|
|
15807
|
-
},
|
|
15808
|
-
"gpt-5-3-codex-xhigh": {
|
|
15809
|
-
"id": "gpt-5-3-codex-xhigh",
|
|
15810
|
-
"name": "GPT-5.3-Codex X-High",
|
|
15811
|
-
"api": "devin-agent",
|
|
15812
|
-
"provider": "devin",
|
|
15813
|
-
"baseUrl": "https://server.codeium.com",
|
|
15814
|
-
"reasoning": true,
|
|
15815
|
-
"input": [
|
|
15816
|
-
"text",
|
|
15817
|
-
"image"
|
|
15818
|
-
],
|
|
15819
|
-
"supportsTools": true,
|
|
15820
|
-
"cost": {
|
|
15821
|
-
"input": 0,
|
|
15822
|
-
"output": 0,
|
|
15823
|
-
"cacheRead": 0,
|
|
15824
|
-
"cacheWrite": 0
|
|
15825
|
-
},
|
|
15826
|
-
"contextWindow": 400000,
|
|
15827
|
-
"maxTokens": 64000,
|
|
15828
|
-
"thinking": {
|
|
15829
|
-
"mode": "effort",
|
|
15830
|
-
"efforts": [
|
|
15831
|
-
"minimal",
|
|
15832
|
-
"low",
|
|
15833
|
-
"medium",
|
|
15834
|
-
"high"
|
|
15835
|
-
]
|
|
15836
|
-
}
|
|
15837
|
-
},
|
|
15838
|
-
"gpt-5-3-codex-xhigh-priority": {
|
|
15839
|
-
"id": "gpt-5-3-codex-xhigh-priority",
|
|
15840
|
-
"name": "GPT-5.3-Codex XHigh Fast",
|
|
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": 400000,
|
|
15857
|
-
"maxTokens": 64000,
|
|
15858
|
-
"thinking": {
|
|
15859
|
-
"mode": "effort",
|
|
15860
|
-
"efforts": [
|
|
15861
|
-
"minimal",
|
|
15862
|
-
"low",
|
|
15863
|
-
"medium",
|
|
15864
|
-
"high"
|
|
15865
|
-
]
|
|
15866
|
-
}
|
|
15867
|
-
},
|
|
15868
|
-
"gpt-5-4-high": {
|
|
15869
|
-
"id": "gpt-5-4-high",
|
|
15870
|
-
"name": "GPT-5.4 High Thinking",
|
|
15871
|
-
"api": "devin-agent",
|
|
15872
|
-
"provider": "devin",
|
|
15873
|
-
"baseUrl": "https://server.codeium.com",
|
|
15874
|
-
"reasoning": true,
|
|
15875
|
-
"input": [
|
|
15876
|
-
"text",
|
|
15877
|
-
"image"
|
|
15878
|
-
],
|
|
15879
|
-
"supportsTools": true,
|
|
15880
|
-
"cost": {
|
|
15881
|
-
"input": 0,
|
|
15882
|
-
"output": 0,
|
|
15883
|
-
"cacheRead": 0,
|
|
15884
|
-
"cacheWrite": 0
|
|
15885
|
-
},
|
|
15886
|
-
"contextWindow": 272000,
|
|
15887
|
-
"maxTokens": 64000,
|
|
15888
|
-
"thinking": {
|
|
15889
|
-
"mode": "effort",
|
|
15890
|
-
"efforts": [
|
|
15891
|
-
"minimal",
|
|
15892
|
-
"low",
|
|
15893
|
-
"medium",
|
|
15894
|
-
"high"
|
|
15895
|
-
]
|
|
15896
|
-
}
|
|
15897
|
-
},
|
|
15898
|
-
"gpt-5-4-high-priority": {
|
|
15899
|
-
"id": "gpt-5-4-high-priority",
|
|
15900
|
-
"name": "GPT-5.4 High Thinking Fast",
|
|
15901
|
-
"api": "devin-agent",
|
|
15902
|
-
"provider": "devin",
|
|
15903
|
-
"baseUrl": "https://server.codeium.com",
|
|
15904
|
-
"reasoning": true,
|
|
15905
|
-
"input": [
|
|
15906
|
-
"text",
|
|
15907
|
-
"image"
|
|
15908
|
-
],
|
|
15909
|
-
"supportsTools": true,
|
|
15910
|
-
"cost": {
|
|
15911
|
-
"input": 0,
|
|
15912
|
-
"output": 0,
|
|
15913
|
-
"cacheRead": 0,
|
|
15914
|
-
"cacheWrite": 0
|
|
15915
|
-
},
|
|
15916
|
-
"contextWindow": 272000,
|
|
15917
|
-
"maxTokens": 64000,
|
|
15918
|
-
"thinking": {
|
|
15919
|
-
"mode": "effort",
|
|
15920
|
-
"efforts": [
|
|
15921
|
-
"minimal",
|
|
15922
|
-
"low",
|
|
15923
|
-
"medium",
|
|
15924
|
-
"high"
|
|
15925
|
-
]
|
|
15926
|
-
}
|
|
15927
|
-
},
|
|
15928
|
-
"gpt-5-4-low": {
|
|
15929
|
-
"id": "gpt-5-4-low",
|
|
15930
|
-
"name": "GPT-5.4 Low Thinking",
|
|
15931
|
-
"api": "devin-agent",
|
|
15932
|
-
"provider": "devin",
|
|
15933
|
-
"baseUrl": "https://server.codeium.com",
|
|
15934
|
-
"reasoning": true,
|
|
15935
|
-
"input": [
|
|
15936
|
-
"text",
|
|
15937
|
-
"image"
|
|
15938
|
-
],
|
|
15939
|
-
"supportsTools": true,
|
|
15940
|
-
"cost": {
|
|
15941
|
-
"input": 0,
|
|
15942
|
-
"output": 0,
|
|
15943
|
-
"cacheRead": 0,
|
|
15944
|
-
"cacheWrite": 0
|
|
15945
|
-
},
|
|
15946
|
-
"contextWindow": 272000,
|
|
15947
|
-
"maxTokens": 64000,
|
|
15948
|
-
"thinking": {
|
|
15949
|
-
"mode": "effort",
|
|
15950
|
-
"efforts": [
|
|
15951
|
-
"minimal",
|
|
15952
|
-
"low",
|
|
15953
|
-
"medium",
|
|
15954
|
-
"high"
|
|
15955
|
-
]
|
|
15956
|
-
}
|
|
15957
|
-
},
|
|
15958
|
-
"gpt-5-4-low-priority": {
|
|
15959
|
-
"id": "gpt-5-4-low-priority",
|
|
15960
|
-
"name": "GPT-5.4 Low Thinking Fast",
|
|
15961
|
-
"api": "devin-agent",
|
|
15962
|
-
"provider": "devin",
|
|
15963
|
-
"baseUrl": "https://server.codeium.com",
|
|
15964
|
-
"reasoning": true,
|
|
15965
|
-
"input": [
|
|
15966
|
-
"text",
|
|
15967
|
-
"image"
|
|
15968
|
-
],
|
|
15969
|
-
"supportsTools": true,
|
|
15970
|
-
"cost": {
|
|
15971
|
-
"input": 0,
|
|
15972
|
-
"output": 0,
|
|
15973
|
-
"cacheRead": 0,
|
|
15974
|
-
"cacheWrite": 0
|
|
15975
|
-
},
|
|
15976
|
-
"contextWindow": 272000,
|
|
15977
|
-
"maxTokens": 64000,
|
|
15978
|
-
"thinking": {
|
|
15979
|
-
"mode": "effort",
|
|
15980
|
-
"efforts": [
|
|
15981
|
-
"minimal",
|
|
15982
|
-
"low",
|
|
15983
|
-
"medium",
|
|
15984
|
-
"high"
|
|
15985
|
-
]
|
|
15986
|
-
}
|
|
15987
|
-
},
|
|
15988
|
-
"gpt-5-4-medium": {
|
|
15989
|
-
"id": "gpt-5-4-medium",
|
|
15990
|
-
"name": "GPT-5.4 Medium Thinking",
|
|
15991
|
-
"api": "devin-agent",
|
|
15992
|
-
"provider": "devin",
|
|
15993
|
-
"baseUrl": "https://server.codeium.com",
|
|
15994
|
-
"reasoning": true,
|
|
15995
|
-
"input": [
|
|
15996
|
-
"text",
|
|
15997
|
-
"image"
|
|
15998
|
-
],
|
|
15999
|
-
"supportsTools": true,
|
|
16000
|
-
"cost": {
|
|
16001
|
-
"input": 0,
|
|
16002
|
-
"output": 0,
|
|
16003
|
-
"cacheRead": 0,
|
|
16004
|
-
"cacheWrite": 0
|
|
16005
|
-
},
|
|
16006
|
-
"contextWindow": 272000,
|
|
16007
|
-
"maxTokens": 64000,
|
|
16008
|
-
"thinking": {
|
|
16009
|
-
"mode": "effort",
|
|
16010
|
-
"efforts": [
|
|
16011
|
-
"minimal",
|
|
16012
|
-
"low",
|
|
16013
|
-
"medium",
|
|
16014
|
-
"high"
|
|
16015
|
-
]
|
|
16016
|
-
}
|
|
16017
|
-
},
|
|
16018
|
-
"gpt-5-4-medium-priority": {
|
|
16019
|
-
"id": "gpt-5-4-medium-priority",
|
|
16020
|
-
"name": "GPT-5.4 Medium Thinking Fast",
|
|
16021
|
-
"api": "devin-agent",
|
|
16022
|
-
"provider": "devin",
|
|
16023
|
-
"baseUrl": "https://server.codeium.com",
|
|
16024
|
-
"reasoning": true,
|
|
16025
|
-
"input": [
|
|
16026
|
-
"text",
|
|
16027
|
-
"image"
|
|
16028
|
-
],
|
|
16029
|
-
"supportsTools": true,
|
|
16030
|
-
"cost": {
|
|
16031
|
-
"input": 0,
|
|
16032
|
-
"output": 0,
|
|
16033
|
-
"cacheRead": 0,
|
|
16034
|
-
"cacheWrite": 0
|
|
16035
|
-
},
|
|
16036
|
-
"contextWindow": 272000,
|
|
16037
|
-
"maxTokens": 64000,
|
|
16038
|
-
"thinking": {
|
|
16039
|
-
"mode": "effort",
|
|
16040
|
-
"efforts": [
|
|
16041
|
-
"minimal",
|
|
16042
|
-
"low",
|
|
16043
|
-
"medium",
|
|
16044
|
-
"high"
|
|
16045
|
-
]
|
|
16046
|
-
}
|
|
16047
|
-
},
|
|
16048
|
-
"gpt-5-4-mini-high": {
|
|
16049
|
-
"id": "gpt-5-4-mini-high",
|
|
16050
|
-
"name": "GPT-5.4 Mini High Thinking",
|
|
16051
|
-
"api": "devin-agent",
|
|
16052
|
-
"provider": "devin",
|
|
16053
|
-
"baseUrl": "https://server.codeium.com",
|
|
16054
|
-
"reasoning": true,
|
|
16055
|
-
"input": [
|
|
16056
|
-
"text",
|
|
16057
|
-
"image"
|
|
16058
|
-
],
|
|
16059
|
-
"supportsTools": true,
|
|
16060
|
-
"cost": {
|
|
16061
|
-
"input": 0,
|
|
16062
|
-
"output": 0,
|
|
16063
|
-
"cacheRead": 0,
|
|
16064
|
-
"cacheWrite": 0
|
|
16065
|
-
},
|
|
16066
|
-
"contextWindow": 400000,
|
|
16067
|
-
"maxTokens": 64000,
|
|
16068
|
-
"thinking": {
|
|
16069
|
-
"mode": "effort",
|
|
16070
|
-
"efforts": [
|
|
16071
|
-
"minimal",
|
|
16072
|
-
"low",
|
|
16073
|
-
"medium",
|
|
16074
|
-
"high"
|
|
16075
|
-
]
|
|
16076
|
-
}
|
|
16077
|
-
},
|
|
16078
|
-
"gpt-5-4-mini-low": {
|
|
16079
|
-
"id": "gpt-5-4-mini-low",
|
|
16080
|
-
"name": "GPT-5.4 Mini Low Thinking",
|
|
16081
|
-
"api": "devin-agent",
|
|
16082
|
-
"provider": "devin",
|
|
16083
|
-
"baseUrl": "https://server.codeium.com",
|
|
16084
|
-
"reasoning": true,
|
|
16085
|
-
"input": [
|
|
16086
|
-
"text",
|
|
16087
|
-
"image"
|
|
16088
|
-
],
|
|
16089
|
-
"supportsTools": true,
|
|
16090
|
-
"cost": {
|
|
16091
|
-
"input": 0,
|
|
16092
|
-
"output": 0,
|
|
16093
|
-
"cacheRead": 0,
|
|
16094
|
-
"cacheWrite": 0
|
|
16095
|
-
},
|
|
16096
|
-
"contextWindow": 400000,
|
|
16097
|
-
"maxTokens": 64000,
|
|
16098
|
-
"thinking": {
|
|
16099
|
-
"mode": "effort",
|
|
16100
|
-
"efforts": [
|
|
16101
|
-
"minimal",
|
|
16102
|
-
"low",
|
|
16103
|
-
"medium",
|
|
16104
|
-
"high"
|
|
16105
|
-
]
|
|
16106
|
-
}
|
|
16107
|
-
},
|
|
16108
|
-
"gpt-5-4-mini-medium": {
|
|
16109
|
-
"id": "gpt-5-4-mini-medium",
|
|
16110
|
-
"name": "GPT-5.4 Mini Medium Thinking",
|
|
16111
|
-
"api": "devin-agent",
|
|
16112
|
-
"provider": "devin",
|
|
16113
|
-
"baseUrl": "https://server.codeium.com",
|
|
16114
|
-
"reasoning": true,
|
|
16115
|
-
"input": [
|
|
16116
|
-
"text",
|
|
16117
|
-
"image"
|
|
16118
|
-
],
|
|
16119
|
-
"supportsTools": true,
|
|
16120
|
-
"cost": {
|
|
16121
|
-
"input": 0,
|
|
16122
|
-
"output": 0,
|
|
16123
|
-
"cacheRead": 0,
|
|
16124
|
-
"cacheWrite": 0
|
|
16125
|
-
},
|
|
16126
|
-
"contextWindow": 400000,
|
|
16127
|
-
"maxTokens": 64000,
|
|
16128
|
-
"thinking": {
|
|
16129
|
-
"mode": "effort",
|
|
16130
|
-
"efforts": [
|
|
16131
|
-
"minimal",
|
|
16132
|
-
"low",
|
|
16133
|
-
"medium",
|
|
16134
|
-
"high"
|
|
16135
|
-
]
|
|
16136
|
-
}
|
|
16137
|
-
},
|
|
16138
|
-
"gpt-5-4-mini-xhigh": {
|
|
16139
|
-
"id": "gpt-5-4-mini-xhigh",
|
|
16140
|
-
"name": "GPT-5.4 Mini XHigh Thinking",
|
|
16141
|
-
"api": "devin-agent",
|
|
16142
|
-
"provider": "devin",
|
|
16143
|
-
"baseUrl": "https://server.codeium.com",
|
|
16144
|
-
"reasoning": true,
|
|
16145
|
-
"input": [
|
|
16146
|
-
"text",
|
|
16147
|
-
"image"
|
|
16148
|
-
],
|
|
16149
|
-
"supportsTools": true,
|
|
16150
|
-
"cost": {
|
|
16151
|
-
"input": 0,
|
|
16152
|
-
"output": 0,
|
|
16153
|
-
"cacheRead": 0,
|
|
16154
|
-
"cacheWrite": 0
|
|
16155
|
-
},
|
|
16156
|
-
"contextWindow": 400000,
|
|
16157
|
-
"maxTokens": 64000,
|
|
16158
|
-
"thinking": {
|
|
16159
|
-
"mode": "effort",
|
|
16160
|
-
"efforts": [
|
|
16161
|
-
"minimal",
|
|
16162
|
-
"low",
|
|
16163
|
-
"medium",
|
|
16164
|
-
"high"
|
|
16165
|
-
]
|
|
16166
|
-
}
|
|
16167
|
-
},
|
|
16168
|
-
"gpt-5-4-none": {
|
|
16169
|
-
"id": "gpt-5-4-none",
|
|
16170
|
-
"name": "GPT-5.4 No Thinking",
|
|
16171
|
-
"api": "devin-agent",
|
|
16172
|
-
"provider": "devin",
|
|
16173
|
-
"baseUrl": "https://server.codeium.com",
|
|
16174
|
-
"reasoning": false,
|
|
16175
|
-
"input": [
|
|
16176
|
-
"text",
|
|
16177
|
-
"image"
|
|
16178
|
-
],
|
|
16179
|
-
"supportsTools": true,
|
|
16180
|
-
"cost": {
|
|
16181
|
-
"input": 0,
|
|
16182
|
-
"output": 0,
|
|
16183
|
-
"cacheRead": 0,
|
|
16184
|
-
"cacheWrite": 0
|
|
16185
|
-
},
|
|
16186
|
-
"contextWindow": 272000,
|
|
16187
|
-
"maxTokens": 64000
|
|
16188
|
-
},
|
|
16189
|
-
"gpt-5-4-none-priority": {
|
|
16190
|
-
"id": "gpt-5-4-none-priority",
|
|
16191
|
-
"name": "GPT-5.4 No Thinking Fast",
|
|
16192
|
-
"api": "devin-agent",
|
|
16193
|
-
"provider": "devin",
|
|
16194
|
-
"baseUrl": "https://server.codeium.com",
|
|
16195
|
-
"reasoning": false,
|
|
16196
|
-
"input": [
|
|
16197
|
-
"text",
|
|
16198
|
-
"image"
|
|
16199
|
-
],
|
|
16200
|
-
"supportsTools": true,
|
|
16201
|
-
"cost": {
|
|
16202
|
-
"input": 0,
|
|
16203
|
-
"output": 0,
|
|
16204
|
-
"cacheRead": 0,
|
|
16205
|
-
"cacheWrite": 0
|
|
16206
|
-
},
|
|
16207
|
-
"contextWindow": 272000,
|
|
16208
|
-
"maxTokens": 64000
|
|
16209
|
-
},
|
|
16210
|
-
"gpt-5-4-xhigh": {
|
|
16211
|
-
"id": "gpt-5-4-xhigh",
|
|
16212
|
-
"name": "GPT-5.4 XHigh Thinking",
|
|
16213
|
-
"api": "devin-agent",
|
|
16214
|
-
"provider": "devin",
|
|
16215
|
-
"baseUrl": "https://server.codeium.com",
|
|
16216
|
-
"reasoning": true,
|
|
16217
|
-
"input": [
|
|
16218
|
-
"text",
|
|
16219
|
-
"image"
|
|
16220
|
-
],
|
|
16221
|
-
"supportsTools": true,
|
|
16222
|
-
"cost": {
|
|
16223
|
-
"input": 0,
|
|
16224
|
-
"output": 0,
|
|
16225
|
-
"cacheRead": 0,
|
|
16226
|
-
"cacheWrite": 0
|
|
16227
|
-
},
|
|
16228
|
-
"contextWindow": 272000,
|
|
16229
|
-
"maxTokens": 64000,
|
|
16230
|
-
"thinking": {
|
|
16231
|
-
"mode": "effort",
|
|
16232
|
-
"efforts": [
|
|
16233
|
-
"minimal",
|
|
16234
|
-
"low",
|
|
16235
|
-
"medium",
|
|
16236
|
-
"high"
|
|
16237
|
-
]
|
|
16238
|
-
}
|
|
16239
|
-
},
|
|
16240
|
-
"gpt-5-4-xhigh-priority": {
|
|
16241
|
-
"id": "gpt-5-4-xhigh-priority",
|
|
16242
|
-
"name": "GPT-5.4 XHigh Thinking Fast",
|
|
16243
|
-
"api": "devin-agent",
|
|
16244
|
-
"provider": "devin",
|
|
16245
|
-
"baseUrl": "https://server.codeium.com",
|
|
16246
|
-
"reasoning": true,
|
|
16247
|
-
"input": [
|
|
16248
|
-
"text",
|
|
16249
|
-
"image"
|
|
16250
|
-
],
|
|
16251
|
-
"supportsTools": true,
|
|
16252
|
-
"cost": {
|
|
16253
|
-
"input": 0,
|
|
16254
|
-
"output": 0,
|
|
16255
|
-
"cacheRead": 0,
|
|
16256
|
-
"cacheWrite": 0
|
|
16257
|
-
},
|
|
16258
|
-
"contextWindow": 272000,
|
|
16259
|
-
"maxTokens": 64000,
|
|
16260
|
-
"thinking": {
|
|
16261
|
-
"mode": "effort",
|
|
16262
|
-
"efforts": [
|
|
16263
|
-
"minimal",
|
|
16264
|
-
"low",
|
|
16265
|
-
"medium",
|
|
16266
|
-
"high"
|
|
16267
|
-
]
|
|
16268
|
-
}
|
|
16269
|
-
},
|
|
16270
|
-
"gpt-5-5-high": {
|
|
16271
|
-
"id": "gpt-5-5-high",
|
|
16272
|
-
"name": "GPT-5.5 High Thinking",
|
|
16273
|
-
"api": "devin-agent",
|
|
16274
|
-
"provider": "devin",
|
|
16275
|
-
"baseUrl": "https://server.codeium.com",
|
|
16276
|
-
"reasoning": true,
|
|
16277
|
-
"input": [
|
|
16278
|
-
"text",
|
|
16279
|
-
"image"
|
|
16280
|
-
],
|
|
16281
|
-
"supportsTools": true,
|
|
16282
|
-
"cost": {
|
|
16283
|
-
"input": 0,
|
|
16284
|
-
"output": 0,
|
|
16285
|
-
"cacheRead": 0,
|
|
16286
|
-
"cacheWrite": 0
|
|
16287
|
-
},
|
|
16288
|
-
"contextWindow": 272000,
|
|
16289
|
-
"maxTokens": 64000,
|
|
16290
|
-
"thinking": {
|
|
16291
|
-
"mode": "effort",
|
|
16292
|
-
"efforts": [
|
|
16293
|
-
"minimal",
|
|
16294
|
-
"low",
|
|
16295
|
-
"medium",
|
|
16296
|
-
"high"
|
|
16297
|
-
]
|
|
16298
|
-
}
|
|
16299
|
-
},
|
|
16300
|
-
"gpt-5-5-high-priority": {
|
|
16301
|
-
"id": "gpt-5-5-high-priority",
|
|
16302
|
-
"name": "GPT-5.5 High Thinking Fast",
|
|
16303
|
-
"api": "devin-agent",
|
|
16304
|
-
"provider": "devin",
|
|
16305
|
-
"baseUrl": "https://server.codeium.com",
|
|
16306
|
-
"reasoning": true,
|
|
16307
|
-
"input": [
|
|
16308
|
-
"text",
|
|
16309
|
-
"image"
|
|
16310
|
-
],
|
|
16311
|
-
"supportsTools": true,
|
|
16312
|
-
"cost": {
|
|
16313
|
-
"input": 0,
|
|
16314
|
-
"output": 0,
|
|
16315
|
-
"cacheRead": 0,
|
|
16316
|
-
"cacheWrite": 0
|
|
16317
|
-
},
|
|
16318
|
-
"contextWindow": 272000,
|
|
16319
|
-
"maxTokens": 64000,
|
|
16320
|
-
"thinking": {
|
|
16321
|
-
"mode": "effort",
|
|
16322
|
-
"efforts": [
|
|
16323
|
-
"minimal",
|
|
16324
|
-
"low",
|
|
16325
|
-
"medium",
|
|
16326
|
-
"high"
|
|
16327
|
-
]
|
|
16328
|
-
}
|
|
16329
|
-
},
|
|
16330
|
-
"gpt-5-5-low": {
|
|
16331
|
-
"id": "gpt-5-5-low",
|
|
16332
|
-
"name": "GPT-5.5 Low Thinking",
|
|
16333
|
-
"api": "devin-agent",
|
|
16334
|
-
"provider": "devin",
|
|
16335
|
-
"baseUrl": "https://server.codeium.com",
|
|
16336
|
-
"reasoning": true,
|
|
16337
|
-
"input": [
|
|
16338
|
-
"text",
|
|
16339
|
-
"image"
|
|
16340
|
-
],
|
|
16341
|
-
"supportsTools": true,
|
|
16342
|
-
"cost": {
|
|
16343
|
-
"input": 0,
|
|
16344
|
-
"output": 0,
|
|
16345
|
-
"cacheRead": 0,
|
|
16346
|
-
"cacheWrite": 0
|
|
16347
|
-
},
|
|
16348
|
-
"contextWindow": 272000,
|
|
16349
|
-
"maxTokens": 64000,
|
|
16350
|
-
"thinking": {
|
|
16351
|
-
"mode": "effort",
|
|
16352
|
-
"efforts": [
|
|
16353
|
-
"minimal",
|
|
16354
|
-
"low",
|
|
16355
|
-
"medium",
|
|
16356
|
-
"high"
|
|
16357
|
-
]
|
|
16358
|
-
}
|
|
16359
|
-
},
|
|
16360
|
-
"gpt-5-5-low-priority": {
|
|
16361
|
-
"id": "gpt-5-5-low-priority",
|
|
16362
|
-
"name": "GPT-5.5 Low Thinking Fast",
|
|
16363
|
-
"api": "devin-agent",
|
|
16364
|
-
"provider": "devin",
|
|
16365
|
-
"baseUrl": "https://server.codeium.com",
|
|
16366
|
-
"reasoning": true,
|
|
16367
|
-
"input": [
|
|
16368
|
-
"text",
|
|
16369
|
-
"image"
|
|
16370
|
-
],
|
|
16371
|
-
"supportsTools": true,
|
|
16372
|
-
"cost": {
|
|
16373
|
-
"input": 0,
|
|
16374
|
-
"output": 0,
|
|
16375
|
-
"cacheRead": 0,
|
|
16376
|
-
"cacheWrite": 0
|
|
16377
|
-
},
|
|
16378
|
-
"contextWindow": 272000,
|
|
16379
|
-
"maxTokens": 64000,
|
|
16380
|
-
"thinking": {
|
|
16381
|
-
"mode": "effort",
|
|
16382
|
-
"efforts": [
|
|
16383
|
-
"minimal",
|
|
16384
|
-
"low",
|
|
16385
|
-
"medium",
|
|
16386
|
-
"high"
|
|
16387
|
-
]
|
|
16388
|
-
}
|
|
16389
|
-
},
|
|
16390
|
-
"gpt-5-5-medium": {
|
|
16391
|
-
"id": "gpt-5-5-medium",
|
|
16392
|
-
"name": "GPT-5.5 Medium Thinking",
|
|
16393
|
-
"api": "devin-agent",
|
|
16394
|
-
"provider": "devin",
|
|
16395
|
-
"baseUrl": "https://server.codeium.com",
|
|
16396
|
-
"reasoning": true,
|
|
16397
|
-
"input": [
|
|
16398
|
-
"text",
|
|
16399
|
-
"image"
|
|
16400
|
-
],
|
|
16401
|
-
"supportsTools": true,
|
|
16402
|
-
"cost": {
|
|
16403
|
-
"input": 0,
|
|
16404
|
-
"output": 0,
|
|
16405
|
-
"cacheRead": 0,
|
|
16406
|
-
"cacheWrite": 0
|
|
16407
|
-
},
|
|
16408
|
-
"contextWindow": 272000,
|
|
16409
|
-
"maxTokens": 64000,
|
|
16410
|
-
"thinking": {
|
|
16411
|
-
"mode": "effort",
|
|
16412
|
-
"efforts": [
|
|
16413
|
-
"minimal",
|
|
16414
|
-
"low",
|
|
16415
|
-
"medium",
|
|
16416
|
-
"high"
|
|
16417
|
-
]
|
|
16418
|
-
}
|
|
16419
|
-
},
|
|
16420
|
-
"gpt-5-5-medium-priority": {
|
|
16421
|
-
"id": "gpt-5-5-medium-priority",
|
|
16422
|
-
"name": "GPT-5.5 Medium Thinking Fast",
|
|
16423
|
-
"api": "devin-agent",
|
|
16424
|
-
"provider": "devin",
|
|
16425
|
-
"baseUrl": "https://server.codeium.com",
|
|
16426
|
-
"reasoning": true,
|
|
16427
|
-
"input": [
|
|
16428
|
-
"text",
|
|
16429
|
-
"image"
|
|
16430
|
-
],
|
|
16431
|
-
"supportsTools": true,
|
|
16432
|
-
"cost": {
|
|
16433
|
-
"input": 0,
|
|
16434
|
-
"output": 0,
|
|
16435
|
-
"cacheRead": 0,
|
|
16436
|
-
"cacheWrite": 0
|
|
16437
|
-
},
|
|
16438
|
-
"contextWindow": 272000,
|
|
16439
|
-
"maxTokens": 64000,
|
|
16440
|
-
"thinking": {
|
|
16441
|
-
"mode": "effort",
|
|
16442
|
-
"efforts": [
|
|
16443
|
-
"minimal",
|
|
16444
|
-
"low",
|
|
16445
|
-
"medium",
|
|
16446
|
-
"high"
|
|
16447
|
-
]
|
|
16448
|
-
}
|
|
16449
|
-
},
|
|
16450
|
-
"gpt-5-5-none": {
|
|
16451
|
-
"id": "gpt-5-5-none",
|
|
16452
|
-
"name": "GPT-5.5 No Thinking",
|
|
16453
|
-
"api": "devin-agent",
|
|
16454
|
-
"provider": "devin",
|
|
16455
|
-
"baseUrl": "https://server.codeium.com",
|
|
16456
|
-
"reasoning": false,
|
|
16457
|
-
"input": [
|
|
16458
|
-
"text",
|
|
16459
|
-
"image"
|
|
16460
|
-
],
|
|
16461
|
-
"supportsTools": true,
|
|
16462
|
-
"cost": {
|
|
16463
|
-
"input": 0,
|
|
16464
|
-
"output": 0,
|
|
16465
|
-
"cacheRead": 0,
|
|
16466
|
-
"cacheWrite": 0
|
|
16467
|
-
},
|
|
16468
|
-
"contextWindow": 272000,
|
|
16469
|
-
"maxTokens": 64000
|
|
16470
|
-
},
|
|
16471
|
-
"gpt-5-5-none-priority": {
|
|
16472
|
-
"id": "gpt-5-5-none-priority",
|
|
16473
|
-
"name": "GPT-5.5 No Thinking Fast",
|
|
16474
|
-
"api": "devin-agent",
|
|
16475
|
-
"provider": "devin",
|
|
16476
|
-
"baseUrl": "https://server.codeium.com",
|
|
16477
|
-
"reasoning": false,
|
|
16478
|
-
"input": [
|
|
16479
|
-
"text",
|
|
16480
|
-
"image"
|
|
16481
|
-
],
|
|
16482
|
-
"supportsTools": true,
|
|
16483
|
-
"cost": {
|
|
16484
|
-
"input": 0,
|
|
16485
|
-
"output": 0,
|
|
16486
|
-
"cacheRead": 0,
|
|
16487
|
-
"cacheWrite": 0
|
|
16488
|
-
},
|
|
16489
|
-
"contextWindow": 272000,
|
|
16490
|
-
"maxTokens": 64000
|
|
16491
|
-
},
|
|
16492
|
-
"gpt-5-5-xhigh": {
|
|
16493
|
-
"id": "gpt-5-5-xhigh",
|
|
16494
|
-
"name": "GPT-5.5 XHigh Thinking",
|
|
16495
|
-
"api": "devin-agent",
|
|
16496
|
-
"provider": "devin",
|
|
16497
|
-
"baseUrl": "https://server.codeium.com",
|
|
16498
|
-
"reasoning": true,
|
|
16499
|
-
"input": [
|
|
16500
|
-
"text",
|
|
16501
|
-
"image"
|
|
16502
|
-
],
|
|
16503
|
-
"supportsTools": true,
|
|
16504
|
-
"cost": {
|
|
16505
|
-
"input": 0,
|
|
16506
|
-
"output": 0,
|
|
16507
|
-
"cacheRead": 0,
|
|
16508
|
-
"cacheWrite": 0
|
|
16509
|
-
},
|
|
16510
|
-
"contextWindow": 272000,
|
|
16511
|
-
"maxTokens": 64000,
|
|
16512
|
-
"thinking": {
|
|
16513
|
-
"mode": "effort",
|
|
16514
|
-
"efforts": [
|
|
16515
|
-
"minimal",
|
|
16516
|
-
"low",
|
|
16517
|
-
"medium",
|
|
16518
|
-
"high"
|
|
16519
|
-
]
|
|
16520
|
-
}
|
|
16521
|
-
},
|
|
16522
|
-
"gpt-5-5-xhigh-priority": {
|
|
16523
|
-
"id": "gpt-5-5-xhigh-priority",
|
|
16524
|
-
"name": "GPT-5.5 XHigh Thinking Fast",
|
|
16525
|
-
"api": "devin-agent",
|
|
16526
|
-
"provider": "devin",
|
|
16527
|
-
"baseUrl": "https://server.codeium.com",
|
|
16528
|
-
"reasoning": true,
|
|
16529
|
-
"input": [
|
|
16530
|
-
"text",
|
|
16531
|
-
"image"
|
|
16532
|
-
],
|
|
16533
|
-
"supportsTools": true,
|
|
16534
|
-
"cost": {
|
|
16535
|
-
"input": 0,
|
|
16536
|
-
"output": 0,
|
|
16537
|
-
"cacheRead": 0,
|
|
16538
|
-
"cacheWrite": 0
|
|
16539
|
-
},
|
|
16540
|
-
"contextWindow": 272000,
|
|
16541
|
-
"maxTokens": 64000,
|
|
16542
|
-
"thinking": {
|
|
16543
|
-
"mode": "effort",
|
|
16544
|
-
"efforts": [
|
|
16545
|
-
"minimal",
|
|
16546
|
-
"low",
|
|
16547
|
-
"medium",
|
|
16548
|
-
"high"
|
|
16549
|
-
]
|
|
16550
|
-
}
|
|
16551
|
-
},
|
|
16552
|
-
"kimi-k2-6": {
|
|
16553
|
-
"id": "kimi-k2-6",
|
|
16554
|
-
"name": "Kimi K2.6",
|
|
16555
|
-
"api": "devin-agent",
|
|
16556
|
-
"provider": "devin",
|
|
16557
|
-
"baseUrl": "https://server.codeium.com",
|
|
16558
|
-
"reasoning": true,
|
|
16559
|
-
"input": [
|
|
16560
|
-
"text",
|
|
16561
|
-
"image"
|
|
16562
|
-
],
|
|
16563
|
-
"supportsTools": true,
|
|
16564
|
-
"cost": {
|
|
16565
|
-
"input": 0,
|
|
16566
|
-
"output": 0,
|
|
16567
|
-
"cacheRead": 0,
|
|
16568
|
-
"cacheWrite": 0
|
|
16569
|
-
},
|
|
16570
|
-
"contextWindow": 262144,
|
|
16571
|
-
"maxTokens": 64000,
|
|
16572
|
-
"thinking": {
|
|
16573
|
-
"mode": "effort",
|
|
16574
|
-
"efforts": [
|
|
16575
|
-
"minimal",
|
|
16576
|
-
"low",
|
|
16577
|
-
"medium",
|
|
16578
|
-
"high"
|
|
16579
|
-
]
|
|
16580
|
-
}
|
|
16581
|
-
},
|
|
16582
|
-
"kimi-k2-7": {
|
|
16583
|
-
"id": "kimi-k2-7",
|
|
16584
|
-
"name": "Kimi K2.7",
|
|
16585
|
-
"api": "devin-agent",
|
|
16586
|
-
"provider": "devin",
|
|
16587
|
-
"baseUrl": "https://server.codeium.com",
|
|
16588
|
-
"reasoning": true,
|
|
16589
|
-
"input": [
|
|
16590
|
-
"text",
|
|
16591
|
-
"image"
|
|
16592
|
-
],
|
|
16593
|
-
"supportsTools": true,
|
|
16594
|
-
"cost": {
|
|
16595
|
-
"input": 0,
|
|
16596
|
-
"output": 0,
|
|
16597
|
-
"cacheRead": 0,
|
|
16598
|
-
"cacheWrite": 0
|
|
16599
|
-
},
|
|
16600
|
-
"contextWindow": 262144,
|
|
16601
|
-
"maxTokens": 64000,
|
|
16602
|
-
"thinking": {
|
|
16603
|
-
"mode": "effort",
|
|
16604
|
-
"efforts": [
|
|
16605
|
-
"minimal",
|
|
16606
|
-
"low",
|
|
16607
|
-
"medium",
|
|
16608
|
-
"high"
|
|
16609
|
-
]
|
|
16610
|
-
}
|
|
16611
|
-
},
|
|
16612
|
-
"MODEL_CLAUDE_4_5_OPUS": {
|
|
16613
|
-
"id": "MODEL_CLAUDE_4_5_OPUS",
|
|
16614
|
-
"name": "Claude Opus 4.5",
|
|
16615
|
-
"api": "devin-agent",
|
|
16616
|
-
"provider": "devin",
|
|
16617
|
-
"baseUrl": "https://server.codeium.com",
|
|
16618
|
-
"reasoning": false,
|
|
16619
|
-
"input": [
|
|
16620
|
-
"text",
|
|
16621
|
-
"image"
|
|
16622
|
-
],
|
|
16623
|
-
"supportsTools": true,
|
|
16624
|
-
"cost": {
|
|
16625
|
-
"input": 0,
|
|
16626
|
-
"output": 0,
|
|
16627
|
-
"cacheRead": 0,
|
|
16628
|
-
"cacheWrite": 0
|
|
16629
|
-
},
|
|
16630
|
-
"contextWindow": 200000,
|
|
16631
|
-
"maxTokens": 64000
|
|
16632
|
-
},
|
|
16633
|
-
"MODEL_CLAUDE_4_5_OPUS_THINKING": {
|
|
16634
|
-
"id": "MODEL_CLAUDE_4_5_OPUS_THINKING",
|
|
16635
|
-
"name": "Claude Opus 4.5 Thinking",
|
|
16636
|
-
"api": "devin-agent",
|
|
16637
|
-
"provider": "devin",
|
|
16638
|
-
"baseUrl": "https://server.codeium.com",
|
|
16639
|
-
"reasoning": true,
|
|
16640
|
-
"input": [
|
|
16641
|
-
"text",
|
|
16642
|
-
"image"
|
|
16643
|
-
],
|
|
16644
|
-
"supportsTools": true,
|
|
16645
|
-
"cost": {
|
|
16646
|
-
"input": 0,
|
|
16647
|
-
"output": 0,
|
|
16648
|
-
"cacheRead": 0,
|
|
16649
|
-
"cacheWrite": 0
|
|
15032
|
+
],
|
|
15033
|
+
"requiresEffort": true,
|
|
15034
|
+
"effortRouting": {
|
|
15035
|
+
"minimal": "gemini-3-5-flash-minimal",
|
|
15036
|
+
"low": "gemini-3-5-flash-low",
|
|
15037
|
+
"medium": "gemini-3-5-flash-medium",
|
|
15038
|
+
"high": "gemini-3-5-flash-high"
|
|
15039
|
+
}
|
|
16650
15040
|
},
|
|
16651
|
-
"
|
|
16652
|
-
"
|
|
16653
|
-
|
|
16654
|
-
"mode": "effort",
|
|
16655
|
-
"efforts": [
|
|
16656
|
-
"minimal",
|
|
16657
|
-
"low",
|
|
16658
|
-
"medium",
|
|
16659
|
-
"high"
|
|
16660
|
-
]
|
|
15041
|
+
"requestModelId": "gemini-3-5-flash-minimal",
|
|
15042
|
+
"compat": {
|
|
15043
|
+
"trustExplicitThinkingOnly": true
|
|
16661
15044
|
}
|
|
16662
15045
|
},
|
|
16663
|
-
"
|
|
16664
|
-
"id": "
|
|
16665
|
-
"name": "Gemini 3 Flash
|
|
15046
|
+
"gemini-3-flash": {
|
|
15047
|
+
"id": "gemini-3-flash",
|
|
15048
|
+
"name": "Gemini 3 Flash",
|
|
16666
15049
|
"api": "devin-agent",
|
|
16667
15050
|
"provider": "devin",
|
|
16668
15051
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16687,12 +15070,63 @@
|
|
|
16687
15070
|
"low",
|
|
16688
15071
|
"medium",
|
|
16689
15072
|
"high"
|
|
16690
|
-
]
|
|
15073
|
+
],
|
|
15074
|
+
"requiresEffort": true,
|
|
15075
|
+
"effortRouting": {
|
|
15076
|
+
"minimal": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL",
|
|
15077
|
+
"low": "MODEL_GOOGLE_GEMINI_3_0_FLASH_LOW",
|
|
15078
|
+
"medium": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MEDIUM",
|
|
15079
|
+
"high": "MODEL_GOOGLE_GEMINI_3_0_FLASH_HIGH"
|
|
15080
|
+
}
|
|
15081
|
+
},
|
|
15082
|
+
"requestModelId": "MODEL_GOOGLE_GEMINI_3_0_FLASH_MINIMAL",
|
|
15083
|
+
"compat": {
|
|
15084
|
+
"trustExplicitThinkingOnly": true
|
|
16691
15085
|
}
|
|
16692
15086
|
},
|
|
16693
|
-
"
|
|
16694
|
-
"id": "
|
|
16695
|
-
"name": "
|
|
15087
|
+
"glm-5-1": {
|
|
15088
|
+
"id": "glm-5-1",
|
|
15089
|
+
"name": "GLM-5.1",
|
|
15090
|
+
"api": "devin-agent",
|
|
15091
|
+
"provider": "devin",
|
|
15092
|
+
"baseUrl": "https://server.codeium.com",
|
|
15093
|
+
"reasoning": true,
|
|
15094
|
+
"input": [
|
|
15095
|
+
"text"
|
|
15096
|
+
],
|
|
15097
|
+
"supportsTools": true,
|
|
15098
|
+
"cost": {
|
|
15099
|
+
"input": 0,
|
|
15100
|
+
"output": 0,
|
|
15101
|
+
"cacheRead": 0,
|
|
15102
|
+
"cacheWrite": 0
|
|
15103
|
+
},
|
|
15104
|
+
"contextWindow": 200000,
|
|
15105
|
+
"maxTokens": 64000
|
|
15106
|
+
},
|
|
15107
|
+
"glm-5-2": {
|
|
15108
|
+
"id": "glm-5-2",
|
|
15109
|
+
"name": "GLM-5.2",
|
|
15110
|
+
"api": "devin-agent",
|
|
15111
|
+
"provider": "devin",
|
|
15112
|
+
"baseUrl": "https://server.codeium.com",
|
|
15113
|
+
"reasoning": true,
|
|
15114
|
+
"input": [
|
|
15115
|
+
"text"
|
|
15116
|
+
],
|
|
15117
|
+
"supportsTools": true,
|
|
15118
|
+
"cost": {
|
|
15119
|
+
"input": 0,
|
|
15120
|
+
"output": 0,
|
|
15121
|
+
"cacheRead": 0,
|
|
15122
|
+
"cacheWrite": 0
|
|
15123
|
+
},
|
|
15124
|
+
"contextWindow": 200000,
|
|
15125
|
+
"maxTokens": 64000
|
|
15126
|
+
},
|
|
15127
|
+
"gpt-5-2": {
|
|
15128
|
+
"id": "gpt-5-2",
|
|
15129
|
+
"name": "GPT-5.2",
|
|
16696
15130
|
"api": "devin-agent",
|
|
16697
15131
|
"provider": "devin",
|
|
16698
15132
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16708,7 +15142,7 @@
|
|
|
16708
15142
|
"cacheRead": 0,
|
|
16709
15143
|
"cacheWrite": 0
|
|
16710
15144
|
},
|
|
16711
|
-
"contextWindow":
|
|
15145
|
+
"contextWindow": 384000,
|
|
16712
15146
|
"maxTokens": 64000,
|
|
16713
15147
|
"thinking": {
|
|
16714
15148
|
"mode": "effort",
|
|
@@ -16716,13 +15150,26 @@
|
|
|
16716
15150
|
"minimal",
|
|
16717
15151
|
"low",
|
|
16718
15152
|
"medium",
|
|
16719
|
-
"high"
|
|
16720
|
-
|
|
15153
|
+
"high",
|
|
15154
|
+
"xhigh"
|
|
15155
|
+
],
|
|
15156
|
+
"effortRouting": {
|
|
15157
|
+
"off": "MODEL_GPT_5_2_NONE",
|
|
15158
|
+
"minimal": "MODEL_GPT_5_2_LOW",
|
|
15159
|
+
"low": "MODEL_GPT_5_2_LOW",
|
|
15160
|
+
"medium": "MODEL_GPT_5_2_MEDIUM",
|
|
15161
|
+
"high": "MODEL_GPT_5_2_HIGH",
|
|
15162
|
+
"xhigh": "MODEL_GPT_5_2_XHIGH"
|
|
15163
|
+
}
|
|
15164
|
+
},
|
|
15165
|
+
"requestModelId": "MODEL_GPT_5_2_NONE",
|
|
15166
|
+
"compat": {
|
|
15167
|
+
"trustExplicitThinkingOnly": true
|
|
16721
15168
|
}
|
|
16722
15169
|
},
|
|
16723
|
-
"
|
|
16724
|
-
"id": "
|
|
16725
|
-
"name": "
|
|
15170
|
+
"gpt-5-3-codex": {
|
|
15171
|
+
"id": "gpt-5-3-codex",
|
|
15172
|
+
"name": "GPT-5.3 Codex",
|
|
16726
15173
|
"api": "devin-agent",
|
|
16727
15174
|
"provider": "devin",
|
|
16728
15175
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16738,7 +15185,7 @@
|
|
|
16738
15185
|
"cacheRead": 0,
|
|
16739
15186
|
"cacheWrite": 0
|
|
16740
15187
|
},
|
|
16741
|
-
"contextWindow":
|
|
15188
|
+
"contextWindow": 400000,
|
|
16742
15189
|
"maxTokens": 64000,
|
|
16743
15190
|
"thinking": {
|
|
16744
15191
|
"mode": "effort",
|
|
@@ -16746,13 +15193,26 @@
|
|
|
16746
15193
|
"minimal",
|
|
16747
15194
|
"low",
|
|
16748
15195
|
"medium",
|
|
16749
|
-
"high"
|
|
16750
|
-
|
|
15196
|
+
"high",
|
|
15197
|
+
"xhigh"
|
|
15198
|
+
],
|
|
15199
|
+
"requiresEffort": true,
|
|
15200
|
+
"effortRouting": {
|
|
15201
|
+
"minimal": "gpt-5-3-codex-low",
|
|
15202
|
+
"low": "gpt-5-3-codex-low",
|
|
15203
|
+
"medium": "gpt-5-3-codex-medium",
|
|
15204
|
+
"high": "gpt-5-3-codex-high",
|
|
15205
|
+
"xhigh": "gpt-5-3-codex-xhigh"
|
|
15206
|
+
}
|
|
15207
|
+
},
|
|
15208
|
+
"requestModelId": "gpt-5-3-codex-low",
|
|
15209
|
+
"compat": {
|
|
15210
|
+
"trustExplicitThinkingOnly": true
|
|
16751
15211
|
}
|
|
16752
15212
|
},
|
|
16753
|
-
"
|
|
16754
|
-
"id": "
|
|
16755
|
-
"name": "
|
|
15213
|
+
"gpt-5-3-codex-fast": {
|
|
15214
|
+
"id": "gpt-5-3-codex-fast",
|
|
15215
|
+
"name": "GPT-5.3 Codex Fast",
|
|
16756
15216
|
"api": "devin-agent",
|
|
16757
15217
|
"provider": "devin",
|
|
16758
15218
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16768,7 +15228,7 @@
|
|
|
16768
15228
|
"cacheRead": 0,
|
|
16769
15229
|
"cacheWrite": 0
|
|
16770
15230
|
},
|
|
16771
|
-
"contextWindow":
|
|
15231
|
+
"contextWindow": 400000,
|
|
16772
15232
|
"maxTokens": 64000,
|
|
16773
15233
|
"thinking": {
|
|
16774
15234
|
"mode": "effort",
|
|
@@ -16776,13 +15236,26 @@
|
|
|
16776
15236
|
"minimal",
|
|
16777
15237
|
"low",
|
|
16778
15238
|
"medium",
|
|
16779
|
-
"high"
|
|
16780
|
-
|
|
15239
|
+
"high",
|
|
15240
|
+
"xhigh"
|
|
15241
|
+
],
|
|
15242
|
+
"requiresEffort": true,
|
|
15243
|
+
"effortRouting": {
|
|
15244
|
+
"minimal": "gpt-5-3-codex-low-priority",
|
|
15245
|
+
"low": "gpt-5-3-codex-low-priority",
|
|
15246
|
+
"medium": "gpt-5-3-codex-medium-priority",
|
|
15247
|
+
"high": "gpt-5-3-codex-high-priority",
|
|
15248
|
+
"xhigh": "gpt-5-3-codex-xhigh-priority"
|
|
15249
|
+
}
|
|
15250
|
+
},
|
|
15251
|
+
"requestModelId": "gpt-5-3-codex-low-priority",
|
|
15252
|
+
"compat": {
|
|
15253
|
+
"trustExplicitThinkingOnly": true
|
|
16781
15254
|
}
|
|
16782
15255
|
},
|
|
16783
|
-
"
|
|
16784
|
-
"id": "
|
|
16785
|
-
"name": "GPT-5.
|
|
15256
|
+
"gpt-5-4": {
|
|
15257
|
+
"id": "gpt-5-4",
|
|
15258
|
+
"name": "GPT-5.4",
|
|
16786
15259
|
"api": "devin-agent",
|
|
16787
15260
|
"provider": "devin",
|
|
16788
15261
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16798,7 +15271,7 @@
|
|
|
16798
15271
|
"cacheRead": 0,
|
|
16799
15272
|
"cacheWrite": 0
|
|
16800
15273
|
},
|
|
16801
|
-
"contextWindow":
|
|
15274
|
+
"contextWindow": 272000,
|
|
16802
15275
|
"maxTokens": 64000,
|
|
16803
15276
|
"thinking": {
|
|
16804
15277
|
"mode": "effort",
|
|
@@ -16806,13 +15279,26 @@
|
|
|
16806
15279
|
"minimal",
|
|
16807
15280
|
"low",
|
|
16808
15281
|
"medium",
|
|
16809
|
-
"high"
|
|
16810
|
-
|
|
15282
|
+
"high",
|
|
15283
|
+
"xhigh"
|
|
15284
|
+
],
|
|
15285
|
+
"effortRouting": {
|
|
15286
|
+
"off": "gpt-5-4-none",
|
|
15287
|
+
"minimal": "gpt-5-4-low",
|
|
15288
|
+
"low": "gpt-5-4-low",
|
|
15289
|
+
"medium": "gpt-5-4-medium",
|
|
15290
|
+
"high": "gpt-5-4-high",
|
|
15291
|
+
"xhigh": "gpt-5-4-xhigh"
|
|
15292
|
+
}
|
|
15293
|
+
},
|
|
15294
|
+
"requestModelId": "gpt-5-4-none",
|
|
15295
|
+
"compat": {
|
|
15296
|
+
"trustExplicitThinkingOnly": true
|
|
16811
15297
|
}
|
|
16812
15298
|
},
|
|
16813
|
-
"
|
|
16814
|
-
"id": "
|
|
16815
|
-
"name": "GPT-5.
|
|
15299
|
+
"gpt-5-4-fast": {
|
|
15300
|
+
"id": "gpt-5-4-fast",
|
|
15301
|
+
"name": "GPT-5.4 Fast",
|
|
16816
15302
|
"api": "devin-agent",
|
|
16817
15303
|
"provider": "devin",
|
|
16818
15304
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16828,7 +15314,7 @@
|
|
|
16828
15314
|
"cacheRead": 0,
|
|
16829
15315
|
"cacheWrite": 0
|
|
16830
15316
|
},
|
|
16831
|
-
"contextWindow":
|
|
15317
|
+
"contextWindow": 272000,
|
|
16832
15318
|
"maxTokens": 64000,
|
|
16833
15319
|
"thinking": {
|
|
16834
15320
|
"mode": "effort",
|
|
@@ -16836,13 +15322,26 @@
|
|
|
16836
15322
|
"minimal",
|
|
16837
15323
|
"low",
|
|
16838
15324
|
"medium",
|
|
16839
|
-
"high"
|
|
16840
|
-
|
|
15325
|
+
"high",
|
|
15326
|
+
"xhigh"
|
|
15327
|
+
],
|
|
15328
|
+
"effortRouting": {
|
|
15329
|
+
"off": "gpt-5-4-none-priority",
|
|
15330
|
+
"minimal": "gpt-5-4-low-priority",
|
|
15331
|
+
"low": "gpt-5-4-low-priority",
|
|
15332
|
+
"medium": "gpt-5-4-medium-priority",
|
|
15333
|
+
"high": "gpt-5-4-high-priority",
|
|
15334
|
+
"xhigh": "gpt-5-4-xhigh-priority"
|
|
15335
|
+
}
|
|
15336
|
+
},
|
|
15337
|
+
"requestModelId": "gpt-5-4-none-priority",
|
|
15338
|
+
"compat": {
|
|
15339
|
+
"trustExplicitThinkingOnly": true
|
|
16841
15340
|
}
|
|
16842
15341
|
},
|
|
16843
|
-
"
|
|
16844
|
-
"id": "
|
|
16845
|
-
"name": "GPT-5.
|
|
15342
|
+
"gpt-5-4-mini": {
|
|
15343
|
+
"id": "gpt-5-4-mini",
|
|
15344
|
+
"name": "GPT-5.4 Mini",
|
|
16846
15345
|
"api": "devin-agent",
|
|
16847
15346
|
"provider": "devin",
|
|
16848
15347
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16858,7 +15357,7 @@
|
|
|
16858
15357
|
"cacheRead": 0,
|
|
16859
15358
|
"cacheWrite": 0
|
|
16860
15359
|
},
|
|
16861
|
-
"contextWindow":
|
|
15360
|
+
"contextWindow": 400000,
|
|
16862
15361
|
"maxTokens": 64000,
|
|
16863
15362
|
"thinking": {
|
|
16864
15363
|
"mode": "effort",
|
|
@@ -16866,17 +15365,30 @@
|
|
|
16866
15365
|
"minimal",
|
|
16867
15366
|
"low",
|
|
16868
15367
|
"medium",
|
|
16869
|
-
"high"
|
|
16870
|
-
|
|
15368
|
+
"high",
|
|
15369
|
+
"xhigh"
|
|
15370
|
+
],
|
|
15371
|
+
"requiresEffort": true,
|
|
15372
|
+
"effortRouting": {
|
|
15373
|
+
"minimal": "gpt-5-4-mini-low",
|
|
15374
|
+
"low": "gpt-5-4-mini-low",
|
|
15375
|
+
"medium": "gpt-5-4-mini-medium",
|
|
15376
|
+
"high": "gpt-5-4-mini-high",
|
|
15377
|
+
"xhigh": "gpt-5-4-mini-xhigh"
|
|
15378
|
+
}
|
|
15379
|
+
},
|
|
15380
|
+
"requestModelId": "gpt-5-4-mini-low",
|
|
15381
|
+
"compat": {
|
|
15382
|
+
"trustExplicitThinkingOnly": true
|
|
16871
15383
|
}
|
|
16872
15384
|
},
|
|
16873
|
-
"
|
|
16874
|
-
"id": "
|
|
16875
|
-
"name": "GPT-5.
|
|
15385
|
+
"gpt-5-5": {
|
|
15386
|
+
"id": "gpt-5-5",
|
|
15387
|
+
"name": "GPT-5.5",
|
|
16876
15388
|
"api": "devin-agent",
|
|
16877
15389
|
"provider": "devin",
|
|
16878
15390
|
"baseUrl": "https://server.codeium.com",
|
|
16879
|
-
"reasoning":
|
|
15391
|
+
"reasoning": true,
|
|
16880
15392
|
"input": [
|
|
16881
15393
|
"text",
|
|
16882
15394
|
"image"
|
|
@@ -16888,12 +15400,34 @@
|
|
|
16888
15400
|
"cacheRead": 0,
|
|
16889
15401
|
"cacheWrite": 0
|
|
16890
15402
|
},
|
|
16891
|
-
"contextWindow":
|
|
16892
|
-
"maxTokens": 64000
|
|
15403
|
+
"contextWindow": 272000,
|
|
15404
|
+
"maxTokens": 64000,
|
|
15405
|
+
"thinking": {
|
|
15406
|
+
"mode": "effort",
|
|
15407
|
+
"efforts": [
|
|
15408
|
+
"minimal",
|
|
15409
|
+
"low",
|
|
15410
|
+
"medium",
|
|
15411
|
+
"high",
|
|
15412
|
+
"xhigh"
|
|
15413
|
+
],
|
|
15414
|
+
"effortRouting": {
|
|
15415
|
+
"off": "gpt-5-5-none",
|
|
15416
|
+
"minimal": "gpt-5-5-low",
|
|
15417
|
+
"low": "gpt-5-5-low",
|
|
15418
|
+
"medium": "gpt-5-5-medium",
|
|
15419
|
+
"high": "gpt-5-5-high",
|
|
15420
|
+
"xhigh": "gpt-5-5-xhigh"
|
|
15421
|
+
}
|
|
15422
|
+
},
|
|
15423
|
+
"requestModelId": "gpt-5-5-none",
|
|
15424
|
+
"compat": {
|
|
15425
|
+
"trustExplicitThinkingOnly": true
|
|
15426
|
+
}
|
|
16893
15427
|
},
|
|
16894
|
-
"
|
|
16895
|
-
"id": "
|
|
16896
|
-
"name": "GPT-5.
|
|
15428
|
+
"gpt-5-5-fast": {
|
|
15429
|
+
"id": "gpt-5-5-fast",
|
|
15430
|
+
"name": "GPT-5.5 Fast",
|
|
16897
15431
|
"api": "devin-agent",
|
|
16898
15432
|
"provider": "devin",
|
|
16899
15433
|
"baseUrl": "https://server.codeium.com",
|
|
@@ -16909,7 +15443,7 @@
|
|
|
16909
15443
|
"cacheRead": 0,
|
|
16910
15444
|
"cacheWrite": 0
|
|
16911
15445
|
},
|
|
16912
|
-
"contextWindow":
|
|
15446
|
+
"contextWindow": 272000,
|
|
16913
15447
|
"maxTokens": 64000,
|
|
16914
15448
|
"thinking": {
|
|
16915
15449
|
"mode": "effort",
|
|
@@ -16917,10 +15451,107 @@
|
|
|
16917
15451
|
"minimal",
|
|
16918
15452
|
"low",
|
|
16919
15453
|
"medium",
|
|
16920
|
-
"high"
|
|
16921
|
-
|
|
15454
|
+
"high",
|
|
15455
|
+
"xhigh"
|
|
15456
|
+
],
|
|
15457
|
+
"effortRouting": {
|
|
15458
|
+
"off": "gpt-5-5-none-priority",
|
|
15459
|
+
"minimal": "gpt-5-5-low-priority",
|
|
15460
|
+
"low": "gpt-5-5-low-priority",
|
|
15461
|
+
"medium": "gpt-5-5-medium-priority",
|
|
15462
|
+
"high": "gpt-5-5-high-priority",
|
|
15463
|
+
"xhigh": "gpt-5-5-xhigh-priority"
|
|
15464
|
+
}
|
|
15465
|
+
},
|
|
15466
|
+
"requestModelId": "gpt-5-5-none-priority",
|
|
15467
|
+
"compat": {
|
|
15468
|
+
"trustExplicitThinkingOnly": true
|
|
16922
15469
|
}
|
|
16923
15470
|
},
|
|
15471
|
+
"kimi-k2-6": {
|
|
15472
|
+
"id": "kimi-k2-6",
|
|
15473
|
+
"name": "Kimi K2.6",
|
|
15474
|
+
"api": "devin-agent",
|
|
15475
|
+
"provider": "devin",
|
|
15476
|
+
"baseUrl": "https://server.codeium.com",
|
|
15477
|
+
"reasoning": true,
|
|
15478
|
+
"input": [
|
|
15479
|
+
"text",
|
|
15480
|
+
"image"
|
|
15481
|
+
],
|
|
15482
|
+
"supportsTools": true,
|
|
15483
|
+
"cost": {
|
|
15484
|
+
"input": 0,
|
|
15485
|
+
"output": 0,
|
|
15486
|
+
"cacheRead": 0,
|
|
15487
|
+
"cacheWrite": 0
|
|
15488
|
+
},
|
|
15489
|
+
"contextWindow": 262144,
|
|
15490
|
+
"maxTokens": 64000
|
|
15491
|
+
},
|
|
15492
|
+
"kimi-k2-7": {
|
|
15493
|
+
"id": "kimi-k2-7",
|
|
15494
|
+
"name": "Kimi K2.7",
|
|
15495
|
+
"api": "devin-agent",
|
|
15496
|
+
"provider": "devin",
|
|
15497
|
+
"baseUrl": "https://server.codeium.com",
|
|
15498
|
+
"reasoning": true,
|
|
15499
|
+
"input": [
|
|
15500
|
+
"text",
|
|
15501
|
+
"image"
|
|
15502
|
+
],
|
|
15503
|
+
"supportsTools": true,
|
|
15504
|
+
"cost": {
|
|
15505
|
+
"input": 0,
|
|
15506
|
+
"output": 0,
|
|
15507
|
+
"cacheRead": 0,
|
|
15508
|
+
"cacheWrite": 0
|
|
15509
|
+
},
|
|
15510
|
+
"contextWindow": 262144,
|
|
15511
|
+
"maxTokens": 64000
|
|
15512
|
+
},
|
|
15513
|
+
"MODEL_CLAUDE_4_5_OPUS": {
|
|
15514
|
+
"id": "MODEL_CLAUDE_4_5_OPUS",
|
|
15515
|
+
"name": "Claude Opus 4.5",
|
|
15516
|
+
"api": "devin-agent",
|
|
15517
|
+
"provider": "devin",
|
|
15518
|
+
"baseUrl": "https://server.codeium.com",
|
|
15519
|
+
"reasoning": false,
|
|
15520
|
+
"input": [
|
|
15521
|
+
"text",
|
|
15522
|
+
"image"
|
|
15523
|
+
],
|
|
15524
|
+
"supportsTools": true,
|
|
15525
|
+
"cost": {
|
|
15526
|
+
"input": 0,
|
|
15527
|
+
"output": 0,
|
|
15528
|
+
"cacheRead": 0,
|
|
15529
|
+
"cacheWrite": 0
|
|
15530
|
+
},
|
|
15531
|
+
"contextWindow": 200000,
|
|
15532
|
+
"maxTokens": 64000
|
|
15533
|
+
},
|
|
15534
|
+
"MODEL_CLAUDE_4_5_OPUS_THINKING": {
|
|
15535
|
+
"id": "MODEL_CLAUDE_4_5_OPUS_THINKING",
|
|
15536
|
+
"name": "Claude Opus 4.5 Thinking",
|
|
15537
|
+
"api": "devin-agent",
|
|
15538
|
+
"provider": "devin",
|
|
15539
|
+
"baseUrl": "https://server.codeium.com",
|
|
15540
|
+
"reasoning": true,
|
|
15541
|
+
"input": [
|
|
15542
|
+
"text",
|
|
15543
|
+
"image"
|
|
15544
|
+
],
|
|
15545
|
+
"supportsTools": true,
|
|
15546
|
+
"cost": {
|
|
15547
|
+
"input": 0,
|
|
15548
|
+
"output": 0,
|
|
15549
|
+
"cacheRead": 0,
|
|
15550
|
+
"cacheWrite": 0
|
|
15551
|
+
},
|
|
15552
|
+
"contextWindow": 200000,
|
|
15553
|
+
"maxTokens": 64000
|
|
15554
|
+
},
|
|
16924
15555
|
"MODEL_PRIVATE_11": {
|
|
16925
15556
|
"id": "MODEL_PRIVATE_11",
|
|
16926
15557
|
"name": "Claude Haiku 4.5",
|
|
@@ -16982,16 +15613,7 @@
|
|
|
16982
15613
|
"cacheWrite": 0
|
|
16983
15614
|
},
|
|
16984
15615
|
"contextWindow": 200000,
|
|
16985
|
-
"maxTokens": 64000
|
|
16986
|
-
"thinking": {
|
|
16987
|
-
"mode": "effort",
|
|
16988
|
-
"efforts": [
|
|
16989
|
-
"minimal",
|
|
16990
|
-
"low",
|
|
16991
|
-
"medium",
|
|
16992
|
-
"high"
|
|
16993
|
-
]
|
|
16994
|
-
}
|
|
15616
|
+
"maxTokens": 64000
|
|
16995
15617
|
},
|
|
16996
15618
|
"MODEL_SWE_1_5": {
|
|
16997
15619
|
"id": "MODEL_SWE_1_5",
|
|
@@ -17012,16 +15634,7 @@
|
|
|
17012
15634
|
"cacheWrite": 0
|
|
17013
15635
|
},
|
|
17014
15636
|
"contextWindow": 128000,
|
|
17015
|
-
"maxTokens": 64000
|
|
17016
|
-
"thinking": {
|
|
17017
|
-
"mode": "effort",
|
|
17018
|
-
"efforts": [
|
|
17019
|
-
"minimal",
|
|
17020
|
-
"low",
|
|
17021
|
-
"medium",
|
|
17022
|
-
"high"
|
|
17023
|
-
]
|
|
17024
|
-
}
|
|
15637
|
+
"maxTokens": 64000
|
|
17025
15638
|
},
|
|
17026
15639
|
"MODEL_SWE_1_5_SLOW": {
|
|
17027
15640
|
"id": "MODEL_SWE_1_5_SLOW",
|
|
@@ -17042,16 +15655,7 @@
|
|
|
17042
15655
|
"cacheWrite": 0
|
|
17043
15656
|
},
|
|
17044
15657
|
"contextWindow": 200000,
|
|
17045
|
-
"maxTokens": 64000
|
|
17046
|
-
"thinking": {
|
|
17047
|
-
"mode": "effort",
|
|
17048
|
-
"efforts": [
|
|
17049
|
-
"minimal",
|
|
17050
|
-
"low",
|
|
17051
|
-
"medium",
|
|
17052
|
-
"high"
|
|
17053
|
-
]
|
|
17054
|
-
}
|
|
15658
|
+
"maxTokens": 64000
|
|
17055
15659
|
},
|
|
17056
15660
|
"swe-1-6": {
|
|
17057
15661
|
"id": "swe-1-6",
|
|
@@ -17072,16 +15676,7 @@
|
|
|
17072
15676
|
"cacheWrite": 0
|
|
17073
15677
|
},
|
|
17074
15678
|
"contextWindow": 200000,
|
|
17075
|
-
"maxTokens": 64000
|
|
17076
|
-
"thinking": {
|
|
17077
|
-
"mode": "effort",
|
|
17078
|
-
"efforts": [
|
|
17079
|
-
"minimal",
|
|
17080
|
-
"low",
|
|
17081
|
-
"medium",
|
|
17082
|
-
"high"
|
|
17083
|
-
]
|
|
17084
|
-
}
|
|
15679
|
+
"maxTokens": 64000
|
|
17085
15680
|
},
|
|
17086
15681
|
"swe-1-6-fast": {
|
|
17087
15682
|
"id": "swe-1-6-fast",
|
|
@@ -17102,16 +15697,7 @@
|
|
|
17102
15697
|
"cacheWrite": 0
|
|
17103
15698
|
},
|
|
17104
15699
|
"contextWindow": 200000,
|
|
17105
|
-
"maxTokens": 64000
|
|
17106
|
-
"thinking": {
|
|
17107
|
-
"mode": "effort",
|
|
17108
|
-
"efforts": [
|
|
17109
|
-
"minimal",
|
|
17110
|
-
"low",
|
|
17111
|
-
"medium",
|
|
17112
|
-
"high"
|
|
17113
|
-
]
|
|
17114
|
-
}
|
|
15700
|
+
"maxTokens": 64000
|
|
17115
15701
|
}
|
|
17116
15702
|
},
|
|
17117
15703
|
"firepass": {
|
|
@@ -33766,11 +32352,11 @@
|
|
|
33766
32352
|
},
|
|
33767
32353
|
"z-ai/glm-5.2": {
|
|
33768
32354
|
"id": "z-ai/glm-5.2",
|
|
33769
|
-
"name": "GLM 5.2
|
|
32355
|
+
"name": "GLM 5.2",
|
|
33770
32356
|
"api": "openai-completions",
|
|
33771
32357
|
"provider": "kilo",
|
|
33772
32358
|
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
33773
|
-
"reasoning":
|
|
32359
|
+
"reasoning": true,
|
|
33774
32360
|
"input": [
|
|
33775
32361
|
"text"
|
|
33776
32362
|
],
|
|
@@ -33781,7 +32367,20 @@
|
|
|
33781
32367
|
"cacheWrite": 0
|
|
33782
32368
|
},
|
|
33783
32369
|
"contextWindow": 1048576,
|
|
33784
|
-
"maxTokens": 131072
|
|
32370
|
+
"maxTokens": 131072,
|
|
32371
|
+
"thinking": {
|
|
32372
|
+
"mode": "effort",
|
|
32373
|
+
"efforts": [
|
|
32374
|
+
"minimal",
|
|
32375
|
+
"low",
|
|
32376
|
+
"medium",
|
|
32377
|
+
"high",
|
|
32378
|
+
"xhigh"
|
|
32379
|
+
],
|
|
32380
|
+
"effortMap": {
|
|
32381
|
+
"xhigh": "max"
|
|
32382
|
+
}
|
|
32383
|
+
}
|
|
33785
32384
|
},
|
|
33786
32385
|
"z-ai/glm-5v-turbo": {
|
|
33787
32386
|
"id": "z-ai/glm-5v-turbo",
|
|
@@ -61867,12 +60466,12 @@
|
|
|
61867
60466
|
],
|
|
61868
60467
|
"cost": {
|
|
61869
60468
|
"input": 0.66,
|
|
61870
|
-
"output": 3.
|
|
61871
|
-
"cacheRead": 0.
|
|
60469
|
+
"output": 3.41,
|
|
60470
|
+
"cacheRead": 0.144,
|
|
61872
60471
|
"cacheWrite": 0
|
|
61873
60472
|
},
|
|
61874
60473
|
"contextWindow": 262144,
|
|
61875
|
-
"maxTokens":
|
|
60474
|
+
"maxTokens": 262144,
|
|
61876
60475
|
"thinking": {
|
|
61877
60476
|
"mode": "effort",
|
|
61878
60477
|
"efforts": [
|
|
@@ -65533,12 +64132,12 @@
|
|
|
65533
64132
|
],
|
|
65534
64133
|
"cost": {
|
|
65535
64134
|
"input": 0.66,
|
|
65536
|
-
"output": 3.
|
|
65537
|
-
"cacheRead": 0.
|
|
64135
|
+
"output": 3.41,
|
|
64136
|
+
"cacheRead": 0.144,
|
|
65538
64137
|
"cacheWrite": 0
|
|
65539
64138
|
},
|
|
65540
64139
|
"contextWindow": 262144,
|
|
65541
|
-
"maxTokens":
|
|
64140
|
+
"maxTokens": 262144,
|
|
65542
64141
|
"thinking": {
|
|
65543
64142
|
"mode": "effort",
|
|
65544
64143
|
"efforts": [
|
|
@@ -70643,6 +69242,107 @@
|
|
|
70643
69242
|
"maxTokens": 8192
|
|
70644
69243
|
}
|
|
70645
69244
|
},
|
|
69245
|
+
"sakana": {
|
|
69246
|
+
"fugu": {
|
|
69247
|
+
"id": "fugu",
|
|
69248
|
+
"name": "Fugu",
|
|
69249
|
+
"api": "openai-responses",
|
|
69250
|
+
"provider": "sakana",
|
|
69251
|
+
"baseUrl": "https://api.sakana.ai/v1",
|
|
69252
|
+
"reasoning": true,
|
|
69253
|
+
"input": [
|
|
69254
|
+
"text"
|
|
69255
|
+
],
|
|
69256
|
+
"cost": {
|
|
69257
|
+
"input": 0,
|
|
69258
|
+
"output": 0,
|
|
69259
|
+
"cacheRead": 0,
|
|
69260
|
+
"cacheWrite": 0
|
|
69261
|
+
},
|
|
69262
|
+
"contextWindow": 1000000,
|
|
69263
|
+
"maxTokens": null,
|
|
69264
|
+
"thinking": {
|
|
69265
|
+
"mode": "effort",
|
|
69266
|
+
"efforts": [
|
|
69267
|
+
"high",
|
|
69268
|
+
"xhigh"
|
|
69269
|
+
],
|
|
69270
|
+
"effortMap": {
|
|
69271
|
+
"xhigh": "max"
|
|
69272
|
+
}
|
|
69273
|
+
},
|
|
69274
|
+
"compat": {
|
|
69275
|
+
"includeEncryptedReasoning": false,
|
|
69276
|
+
"streamIdleTimeoutMs": 0
|
|
69277
|
+
}
|
|
69278
|
+
},
|
|
69279
|
+
"fugu-ultra": {
|
|
69280
|
+
"id": "fugu-ultra",
|
|
69281
|
+
"name": "Fugu Ultra",
|
|
69282
|
+
"api": "openai-responses",
|
|
69283
|
+
"provider": "sakana",
|
|
69284
|
+
"baseUrl": "https://api.sakana.ai/v1",
|
|
69285
|
+
"reasoning": true,
|
|
69286
|
+
"input": [
|
|
69287
|
+
"text"
|
|
69288
|
+
],
|
|
69289
|
+
"cost": {
|
|
69290
|
+
"input": 5,
|
|
69291
|
+
"output": 30,
|
|
69292
|
+
"cacheRead": 0.5,
|
|
69293
|
+
"cacheWrite": 0
|
|
69294
|
+
},
|
|
69295
|
+
"contextWindow": 1000000,
|
|
69296
|
+
"maxTokens": null,
|
|
69297
|
+
"thinking": {
|
|
69298
|
+
"mode": "effort",
|
|
69299
|
+
"efforts": [
|
|
69300
|
+
"high",
|
|
69301
|
+
"xhigh"
|
|
69302
|
+
],
|
|
69303
|
+
"effortMap": {
|
|
69304
|
+
"xhigh": "max"
|
|
69305
|
+
}
|
|
69306
|
+
},
|
|
69307
|
+
"compat": {
|
|
69308
|
+
"includeEncryptedReasoning": false,
|
|
69309
|
+
"streamIdleTimeoutMs": 0
|
|
69310
|
+
}
|
|
69311
|
+
},
|
|
69312
|
+
"fugu-ultra-20260615": {
|
|
69313
|
+
"id": "fugu-ultra-20260615",
|
|
69314
|
+
"name": "Fugu Ultra 20260615",
|
|
69315
|
+
"api": "openai-responses",
|
|
69316
|
+
"provider": "sakana",
|
|
69317
|
+
"baseUrl": "https://api.sakana.ai/v1",
|
|
69318
|
+
"reasoning": true,
|
|
69319
|
+
"input": [
|
|
69320
|
+
"text"
|
|
69321
|
+
],
|
|
69322
|
+
"cost": {
|
|
69323
|
+
"input": 5,
|
|
69324
|
+
"output": 30,
|
|
69325
|
+
"cacheRead": 0.5,
|
|
69326
|
+
"cacheWrite": 0
|
|
69327
|
+
},
|
|
69328
|
+
"contextWindow": 1000000,
|
|
69329
|
+
"maxTokens": null,
|
|
69330
|
+
"thinking": {
|
|
69331
|
+
"mode": "effort",
|
|
69332
|
+
"efforts": [
|
|
69333
|
+
"high",
|
|
69334
|
+
"xhigh"
|
|
69335
|
+
],
|
|
69336
|
+
"effortMap": {
|
|
69337
|
+
"xhigh": "max"
|
|
69338
|
+
}
|
|
69339
|
+
},
|
|
69340
|
+
"compat": {
|
|
69341
|
+
"includeEncryptedReasoning": false,
|
|
69342
|
+
"streamIdleTimeoutMs": 0
|
|
69343
|
+
}
|
|
69344
|
+
}
|
|
69345
|
+
},
|
|
70646
69346
|
"synthetic": {
|
|
70647
69347
|
"hf:MiniMaxAI/MiniMax-M3": {
|
|
70648
69348
|
"id": "hf:MiniMaxAI/MiniMax-M3",
|
|
@@ -87130,18 +85830,31 @@
|
|
|
87130
85830
|
"api": "openai-completions",
|
|
87131
85831
|
"provider": "zenmux",
|
|
87132
85832
|
"baseUrl": "https://zenmux.ai/api/v1",
|
|
87133
|
-
"reasoning":
|
|
85833
|
+
"reasoning": true,
|
|
87134
85834
|
"input": [
|
|
87135
85835
|
"text"
|
|
87136
85836
|
],
|
|
87137
85837
|
"cost": {
|
|
87138
85838
|
"input": 1.4,
|
|
87139
|
-
"output": 4.
|
|
85839
|
+
"output": 4.5,
|
|
87140
85840
|
"cacheRead": 0.26,
|
|
87141
85841
|
"cacheWrite": 0
|
|
87142
85842
|
},
|
|
87143
85843
|
"contextWindow": 1000000,
|
|
87144
|
-
"maxTokens": 131072
|
|
85844
|
+
"maxTokens": 131072,
|
|
85845
|
+
"thinking": {
|
|
85846
|
+
"mode": "effort",
|
|
85847
|
+
"efforts": [
|
|
85848
|
+
"minimal",
|
|
85849
|
+
"low",
|
|
85850
|
+
"medium",
|
|
85851
|
+
"high",
|
|
85852
|
+
"xhigh"
|
|
85853
|
+
],
|
|
85854
|
+
"effortMap": {
|
|
85855
|
+
"xhigh": "max"
|
|
85856
|
+
}
|
|
85857
|
+
}
|
|
87145
85858
|
},
|
|
87146
85859
|
"z-ai/glm-5.2-free": {
|
|
87147
85860
|
"id": "z-ai/glm-5.2-free",
|
|
@@ -87149,7 +85862,7 @@
|
|
|
87149
85862
|
"api": "openai-completions",
|
|
87150
85863
|
"provider": "zenmux",
|
|
87151
85864
|
"baseUrl": "https://zenmux.ai/api/v1",
|
|
87152
|
-
"reasoning":
|
|
85865
|
+
"reasoning": true,
|
|
87153
85866
|
"input": [
|
|
87154
85867
|
"text"
|
|
87155
85868
|
],
|
|
@@ -87160,7 +85873,20 @@
|
|
|
87160
85873
|
"cacheWrite": 0
|
|
87161
85874
|
},
|
|
87162
85875
|
"contextWindow": 1000000,
|
|
87163
|
-
"maxTokens": 131072
|
|
85876
|
+
"maxTokens": 131072,
|
|
85877
|
+
"thinking": {
|
|
85878
|
+
"mode": "effort",
|
|
85879
|
+
"efforts": [
|
|
85880
|
+
"minimal",
|
|
85881
|
+
"low",
|
|
85882
|
+
"medium",
|
|
85883
|
+
"high",
|
|
85884
|
+
"xhigh"
|
|
85885
|
+
],
|
|
85886
|
+
"effortMap": {
|
|
85887
|
+
"xhigh": "max"
|
|
85888
|
+
}
|
|
85889
|
+
}
|
|
87164
85890
|
},
|
|
87165
85891
|
"z-ai/glm-5v-turbo": {
|
|
87166
85892
|
"id": "z-ai/glm-5v-turbo",
|