@oh-my-pi/pi-catalog 17.2.2 → 17.2.4
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 +19 -0
- package/dist/types/provider-models/descriptors.d.ts +9 -0
- package/dist/types/provider-models/ollama.d.ts +13 -0
- package/dist/types/provider-models/openai-compat.d.ts +17 -0
- package/dist/types/types.d.ts +16 -1
- package/package.json +3 -3
- package/src/compat/anthropic.ts +1 -0
- package/src/model-thinking.ts +11 -6
- package/src/models.json +780 -203
- package/src/provider-models/descriptors.ts +9 -0
- package/src/provider-models/ollama.ts +37 -6
- package/src/provider-models/openai-compat.ts +189 -0
- package/src/types.ts +16 -1
package/src/models.json
CHANGED
|
@@ -1,4 +1,244 @@
|
|
|
1
1
|
{
|
|
2
|
+
"aiand": {
|
|
3
|
+
"deepseek-ai/deepseek-v4-flash": {
|
|
4
|
+
"id": "deepseek-ai/deepseek-v4-flash",
|
|
5
|
+
"name": "DeepSeek V4 Flash",
|
|
6
|
+
"api": "openai-completions",
|
|
7
|
+
"provider": "aiand",
|
|
8
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
9
|
+
"reasoning": true,
|
|
10
|
+
"input": [
|
|
11
|
+
"text"
|
|
12
|
+
],
|
|
13
|
+
"cost": {
|
|
14
|
+
"input": 0.15,
|
|
15
|
+
"output": 0.25,
|
|
16
|
+
"cacheRead": 0,
|
|
17
|
+
"cacheWrite": 0
|
|
18
|
+
},
|
|
19
|
+
"contextWindow": 1048576,
|
|
20
|
+
"maxTokens": 393216,
|
|
21
|
+
"thinking": {
|
|
22
|
+
"mode": "effort",
|
|
23
|
+
"efforts": [
|
|
24
|
+
"high",
|
|
25
|
+
"max"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"supportsComputerUse": false
|
|
29
|
+
},
|
|
30
|
+
"deepseek-ai/deepseek-v4-pro": {
|
|
31
|
+
"id": "deepseek-ai/deepseek-v4-pro",
|
|
32
|
+
"name": "DeepSeek V4 Pro",
|
|
33
|
+
"api": "openai-completions",
|
|
34
|
+
"provider": "aiand",
|
|
35
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
36
|
+
"reasoning": true,
|
|
37
|
+
"input": [
|
|
38
|
+
"text"
|
|
39
|
+
],
|
|
40
|
+
"cost": {
|
|
41
|
+
"input": 1,
|
|
42
|
+
"output": 2.5,
|
|
43
|
+
"cacheRead": 0,
|
|
44
|
+
"cacheWrite": 0
|
|
45
|
+
},
|
|
46
|
+
"contextWindow": 1048576,
|
|
47
|
+
"maxTokens": 393216,
|
|
48
|
+
"thinking": {
|
|
49
|
+
"mode": "effort",
|
|
50
|
+
"efforts": [
|
|
51
|
+
"high",
|
|
52
|
+
"max"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"supportsComputerUse": false
|
|
56
|
+
},
|
|
57
|
+
"google/gemma-4-31b-it": {
|
|
58
|
+
"id": "google/gemma-4-31b-it",
|
|
59
|
+
"name": "Gemma 4 31B",
|
|
60
|
+
"api": "openai-completions",
|
|
61
|
+
"provider": "aiand",
|
|
62
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
63
|
+
"reasoning": true,
|
|
64
|
+
"input": [
|
|
65
|
+
"text",
|
|
66
|
+
"image"
|
|
67
|
+
],
|
|
68
|
+
"cost": {
|
|
69
|
+
"input": 0.2,
|
|
70
|
+
"output": 0.5,
|
|
71
|
+
"cacheRead": 0,
|
|
72
|
+
"cacheWrite": 0
|
|
73
|
+
},
|
|
74
|
+
"contextWindow": 262144,
|
|
75
|
+
"maxTokens": 131072,
|
|
76
|
+
"thinking": {
|
|
77
|
+
"mode": "effort",
|
|
78
|
+
"efforts": [
|
|
79
|
+
"minimal",
|
|
80
|
+
"low",
|
|
81
|
+
"medium",
|
|
82
|
+
"high",
|
|
83
|
+
"xhigh"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"supportsComputerUse": false
|
|
87
|
+
},
|
|
88
|
+
"moonshotai/kimi-k2.7-code": {
|
|
89
|
+
"id": "moonshotai/kimi-k2.7-code",
|
|
90
|
+
"name": "Kimi K2.7 Code",
|
|
91
|
+
"api": "openai-completions",
|
|
92
|
+
"provider": "aiand",
|
|
93
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
94
|
+
"reasoning": true,
|
|
95
|
+
"input": [
|
|
96
|
+
"text",
|
|
97
|
+
"image"
|
|
98
|
+
],
|
|
99
|
+
"cost": {
|
|
100
|
+
"input": 0.75,
|
|
101
|
+
"output": 3.5,
|
|
102
|
+
"cacheRead": 0,
|
|
103
|
+
"cacheWrite": 0
|
|
104
|
+
},
|
|
105
|
+
"contextWindow": 262144,
|
|
106
|
+
"maxTokens": 262144,
|
|
107
|
+
"thinking": {
|
|
108
|
+
"mode": "effort",
|
|
109
|
+
"efforts": [
|
|
110
|
+
"minimal",
|
|
111
|
+
"low",
|
|
112
|
+
"medium",
|
|
113
|
+
"high",
|
|
114
|
+
"xhigh"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
"supportsComputerUse": false
|
|
118
|
+
},
|
|
119
|
+
"moonshotai/kimi-k3": {
|
|
120
|
+
"id": "moonshotai/kimi-k3",
|
|
121
|
+
"name": "Kimi K3",
|
|
122
|
+
"api": "openai-completions",
|
|
123
|
+
"provider": "aiand",
|
|
124
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
125
|
+
"reasoning": true,
|
|
126
|
+
"input": [
|
|
127
|
+
"text",
|
|
128
|
+
"image"
|
|
129
|
+
],
|
|
130
|
+
"cost": {
|
|
131
|
+
"input": 3,
|
|
132
|
+
"output": 12.5,
|
|
133
|
+
"cacheRead": 0,
|
|
134
|
+
"cacheWrite": 0
|
|
135
|
+
},
|
|
136
|
+
"contextWindow": 1048576,
|
|
137
|
+
"maxTokens": 131072,
|
|
138
|
+
"thinking": {
|
|
139
|
+
"mode": "effort",
|
|
140
|
+
"efforts": [
|
|
141
|
+
"low",
|
|
142
|
+
"high",
|
|
143
|
+
"max"
|
|
144
|
+
],
|
|
145
|
+
"defaultLevel": "max",
|
|
146
|
+
"effortMap": {
|
|
147
|
+
"max": "max"
|
|
148
|
+
},
|
|
149
|
+
"requiresEffort": true
|
|
150
|
+
},
|
|
151
|
+
"supportsComputerUse": false
|
|
152
|
+
},
|
|
153
|
+
"openai/gpt-oss-120b": {
|
|
154
|
+
"id": "openai/gpt-oss-120b",
|
|
155
|
+
"name": "GPT OSS 120B",
|
|
156
|
+
"api": "openai-completions",
|
|
157
|
+
"provider": "aiand",
|
|
158
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
159
|
+
"reasoning": true,
|
|
160
|
+
"input": [
|
|
161
|
+
"text"
|
|
162
|
+
],
|
|
163
|
+
"cost": {
|
|
164
|
+
"input": 0.15,
|
|
165
|
+
"output": 0.6,
|
|
166
|
+
"cacheRead": 0,
|
|
167
|
+
"cacheWrite": 0
|
|
168
|
+
},
|
|
169
|
+
"contextWindow": 131072,
|
|
170
|
+
"maxTokens": 131072,
|
|
171
|
+
"thinking": {
|
|
172
|
+
"mode": "effort",
|
|
173
|
+
"efforts": [
|
|
174
|
+
"low",
|
|
175
|
+
"medium",
|
|
176
|
+
"high"
|
|
177
|
+
]
|
|
178
|
+
},
|
|
179
|
+
"supportsComputerUse": false
|
|
180
|
+
},
|
|
181
|
+
"qwen/qwen3.6-27b": {
|
|
182
|
+
"id": "qwen/qwen3.6-27b",
|
|
183
|
+
"name": "Qwen3.6 27B",
|
|
184
|
+
"api": "openai-completions",
|
|
185
|
+
"provider": "aiand",
|
|
186
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
187
|
+
"reasoning": true,
|
|
188
|
+
"input": [
|
|
189
|
+
"text",
|
|
190
|
+
"image"
|
|
191
|
+
],
|
|
192
|
+
"cost": {
|
|
193
|
+
"input": 0.32,
|
|
194
|
+
"output": 3.2,
|
|
195
|
+
"cacheRead": 0,
|
|
196
|
+
"cacheWrite": 0
|
|
197
|
+
},
|
|
198
|
+
"contextWindow": 262144,
|
|
199
|
+
"maxTokens": 65536,
|
|
200
|
+
"thinking": {
|
|
201
|
+
"mode": "effort",
|
|
202
|
+
"efforts": [
|
|
203
|
+
"minimal",
|
|
204
|
+
"low",
|
|
205
|
+
"medium",
|
|
206
|
+
"high"
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
"supportsComputerUse": false
|
|
210
|
+
},
|
|
211
|
+
"zai-org/glm-5.2": {
|
|
212
|
+
"id": "zai-org/glm-5.2",
|
|
213
|
+
"name": "GLM 5.2",
|
|
214
|
+
"api": "openai-completions",
|
|
215
|
+
"provider": "aiand",
|
|
216
|
+
"baseUrl": "https://api.aiand.com/v1",
|
|
217
|
+
"reasoning": true,
|
|
218
|
+
"input": [
|
|
219
|
+
"text"
|
|
220
|
+
],
|
|
221
|
+
"cost": {
|
|
222
|
+
"input": 1,
|
|
223
|
+
"output": 4,
|
|
224
|
+
"cacheRead": 0,
|
|
225
|
+
"cacheWrite": 0
|
|
226
|
+
},
|
|
227
|
+
"contextWindow": 1048576,
|
|
228
|
+
"maxTokens": 131072,
|
|
229
|
+
"thinking": {
|
|
230
|
+
"mode": "effort",
|
|
231
|
+
"efforts": [
|
|
232
|
+
"minimal",
|
|
233
|
+
"low",
|
|
234
|
+
"medium",
|
|
235
|
+
"high",
|
|
236
|
+
"max"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
"supportsComputerUse": false
|
|
240
|
+
}
|
|
241
|
+
},
|
|
2
242
|
"aimlapi": {
|
|
3
243
|
"act_two": {
|
|
4
244
|
"id": "act_two",
|
|
@@ -8536,10 +8776,10 @@
|
|
|
8536
8776
|
"image"
|
|
8537
8777
|
],
|
|
8538
8778
|
"cost": {
|
|
8539
|
-
"input": 1
|
|
8540
|
-
"output": 5
|
|
8541
|
-
"cacheRead": 0.
|
|
8542
|
-
"cacheWrite": 1.
|
|
8779
|
+
"input": 1,
|
|
8780
|
+
"output": 5,
|
|
8781
|
+
"cacheRead": 0.1,
|
|
8782
|
+
"cacheWrite": 1.25
|
|
8543
8783
|
},
|
|
8544
8784
|
"contextWindow": 200000,
|
|
8545
8785
|
"maxTokens": 64000,
|
|
@@ -8623,10 +8863,10 @@
|
|
|
8623
8863
|
"image"
|
|
8624
8864
|
],
|
|
8625
8865
|
"cost": {
|
|
8626
|
-
"input": 5
|
|
8627
|
-
"output":
|
|
8628
|
-
"cacheRead": 0.
|
|
8629
|
-
"cacheWrite": 6.
|
|
8866
|
+
"input": 5,
|
|
8867
|
+
"output": 25,
|
|
8868
|
+
"cacheRead": 0.5,
|
|
8869
|
+
"cacheWrite": 6.25
|
|
8630
8870
|
},
|
|
8631
8871
|
"contextWindow": 200000,
|
|
8632
8872
|
"maxTokens": 64000,
|
|
@@ -8681,10 +8921,10 @@
|
|
|
8681
8921
|
"image"
|
|
8682
8922
|
],
|
|
8683
8923
|
"cost": {
|
|
8684
|
-
"input": 5
|
|
8685
|
-
"output":
|
|
8686
|
-
"cacheRead": 0.
|
|
8687
|
-
"cacheWrite": 6.
|
|
8924
|
+
"input": 5,
|
|
8925
|
+
"output": 25,
|
|
8926
|
+
"cacheRead": 0.5,
|
|
8927
|
+
"cacheWrite": 6.25
|
|
8688
8928
|
},
|
|
8689
8929
|
"contextWindow": 1000000,
|
|
8690
8930
|
"maxTokens": 128000,
|
|
@@ -8711,10 +8951,10 @@
|
|
|
8711
8951
|
"image"
|
|
8712
8952
|
],
|
|
8713
8953
|
"cost": {
|
|
8714
|
-
"input": 5
|
|
8715
|
-
"output":
|
|
8716
|
-
"cacheRead": 0.
|
|
8717
|
-
"cacheWrite": 6.
|
|
8954
|
+
"input": 5,
|
|
8955
|
+
"output": 25,
|
|
8956
|
+
"cacheRead": 0.5,
|
|
8957
|
+
"cacheWrite": 6.25
|
|
8718
8958
|
},
|
|
8719
8959
|
"contextWindow": 1000000,
|
|
8720
8960
|
"maxTokens": 128000,
|
|
@@ -8741,10 +8981,10 @@
|
|
|
8741
8981
|
"image"
|
|
8742
8982
|
],
|
|
8743
8983
|
"cost": {
|
|
8744
|
-
"input": 5
|
|
8745
|
-
"output":
|
|
8746
|
-
"cacheRead": 0.
|
|
8747
|
-
"cacheWrite": 6.
|
|
8984
|
+
"input": 5,
|
|
8985
|
+
"output": 25,
|
|
8986
|
+
"cacheRead": 0.5,
|
|
8987
|
+
"cacheWrite": 6.25
|
|
8748
8988
|
},
|
|
8749
8989
|
"contextWindow": 1000000,
|
|
8750
8990
|
"maxTokens": 128000,
|
|
@@ -8937,7 +9177,7 @@
|
|
|
8937
9177
|
},
|
|
8938
9178
|
"global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
8939
9179
|
"id": "global.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
8940
|
-
"name": "Claude Haiku 4.5
|
|
9180
|
+
"name": "Claude Haiku 4.5",
|
|
8941
9181
|
"api": "bedrock-converse-stream",
|
|
8942
9182
|
"provider": "amazon-bedrock",
|
|
8943
9183
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -10889,7 +11129,7 @@
|
|
|
10889
11129
|
},
|
|
10890
11130
|
"us.deepseek.r1-v1:0": {
|
|
10891
11131
|
"id": "us.deepseek.r1-v1:0",
|
|
10892
|
-
"name": "DeepSeek-R1
|
|
11132
|
+
"name": "DeepSeek-R1",
|
|
10893
11133
|
"api": "bedrock-converse-stream",
|
|
10894
11134
|
"provider": "amazon-bedrock",
|
|
10895
11135
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -11014,7 +11254,7 @@
|
|
|
11014
11254
|
},
|
|
11015
11255
|
"us.meta.llama4-maverick-17b-instruct-v1:0": {
|
|
11016
11256
|
"id": "us.meta.llama4-maverick-17b-instruct-v1:0",
|
|
11017
|
-
"name": "Llama 4 Maverick 17B Instruct
|
|
11257
|
+
"name": "Llama 4 Maverick 17B Instruct",
|
|
11018
11258
|
"api": "bedrock-converse-stream",
|
|
11019
11259
|
"provider": "amazon-bedrock",
|
|
11020
11260
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -11034,7 +11274,7 @@
|
|
|
11034
11274
|
},
|
|
11035
11275
|
"us.meta.llama4-scout-17b-instruct-v1:0": {
|
|
11036
11276
|
"id": "us.meta.llama4-scout-17b-instruct-v1:0",
|
|
11037
|
-
"name": "Llama 4 Scout 17B Instruct
|
|
11277
|
+
"name": "Llama 4 Scout 17B Instruct",
|
|
11038
11278
|
"api": "bedrock-converse-stream",
|
|
11039
11279
|
"provider": "amazon-bedrock",
|
|
11040
11280
|
"baseUrl": "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
@@ -11528,8 +11768,7 @@
|
|
|
11528
11768
|
],
|
|
11529
11769
|
"supportsDisplay": true
|
|
11530
11770
|
},
|
|
11531
|
-
"supportsComputerUse": false
|
|
11532
|
-
"supportsComputerUseConfig": false
|
|
11771
|
+
"supportsComputerUse": false
|
|
11533
11772
|
},
|
|
11534
11773
|
"claude-opus-4-0": {
|
|
11535
11774
|
"id": "claude-opus-4-0",
|
|
@@ -13063,6 +13302,27 @@
|
|
|
13063
13302
|
}
|
|
13064
13303
|
},
|
|
13065
13304
|
"baseten": {
|
|
13305
|
+
"deepseek-ai/DeepSeek-V4-Flash-0731": {
|
|
13306
|
+
"id": "deepseek-ai/DeepSeek-V4-Flash-0731",
|
|
13307
|
+
"name": "Deepseek V4 Flash 0731",
|
|
13308
|
+
"api": "openai-completions",
|
|
13309
|
+
"provider": "baseten",
|
|
13310
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
13311
|
+
"reasoning": false,
|
|
13312
|
+
"input": [
|
|
13313
|
+
"text"
|
|
13314
|
+
],
|
|
13315
|
+
"cost": {
|
|
13316
|
+
"input": 0.13,
|
|
13317
|
+
"output": 0.26,
|
|
13318
|
+
"cacheRead": 0.028,
|
|
13319
|
+
"cacheWrite": 0
|
|
13320
|
+
},
|
|
13321
|
+
"contextWindow": 1048576,
|
|
13322
|
+
"maxTokens": 1048576,
|
|
13323
|
+
"supportsComputerUse": false,
|
|
13324
|
+
"supportsComputerUseConfig": false
|
|
13325
|
+
},
|
|
13066
13326
|
"deepseek-ai/DeepSeek-V4-Pro": {
|
|
13067
13327
|
"id": "deepseek-ai/DeepSeek-V4-Pro",
|
|
13068
13328
|
"name": "Deepseek V4 Pro",
|
|
@@ -13312,9 +13572,9 @@
|
|
|
13312
13572
|
"image"
|
|
13313
13573
|
],
|
|
13314
13574
|
"cost": {
|
|
13315
|
-
"input": 0,
|
|
13316
|
-
"output":
|
|
13317
|
-
"cacheRead": 0,
|
|
13575
|
+
"input": 0.5,
|
|
13576
|
+
"output": 1.2,
|
|
13577
|
+
"cacheRead": 0.09999999999999999,
|
|
13318
13578
|
"cacheWrite": 0
|
|
13319
13579
|
},
|
|
13320
13580
|
"contextWindow": 1048576,
|
|
@@ -15788,7 +16048,7 @@
|
|
|
15788
16048
|
"cacheRead": 0,
|
|
15789
16049
|
"cacheWrite": 0
|
|
15790
16050
|
},
|
|
15791
|
-
"contextWindow":
|
|
16051
|
+
"contextWindow": 1000000,
|
|
15792
16052
|
"maxTokens": 64000,
|
|
15793
16053
|
"thinking": {
|
|
15794
16054
|
"mode": "effort",
|
|
@@ -15827,7 +16087,7 @@
|
|
|
15827
16087
|
"cacheRead": 0,
|
|
15828
16088
|
"cacheWrite": 0
|
|
15829
16089
|
},
|
|
15830
|
-
"contextWindow":
|
|
16090
|
+
"contextWindow": 1000000,
|
|
15831
16091
|
"maxTokens": 64000,
|
|
15832
16092
|
"cursorMaxMode": false,
|
|
15833
16093
|
"thinking": {
|
|
@@ -15865,7 +16125,7 @@
|
|
|
15865
16125
|
"cacheRead": 0,
|
|
15866
16126
|
"cacheWrite": 0
|
|
15867
16127
|
},
|
|
15868
|
-
"contextWindow":
|
|
16128
|
+
"contextWindow": 1000000,
|
|
15869
16129
|
"maxTokens": 64000,
|
|
15870
16130
|
"thinking": {
|
|
15871
16131
|
"mode": "effort",
|
|
@@ -15904,7 +16164,7 @@
|
|
|
15904
16164
|
"cacheRead": 0,
|
|
15905
16165
|
"cacheWrite": 0
|
|
15906
16166
|
},
|
|
15907
|
-
"contextWindow":
|
|
16167
|
+
"contextWindow": 1000000,
|
|
15908
16168
|
"maxTokens": 64000,
|
|
15909
16169
|
"cursorMaxMode": false,
|
|
15910
16170
|
"thinking": {
|
|
@@ -15943,7 +16203,7 @@
|
|
|
15943
16203
|
"cacheRead": 0,
|
|
15944
16204
|
"cacheWrite": 0
|
|
15945
16205
|
},
|
|
15946
|
-
"contextWindow":
|
|
16206
|
+
"contextWindow": 1000000,
|
|
15947
16207
|
"maxTokens": 64000,
|
|
15948
16208
|
"cursorMaxMode": false,
|
|
15949
16209
|
"thinking": {
|
|
@@ -15982,7 +16242,7 @@
|
|
|
15982
16242
|
"cacheRead": 0,
|
|
15983
16243
|
"cacheWrite": 0
|
|
15984
16244
|
},
|
|
15985
|
-
"contextWindow":
|
|
16245
|
+
"contextWindow": 1000000,
|
|
15986
16246
|
"maxTokens": 64000,
|
|
15987
16247
|
"cursorMaxMode": false,
|
|
15988
16248
|
"thinking": {
|
|
@@ -16021,7 +16281,7 @@
|
|
|
16021
16281
|
"cacheRead": 0,
|
|
16022
16282
|
"cacheWrite": 0
|
|
16023
16283
|
},
|
|
16024
|
-
"contextWindow":
|
|
16284
|
+
"contextWindow": 1000000,
|
|
16025
16285
|
"maxTokens": 64000,
|
|
16026
16286
|
"cursorMaxMode": false,
|
|
16027
16287
|
"thinking": {
|
|
@@ -16060,7 +16320,7 @@
|
|
|
16060
16320
|
"cacheRead": 0,
|
|
16061
16321
|
"cacheWrite": 0
|
|
16062
16322
|
},
|
|
16063
|
-
"contextWindow":
|
|
16323
|
+
"contextWindow": 1000000,
|
|
16064
16324
|
"maxTokens": 64000,
|
|
16065
16325
|
"cursorMaxMode": false,
|
|
16066
16326
|
"thinking": {
|
|
@@ -16099,7 +16359,7 @@
|
|
|
16099
16359
|
"cacheRead": 0,
|
|
16100
16360
|
"cacheWrite": 0
|
|
16101
16361
|
},
|
|
16102
|
-
"contextWindow":
|
|
16362
|
+
"contextWindow": 1000000,
|
|
16103
16363
|
"maxTokens": 64000,
|
|
16104
16364
|
"cursorMaxMode": false,
|
|
16105
16365
|
"thinking": {
|
|
@@ -16138,7 +16398,7 @@
|
|
|
16138
16398
|
"cacheRead": 0,
|
|
16139
16399
|
"cacheWrite": 0
|
|
16140
16400
|
},
|
|
16141
|
-
"contextWindow":
|
|
16401
|
+
"contextWindow": 1000000,
|
|
16142
16402
|
"maxTokens": 64000,
|
|
16143
16403
|
"cursorMaxMode": true,
|
|
16144
16404
|
"thinking": {
|
|
@@ -16177,7 +16437,7 @@
|
|
|
16177
16437
|
"cacheRead": 0,
|
|
16178
16438
|
"cacheWrite": 0
|
|
16179
16439
|
},
|
|
16180
|
-
"contextWindow":
|
|
16440
|
+
"contextWindow": 1000000,
|
|
16181
16441
|
"maxTokens": 64000,
|
|
16182
16442
|
"cursorMaxMode": false,
|
|
16183
16443
|
"thinking": {
|
|
@@ -16216,7 +16476,7 @@
|
|
|
16216
16476
|
"cacheRead": 0,
|
|
16217
16477
|
"cacheWrite": 0
|
|
16218
16478
|
},
|
|
16219
|
-
"contextWindow":
|
|
16479
|
+
"contextWindow": 1000000,
|
|
16220
16480
|
"maxTokens": 64000,
|
|
16221
16481
|
"cursorMaxMode": true,
|
|
16222
16482
|
"thinking": {
|
|
@@ -16255,7 +16515,7 @@
|
|
|
16255
16515
|
"cacheRead": 0,
|
|
16256
16516
|
"cacheWrite": 0
|
|
16257
16517
|
},
|
|
16258
|
-
"contextWindow":
|
|
16518
|
+
"contextWindow": 1000000,
|
|
16259
16519
|
"maxTokens": 64000,
|
|
16260
16520
|
"cursorMaxMode": false,
|
|
16261
16521
|
"thinking": {
|
|
@@ -16294,7 +16554,7 @@
|
|
|
16294
16554
|
"cacheRead": 0,
|
|
16295
16555
|
"cacheWrite": 0
|
|
16296
16556
|
},
|
|
16297
|
-
"contextWindow":
|
|
16557
|
+
"contextWindow": 1000000,
|
|
16298
16558
|
"maxTokens": 64000,
|
|
16299
16559
|
"cursorMaxMode": true,
|
|
16300
16560
|
"thinking": {
|
|
@@ -16333,7 +16593,7 @@
|
|
|
16333
16593
|
"cacheRead": 0,
|
|
16334
16594
|
"cacheWrite": 0
|
|
16335
16595
|
},
|
|
16336
|
-
"contextWindow":
|
|
16596
|
+
"contextWindow": 1000000,
|
|
16337
16597
|
"maxTokens": 64000,
|
|
16338
16598
|
"cursorMaxMode": false,
|
|
16339
16599
|
"thinking": {
|
|
@@ -16372,7 +16632,7 @@
|
|
|
16372
16632
|
"cacheRead": 0,
|
|
16373
16633
|
"cacheWrite": 0
|
|
16374
16634
|
},
|
|
16375
|
-
"contextWindow":
|
|
16635
|
+
"contextWindow": 1000000,
|
|
16376
16636
|
"maxTokens": 64000,
|
|
16377
16637
|
"cursorMaxMode": true,
|
|
16378
16638
|
"thinking": {
|
|
@@ -16411,7 +16671,7 @@
|
|
|
16411
16671
|
"cacheRead": 0,
|
|
16412
16672
|
"cacheWrite": 0
|
|
16413
16673
|
},
|
|
16414
|
-
"contextWindow":
|
|
16674
|
+
"contextWindow": 1000000,
|
|
16415
16675
|
"maxTokens": 64000,
|
|
16416
16676
|
"cursorMaxMode": false,
|
|
16417
16677
|
"thinking": {
|
|
@@ -16450,7 +16710,7 @@
|
|
|
16450
16710
|
"cacheRead": 0,
|
|
16451
16711
|
"cacheWrite": 0
|
|
16452
16712
|
},
|
|
16453
|
-
"contextWindow":
|
|
16713
|
+
"contextWindow": 1000000,
|
|
16454
16714
|
"maxTokens": 64000,
|
|
16455
16715
|
"cursorMaxMode": true,
|
|
16456
16716
|
"thinking": {
|
|
@@ -16489,7 +16749,7 @@
|
|
|
16489
16749
|
"cacheRead": 0,
|
|
16490
16750
|
"cacheWrite": 0
|
|
16491
16751
|
},
|
|
16492
|
-
"contextWindow":
|
|
16752
|
+
"contextWindow": 1000000,
|
|
16493
16753
|
"maxTokens": 64000,
|
|
16494
16754
|
"cursorMaxMode": false,
|
|
16495
16755
|
"thinking": {
|
|
@@ -16528,7 +16788,7 @@
|
|
|
16528
16788
|
"cacheRead": 0,
|
|
16529
16789
|
"cacheWrite": 0
|
|
16530
16790
|
},
|
|
16531
|
-
"contextWindow":
|
|
16791
|
+
"contextWindow": 1000000,
|
|
16532
16792
|
"maxTokens": 64000,
|
|
16533
16793
|
"cursorMaxMode": true,
|
|
16534
16794
|
"thinking": {
|
|
@@ -16567,7 +16827,7 @@
|
|
|
16567
16827
|
"cacheRead": 0,
|
|
16568
16828
|
"cacheWrite": 0
|
|
16569
16829
|
},
|
|
16570
|
-
"contextWindow":
|
|
16830
|
+
"contextWindow": 1000000,
|
|
16571
16831
|
"maxTokens": 64000,
|
|
16572
16832
|
"cursorMaxMode": false,
|
|
16573
16833
|
"thinking": {
|
|
@@ -16606,7 +16866,7 @@
|
|
|
16606
16866
|
"cacheRead": 0,
|
|
16607
16867
|
"cacheWrite": 0
|
|
16608
16868
|
},
|
|
16609
|
-
"contextWindow":
|
|
16869
|
+
"contextWindow": 1000000,
|
|
16610
16870
|
"maxTokens": 64000,
|
|
16611
16871
|
"cursorMaxMode": true,
|
|
16612
16872
|
"thinking": {
|
|
@@ -16645,7 +16905,7 @@
|
|
|
16645
16905
|
"cacheRead": 0,
|
|
16646
16906
|
"cacheWrite": 0
|
|
16647
16907
|
},
|
|
16648
|
-
"contextWindow":
|
|
16908
|
+
"contextWindow": 1000000,
|
|
16649
16909
|
"maxTokens": 64000,
|
|
16650
16910
|
"cursorMaxMode": false,
|
|
16651
16911
|
"thinking": {
|
|
@@ -16684,7 +16944,7 @@
|
|
|
16684
16944
|
"cacheRead": 0,
|
|
16685
16945
|
"cacheWrite": 0
|
|
16686
16946
|
},
|
|
16687
|
-
"contextWindow":
|
|
16947
|
+
"contextWindow": 1000000,
|
|
16688
16948
|
"maxTokens": 64000,
|
|
16689
16949
|
"cursorMaxMode": true,
|
|
16690
16950
|
"thinking": {
|
|
@@ -16723,7 +16983,7 @@
|
|
|
16723
16983
|
"cacheRead": 0,
|
|
16724
16984
|
"cacheWrite": 0
|
|
16725
16985
|
},
|
|
16726
|
-
"contextWindow":
|
|
16986
|
+
"contextWindow": 1000000,
|
|
16727
16987
|
"maxTokens": 64000,
|
|
16728
16988
|
"cursorMaxMode": false,
|
|
16729
16989
|
"thinking": {
|
|
@@ -16762,7 +17022,7 @@
|
|
|
16762
17022
|
"cacheRead": 0,
|
|
16763
17023
|
"cacheWrite": 0
|
|
16764
17024
|
},
|
|
16765
|
-
"contextWindow":
|
|
17025
|
+
"contextWindow": 1000000,
|
|
16766
17026
|
"maxTokens": 64000,
|
|
16767
17027
|
"cursorMaxMode": true,
|
|
16768
17028
|
"thinking": {
|
|
@@ -16801,7 +17061,7 @@
|
|
|
16801
17061
|
"cacheRead": 0,
|
|
16802
17062
|
"cacheWrite": 0
|
|
16803
17063
|
},
|
|
16804
|
-
"contextWindow":
|
|
17064
|
+
"contextWindow": 1000000,
|
|
16805
17065
|
"maxTokens": 64000,
|
|
16806
17066
|
"cursorMaxMode": false,
|
|
16807
17067
|
"thinking": {
|
|
@@ -16840,7 +17100,7 @@
|
|
|
16840
17100
|
"cacheRead": 0,
|
|
16841
17101
|
"cacheWrite": 0
|
|
16842
17102
|
},
|
|
16843
|
-
"contextWindow":
|
|
17103
|
+
"contextWindow": 1000000,
|
|
16844
17104
|
"maxTokens": 64000,
|
|
16845
17105
|
"cursorMaxMode": true,
|
|
16846
17106
|
"thinking": {
|
|
@@ -16879,7 +17139,7 @@
|
|
|
16879
17139
|
"cacheRead": 0,
|
|
16880
17140
|
"cacheWrite": 0
|
|
16881
17141
|
},
|
|
16882
|
-
"contextWindow":
|
|
17142
|
+
"contextWindow": 1000000,
|
|
16883
17143
|
"maxTokens": 64000,
|
|
16884
17144
|
"cursorMaxMode": false,
|
|
16885
17145
|
"thinking": {
|
|
@@ -16918,7 +17178,7 @@
|
|
|
16918
17178
|
"cacheRead": 0,
|
|
16919
17179
|
"cacheWrite": 0
|
|
16920
17180
|
},
|
|
16921
|
-
"contextWindow":
|
|
17181
|
+
"contextWindow": 1000000,
|
|
16922
17182
|
"maxTokens": 64000,
|
|
16923
17183
|
"cursorMaxMode": true,
|
|
16924
17184
|
"thinking": {
|
|
@@ -16957,7 +17217,7 @@
|
|
|
16957
17217
|
"cacheRead": 0,
|
|
16958
17218
|
"cacheWrite": 0
|
|
16959
17219
|
},
|
|
16960
|
-
"contextWindow":
|
|
17220
|
+
"contextWindow": 1000000,
|
|
16961
17221
|
"maxTokens": 64000,
|
|
16962
17222
|
"cursorMaxMode": false,
|
|
16963
17223
|
"thinking": {
|
|
@@ -16996,7 +17256,7 @@
|
|
|
16996
17256
|
"cacheRead": 0,
|
|
16997
17257
|
"cacheWrite": 0
|
|
16998
17258
|
},
|
|
16999
|
-
"contextWindow":
|
|
17259
|
+
"contextWindow": 1000000,
|
|
17000
17260
|
"maxTokens": 64000,
|
|
17001
17261
|
"cursorMaxMode": true,
|
|
17002
17262
|
"thinking": {
|
|
@@ -17035,7 +17295,7 @@
|
|
|
17035
17295
|
"cacheRead": 0,
|
|
17036
17296
|
"cacheWrite": 0
|
|
17037
17297
|
},
|
|
17038
|
-
"contextWindow":
|
|
17298
|
+
"contextWindow": 1000000,
|
|
17039
17299
|
"maxTokens": 64000,
|
|
17040
17300
|
"cursorMaxMode": false,
|
|
17041
17301
|
"thinking": {
|
|
@@ -17074,7 +17334,7 @@
|
|
|
17074
17334
|
"cacheRead": 0,
|
|
17075
17335
|
"cacheWrite": 0
|
|
17076
17336
|
},
|
|
17077
|
-
"contextWindow":
|
|
17337
|
+
"contextWindow": 1000000,
|
|
17078
17338
|
"maxTokens": 64000,
|
|
17079
17339
|
"cursorMaxMode": true,
|
|
17080
17340
|
"thinking": {
|
|
@@ -17113,7 +17373,7 @@
|
|
|
17113
17373
|
"cacheRead": 0,
|
|
17114
17374
|
"cacheWrite": 0
|
|
17115
17375
|
},
|
|
17116
|
-
"contextWindow":
|
|
17376
|
+
"contextWindow": 1000000,
|
|
17117
17377
|
"maxTokens": 64000,
|
|
17118
17378
|
"cursorMaxMode": false,
|
|
17119
17379
|
"supportsComputerUse": false,
|
|
@@ -17136,7 +17396,7 @@
|
|
|
17136
17396
|
"cacheRead": 0,
|
|
17137
17397
|
"cacheWrite": 0
|
|
17138
17398
|
},
|
|
17139
|
-
"contextWindow":
|
|
17399
|
+
"contextWindow": 1000000,
|
|
17140
17400
|
"maxTokens": 64000,
|
|
17141
17401
|
"cursorMaxMode": true,
|
|
17142
17402
|
"supportsComputerUse": false,
|
|
@@ -17159,7 +17419,7 @@
|
|
|
17159
17419
|
"cacheRead": 0,
|
|
17160
17420
|
"cacheWrite": 0
|
|
17161
17421
|
},
|
|
17162
|
-
"contextWindow":
|
|
17422
|
+
"contextWindow": 1000000,
|
|
17163
17423
|
"maxTokens": 64000,
|
|
17164
17424
|
"cursorMaxMode": false,
|
|
17165
17425
|
"supportsComputerUse": false,
|
|
@@ -17182,7 +17442,7 @@
|
|
|
17182
17442
|
"cacheRead": 0,
|
|
17183
17443
|
"cacheWrite": 0
|
|
17184
17444
|
},
|
|
17185
|
-
"contextWindow":
|
|
17445
|
+
"contextWindow": 1000000,
|
|
17186
17446
|
"maxTokens": 64000,
|
|
17187
17447
|
"cursorMaxMode": true,
|
|
17188
17448
|
"supportsComputerUse": false,
|
|
@@ -17205,7 +17465,7 @@
|
|
|
17205
17465
|
"cacheRead": 0,
|
|
17206
17466
|
"cacheWrite": 0
|
|
17207
17467
|
},
|
|
17208
|
-
"contextWindow":
|
|
17468
|
+
"contextWindow": 1000000,
|
|
17209
17469
|
"maxTokens": 64000,
|
|
17210
17470
|
"cursorMaxMode": false,
|
|
17211
17471
|
"thinking": {
|
|
@@ -17244,7 +17504,7 @@
|
|
|
17244
17504
|
"cacheRead": 0,
|
|
17245
17505
|
"cacheWrite": 0
|
|
17246
17506
|
},
|
|
17247
|
-
"contextWindow":
|
|
17507
|
+
"contextWindow": 1000000,
|
|
17248
17508
|
"maxTokens": 64000,
|
|
17249
17509
|
"cursorMaxMode": false,
|
|
17250
17510
|
"thinking": {
|
|
@@ -17283,7 +17543,7 @@
|
|
|
17283
17543
|
"cacheRead": 0,
|
|
17284
17544
|
"cacheWrite": 0
|
|
17285
17545
|
},
|
|
17286
|
-
"contextWindow":
|
|
17546
|
+
"contextWindow": 1000000,
|
|
17287
17547
|
"maxTokens": 64000,
|
|
17288
17548
|
"cursorMaxMode": false,
|
|
17289
17549
|
"thinking": {
|
|
@@ -17322,7 +17582,7 @@
|
|
|
17322
17582
|
"cacheRead": 0,
|
|
17323
17583
|
"cacheWrite": 0
|
|
17324
17584
|
},
|
|
17325
|
-
"contextWindow":
|
|
17585
|
+
"contextWindow": 1000000,
|
|
17326
17586
|
"maxTokens": 64000,
|
|
17327
17587
|
"cursorMaxMode": false,
|
|
17328
17588
|
"thinking": {
|
|
@@ -17361,7 +17621,7 @@
|
|
|
17361
17621
|
"cacheRead": 0,
|
|
17362
17622
|
"cacheWrite": 0
|
|
17363
17623
|
},
|
|
17364
|
-
"contextWindow":
|
|
17624
|
+
"contextWindow": 1000000,
|
|
17365
17625
|
"maxTokens": 64000,
|
|
17366
17626
|
"cursorMaxMode": false,
|
|
17367
17627
|
"thinking": {
|
|
@@ -17859,7 +18119,7 @@
|
|
|
17859
18119
|
"cacheRead": 0,
|
|
17860
18120
|
"cacheWrite": 0
|
|
17861
18121
|
},
|
|
17862
|
-
"contextWindow":
|
|
18122
|
+
"contextWindow": 1000000,
|
|
17863
18123
|
"maxTokens": 64000,
|
|
17864
18124
|
"cursorMaxMode": false,
|
|
17865
18125
|
"supportsComputerUse": false,
|
|
@@ -17881,7 +18141,7 @@
|
|
|
17881
18141
|
"cacheRead": 0,
|
|
17882
18142
|
"cacheWrite": 0
|
|
17883
18143
|
},
|
|
17884
|
-
"contextWindow":
|
|
18144
|
+
"contextWindow": 1000000,
|
|
17885
18145
|
"maxTokens": 64000,
|
|
17886
18146
|
"cursorMaxMode": false,
|
|
17887
18147
|
"supportsComputerUse": false,
|
|
@@ -18691,7 +18951,7 @@
|
|
|
18691
18951
|
"cacheRead": 0,
|
|
18692
18952
|
"cacheWrite": 0
|
|
18693
18953
|
},
|
|
18694
|
-
"contextWindow":
|
|
18954
|
+
"contextWindow": 1000000,
|
|
18695
18955
|
"maxTokens": 64000,
|
|
18696
18956
|
"supportsComputerUse": false,
|
|
18697
18957
|
"cursorMaxMode": false,
|
|
@@ -18735,7 +18995,7 @@
|
|
|
18735
18995
|
"cacheRead": 0,
|
|
18736
18996
|
"cacheWrite": 0
|
|
18737
18997
|
},
|
|
18738
|
-
"contextWindow":
|
|
18998
|
+
"contextWindow": 1000000,
|
|
18739
18999
|
"maxTokens": 64000,
|
|
18740
19000
|
"supportsComputerUse": false,
|
|
18741
19001
|
"cursorMaxMode": false,
|
|
@@ -18757,7 +19017,7 @@
|
|
|
18757
19017
|
"cacheRead": 0,
|
|
18758
19018
|
"cacheWrite": 0
|
|
18759
19019
|
},
|
|
18760
|
-
"contextWindow":
|
|
19020
|
+
"contextWindow": 1000000,
|
|
18761
19021
|
"maxTokens": 64000,
|
|
18762
19022
|
"supportsComputerUse": false,
|
|
18763
19023
|
"cursorMaxMode": false,
|
|
@@ -19031,7 +19291,7 @@
|
|
|
19031
19291
|
"cacheRead": 0,
|
|
19032
19292
|
"cacheWrite": 0
|
|
19033
19293
|
},
|
|
19034
|
-
"contextWindow":
|
|
19294
|
+
"contextWindow": 1000000,
|
|
19035
19295
|
"maxTokens": 64000,
|
|
19036
19296
|
"supportsComputerUse": false,
|
|
19037
19297
|
"cursorMaxMode": false,
|
|
@@ -19076,7 +19336,7 @@
|
|
|
19076
19336
|
"cacheRead": 0,
|
|
19077
19337
|
"cacheWrite": 0
|
|
19078
19338
|
},
|
|
19079
|
-
"contextWindow":
|
|
19339
|
+
"contextWindow": 1000000,
|
|
19080
19340
|
"maxTokens": 64000,
|
|
19081
19341
|
"cursorMaxMode": false,
|
|
19082
19342
|
"supportsComputerUse": false,
|
|
@@ -19124,7 +19384,7 @@
|
|
|
19124
19384
|
"cacheRead": 0,
|
|
19125
19385
|
"cacheWrite": 0
|
|
19126
19386
|
},
|
|
19127
|
-
"contextWindow":
|
|
19387
|
+
"contextWindow": 1000000,
|
|
19128
19388
|
"maxTokens": 64000,
|
|
19129
19389
|
"cursorMaxMode": false,
|
|
19130
19390
|
"supportsComputerUse": false,
|
|
@@ -19172,7 +19432,7 @@
|
|
|
19172
19432
|
"cacheRead": 0,
|
|
19173
19433
|
"cacheWrite": 0
|
|
19174
19434
|
},
|
|
19175
|
-
"contextWindow":
|
|
19435
|
+
"contextWindow": 1000000,
|
|
19176
19436
|
"maxTokens": 64000,
|
|
19177
19437
|
"cursorMaxMode": false,
|
|
19178
19438
|
"supportsComputerUse": false,
|
|
@@ -19220,7 +19480,7 @@
|
|
|
19220
19480
|
"cacheRead": 0,
|
|
19221
19481
|
"cacheWrite": 0
|
|
19222
19482
|
},
|
|
19223
|
-
"contextWindow":
|
|
19483
|
+
"contextWindow": 1000000,
|
|
19224
19484
|
"maxTokens": 64000,
|
|
19225
19485
|
"cursorMaxMode": false,
|
|
19226
19486
|
"supportsComputerUse": false,
|
|
@@ -19268,7 +19528,7 @@
|
|
|
19268
19528
|
"cacheRead": 0,
|
|
19269
19529
|
"cacheWrite": 0
|
|
19270
19530
|
},
|
|
19271
|
-
"contextWindow":
|
|
19531
|
+
"contextWindow": 1000000,
|
|
19272
19532
|
"maxTokens": 64000,
|
|
19273
19533
|
"cursorMaxMode": false,
|
|
19274
19534
|
"supportsComputerUse": false,
|
|
@@ -19316,7 +19576,7 @@
|
|
|
19316
19576
|
"cacheRead": 0,
|
|
19317
19577
|
"cacheWrite": 0
|
|
19318
19578
|
},
|
|
19319
|
-
"contextWindow":
|
|
19579
|
+
"contextWindow": 1000000,
|
|
19320
19580
|
"maxTokens": 64000,
|
|
19321
19581
|
"cursorMaxMode": false,
|
|
19322
19582
|
"supportsComputerUse": false,
|
|
@@ -19362,7 +19622,7 @@
|
|
|
19362
19622
|
"cacheRead": 0,
|
|
19363
19623
|
"cacheWrite": 0
|
|
19364
19624
|
},
|
|
19365
|
-
"contextWindow":
|
|
19625
|
+
"contextWindow": 1000000,
|
|
19366
19626
|
"maxTokens": 64000,
|
|
19367
19627
|
"cursorMaxMode": false,
|
|
19368
19628
|
"supportsComputerUse": false,
|
|
@@ -19408,7 +19668,7 @@
|
|
|
19408
19668
|
"cacheRead": 0,
|
|
19409
19669
|
"cacheWrite": 0
|
|
19410
19670
|
},
|
|
19411
|
-
"contextWindow":
|
|
19671
|
+
"contextWindow": 1000000,
|
|
19412
19672
|
"maxTokens": 64000,
|
|
19413
19673
|
"cursorMaxMode": false,
|
|
19414
19674
|
"supportsComputerUse": false,
|
|
@@ -19454,7 +19714,7 @@
|
|
|
19454
19714
|
"cacheRead": 0,
|
|
19455
19715
|
"cacheWrite": 0
|
|
19456
19716
|
},
|
|
19457
|
-
"contextWindow":
|
|
19717
|
+
"contextWindow": 1000000,
|
|
19458
19718
|
"maxTokens": 64000,
|
|
19459
19719
|
"cursorMaxMode": false,
|
|
19460
19720
|
"supportsComputerUse": false,
|
|
@@ -19500,7 +19760,7 @@
|
|
|
19500
19760
|
"cacheRead": 0,
|
|
19501
19761
|
"cacheWrite": 0
|
|
19502
19762
|
},
|
|
19503
|
-
"contextWindow":
|
|
19763
|
+
"contextWindow": 1000000,
|
|
19504
19764
|
"maxTokens": 64000,
|
|
19505
19765
|
"cursorMaxMode": false,
|
|
19506
19766
|
"supportsComputerUse": false,
|
|
@@ -19546,7 +19806,7 @@
|
|
|
19546
19806
|
"cacheRead": 0,
|
|
19547
19807
|
"cacheWrite": 0
|
|
19548
19808
|
},
|
|
19549
|
-
"contextWindow":
|
|
19809
|
+
"contextWindow": 1000000,
|
|
19550
19810
|
"maxTokens": 64000,
|
|
19551
19811
|
"cursorMaxMode": false,
|
|
19552
19812
|
"supportsComputerUse": false,
|
|
@@ -19592,7 +19852,7 @@
|
|
|
19592
19852
|
"cacheRead": 0,
|
|
19593
19853
|
"cacheWrite": 0
|
|
19594
19854
|
},
|
|
19595
|
-
"contextWindow":
|
|
19855
|
+
"contextWindow": 1000000,
|
|
19596
19856
|
"maxTokens": 64000,
|
|
19597
19857
|
"cursorMaxMode": false,
|
|
19598
19858
|
"supportsComputerUse": false,
|
|
@@ -19638,7 +19898,7 @@
|
|
|
19638
19898
|
"cacheRead": 0,
|
|
19639
19899
|
"cacheWrite": 0
|
|
19640
19900
|
},
|
|
19641
|
-
"contextWindow":
|
|
19901
|
+
"contextWindow": 1000000,
|
|
19642
19902
|
"maxTokens": 64000,
|
|
19643
19903
|
"cursorMaxMode": false,
|
|
19644
19904
|
"supportsComputerUse": false,
|
|
@@ -19684,7 +19944,7 @@
|
|
|
19684
19944
|
"cacheRead": 0,
|
|
19685
19945
|
"cacheWrite": 0
|
|
19686
19946
|
},
|
|
19687
|
-
"contextWindow":
|
|
19947
|
+
"contextWindow": 1000000,
|
|
19688
19948
|
"maxTokens": 64000,
|
|
19689
19949
|
"cursorMaxMode": false,
|
|
19690
19950
|
"supportsComputerUse": false,
|
|
@@ -19730,7 +19990,7 @@
|
|
|
19730
19990
|
"cacheRead": 0,
|
|
19731
19991
|
"cacheWrite": 0
|
|
19732
19992
|
},
|
|
19733
|
-
"contextWindow":
|
|
19993
|
+
"contextWindow": 1000000,
|
|
19734
19994
|
"maxTokens": 64000,
|
|
19735
19995
|
"cursorMaxMode": false,
|
|
19736
19996
|
"supportsComputerUse": false,
|
|
@@ -19776,7 +20036,7 @@
|
|
|
19776
20036
|
"cacheRead": 0,
|
|
19777
20037
|
"cacheWrite": 0
|
|
19778
20038
|
},
|
|
19779
|
-
"contextWindow":
|
|
20039
|
+
"contextWindow": 1000000,
|
|
19780
20040
|
"maxTokens": 64000,
|
|
19781
20041
|
"cursorMaxMode": false,
|
|
19782
20042
|
"supportsComputerUse": false,
|
|
@@ -19822,7 +20082,7 @@
|
|
|
19822
20082
|
"cacheRead": 0,
|
|
19823
20083
|
"cacheWrite": 0
|
|
19824
20084
|
},
|
|
19825
|
-
"contextWindow":
|
|
20085
|
+
"contextWindow": 1000000,
|
|
19826
20086
|
"maxTokens": 64000,
|
|
19827
20087
|
"cursorMaxMode": false,
|
|
19828
20088
|
"supportsComputerUse": false,
|
|
@@ -19868,7 +20128,7 @@
|
|
|
19868
20128
|
"cacheRead": 0,
|
|
19869
20129
|
"cacheWrite": 0
|
|
19870
20130
|
},
|
|
19871
|
-
"contextWindow":
|
|
20131
|
+
"contextWindow": 1000000,
|
|
19872
20132
|
"maxTokens": 64000,
|
|
19873
20133
|
"cursorMaxMode": false,
|
|
19874
20134
|
"supportsComputerUse": false,
|
|
@@ -19914,7 +20174,7 @@
|
|
|
19914
20174
|
"cacheRead": 0,
|
|
19915
20175
|
"cacheWrite": 0
|
|
19916
20176
|
},
|
|
19917
|
-
"contextWindow":
|
|
20177
|
+
"contextWindow": 1000000,
|
|
19918
20178
|
"maxTokens": 64000,
|
|
19919
20179
|
"cursorMaxMode": false,
|
|
19920
20180
|
"supportsComputerUse": false,
|
|
@@ -19960,7 +20220,7 @@
|
|
|
19960
20220
|
"cacheRead": 0,
|
|
19961
20221
|
"cacheWrite": 0
|
|
19962
20222
|
},
|
|
19963
|
-
"contextWindow":
|
|
20223
|
+
"contextWindow": 1000000,
|
|
19964
20224
|
"maxTokens": 64000,
|
|
19965
20225
|
"cursorMaxMode": false,
|
|
19966
20226
|
"supportsComputerUse": false,
|
|
@@ -20006,7 +20266,7 @@
|
|
|
20006
20266
|
"cacheRead": 0,
|
|
20007
20267
|
"cacheWrite": 0
|
|
20008
20268
|
},
|
|
20009
|
-
"contextWindow":
|
|
20269
|
+
"contextWindow": 1000000,
|
|
20010
20270
|
"maxTokens": 64000,
|
|
20011
20271
|
"cursorMaxMode": false,
|
|
20012
20272
|
"supportsComputerUse": false,
|
|
@@ -20052,7 +20312,7 @@
|
|
|
20052
20312
|
"cacheRead": 0,
|
|
20053
20313
|
"cacheWrite": 0
|
|
20054
20314
|
},
|
|
20055
|
-
"contextWindow":
|
|
20315
|
+
"contextWindow": 1000000,
|
|
20056
20316
|
"maxTokens": 64000,
|
|
20057
20317
|
"cursorMaxMode": false,
|
|
20058
20318
|
"supportsComputerUse": false,
|
|
@@ -20098,7 +20358,7 @@
|
|
|
20098
20358
|
"cacheRead": 0,
|
|
20099
20359
|
"cacheWrite": 0
|
|
20100
20360
|
},
|
|
20101
|
-
"contextWindow":
|
|
20361
|
+
"contextWindow": 1000000,
|
|
20102
20362
|
"maxTokens": 64000,
|
|
20103
20363
|
"cursorMaxMode": false,
|
|
20104
20364
|
"supportsComputerUse": false,
|
|
@@ -20236,7 +20496,7 @@
|
|
|
20236
20496
|
"cacheRead": 0,
|
|
20237
20497
|
"cacheWrite": 0
|
|
20238
20498
|
},
|
|
20239
|
-
"contextWindow":
|
|
20499
|
+
"contextWindow": 1000000,
|
|
20240
20500
|
"maxTokens": 64000,
|
|
20241
20501
|
"cursorMaxMode": false,
|
|
20242
20502
|
"supportsComputerUse": false,
|
|
@@ -20268,7 +20528,7 @@
|
|
|
20268
20528
|
"cacheRead": 0,
|
|
20269
20529
|
"cacheWrite": 0
|
|
20270
20530
|
},
|
|
20271
|
-
"contextWindow":
|
|
20531
|
+
"contextWindow": 1000000,
|
|
20272
20532
|
"maxTokens": 64000,
|
|
20273
20533
|
"cursorMaxMode": false,
|
|
20274
20534
|
"supportsComputerUse": false,
|
|
@@ -20300,7 +20560,7 @@
|
|
|
20300
20560
|
"cacheRead": 0,
|
|
20301
20561
|
"cacheWrite": 0
|
|
20302
20562
|
},
|
|
20303
|
-
"contextWindow":
|
|
20563
|
+
"contextWindow": 1000000,
|
|
20304
20564
|
"maxTokens": 64000,
|
|
20305
20565
|
"cursorMaxMode": false,
|
|
20306
20566
|
"supportsComputerUse": false,
|
|
@@ -20487,6 +20747,33 @@
|
|
|
20487
20747
|
"requiresAssistantContentForToolCalls": true
|
|
20488
20748
|
}
|
|
20489
20749
|
},
|
|
20750
|
+
"deepseek-v4-flash-0731": {
|
|
20751
|
+
"id": "deepseek-v4-flash-0731",
|
|
20752
|
+
"name": "DeepSeek V4 Flash 0731",
|
|
20753
|
+
"api": "openai-completions",
|
|
20754
|
+
"provider": "fireworks",
|
|
20755
|
+
"baseUrl": "https://api.fireworks.ai/inference/v1",
|
|
20756
|
+
"reasoning": true,
|
|
20757
|
+
"input": [
|
|
20758
|
+
"text"
|
|
20759
|
+
],
|
|
20760
|
+
"cost": {
|
|
20761
|
+
"input": 0.175,
|
|
20762
|
+
"output": 0.35,
|
|
20763
|
+
"cacheRead": 0.035,
|
|
20764
|
+
"cacheWrite": 0
|
|
20765
|
+
},
|
|
20766
|
+
"contextWindow": 1048576,
|
|
20767
|
+
"maxTokens": 32768,
|
|
20768
|
+
"thinking": {
|
|
20769
|
+
"mode": "effort",
|
|
20770
|
+
"efforts": [
|
|
20771
|
+
"high",
|
|
20772
|
+
"max"
|
|
20773
|
+
]
|
|
20774
|
+
},
|
|
20775
|
+
"supportsComputerUse": false
|
|
20776
|
+
},
|
|
20490
20777
|
"deepseek-v4-pro": {
|
|
20491
20778
|
"id": "deepseek-v4-pro",
|
|
20492
20779
|
"name": "deepseek-v4-pro",
|
|
@@ -24265,10 +24552,10 @@
|
|
|
24265
24552
|
"image"
|
|
24266
24553
|
],
|
|
24267
24554
|
"cost": {
|
|
24268
|
-
"input":
|
|
24269
|
-
"output":
|
|
24270
|
-
"cacheRead": 0,
|
|
24271
|
-
"cacheWrite":
|
|
24555
|
+
"input": 5,
|
|
24556
|
+
"output": 25,
|
|
24557
|
+
"cacheRead": 0.5,
|
|
24558
|
+
"cacheWrite": 6.25
|
|
24272
24559
|
},
|
|
24273
24560
|
"contextWindow": 200000,
|
|
24274
24561
|
"maxTokens": 64000,
|
|
@@ -24302,10 +24589,10 @@
|
|
|
24302
24589
|
"image"
|
|
24303
24590
|
],
|
|
24304
24591
|
"cost": {
|
|
24305
|
-
"input":
|
|
24306
|
-
"output":
|
|
24307
|
-
"cacheRead": 0,
|
|
24308
|
-
"cacheWrite":
|
|
24592
|
+
"input": 5,
|
|
24593
|
+
"output": 25,
|
|
24594
|
+
"cacheRead": 0.5,
|
|
24595
|
+
"cacheWrite": 6.25
|
|
24309
24596
|
},
|
|
24310
24597
|
"contextWindow": 250000,
|
|
24311
24598
|
"maxTokens": 64000,
|
|
@@ -24332,10 +24619,10 @@
|
|
|
24332
24619
|
"image"
|
|
24333
24620
|
],
|
|
24334
24621
|
"cost": {
|
|
24335
|
-
"input":
|
|
24336
|
-
"output":
|
|
24337
|
-
"cacheRead": 0,
|
|
24338
|
-
"cacheWrite":
|
|
24622
|
+
"input": 3,
|
|
24623
|
+
"output": 15,
|
|
24624
|
+
"cacheRead": 0.3,
|
|
24625
|
+
"cacheWrite": 3.75
|
|
24339
24626
|
},
|
|
24340
24627
|
"contextWindow": 1000000,
|
|
24341
24628
|
"maxTokens": 64000,
|
|
@@ -24369,10 +24656,10 @@
|
|
|
24369
24656
|
"image"
|
|
24370
24657
|
],
|
|
24371
24658
|
"cost": {
|
|
24372
|
-
"input":
|
|
24373
|
-
"output":
|
|
24374
|
-
"cacheRead": 0,
|
|
24375
|
-
"cacheWrite":
|
|
24659
|
+
"input": 3,
|
|
24660
|
+
"output": 15,
|
|
24661
|
+
"cacheRead": 0.3,
|
|
24662
|
+
"cacheWrite": 3.75
|
|
24376
24663
|
},
|
|
24377
24664
|
"contextWindow": 250000,
|
|
24378
24665
|
"maxTokens": 64000,
|
|
@@ -24398,9 +24685,9 @@
|
|
|
24398
24685
|
"image"
|
|
24399
24686
|
],
|
|
24400
24687
|
"cost": {
|
|
24401
|
-
"input": 0,
|
|
24402
|
-
"output":
|
|
24403
|
-
"cacheRead": 0,
|
|
24688
|
+
"input": 0.3,
|
|
24689
|
+
"output": 2.5,
|
|
24690
|
+
"cacheRead": 0.03,
|
|
24404
24691
|
"cacheWrite": 0
|
|
24405
24692
|
},
|
|
24406
24693
|
"contextWindow": 1048576,
|
|
@@ -24434,9 +24721,9 @@
|
|
|
24434
24721
|
"image"
|
|
24435
24722
|
],
|
|
24436
24723
|
"cost": {
|
|
24437
|
-
"input": 0,
|
|
24438
|
-
"output": 0,
|
|
24439
|
-
"cacheRead": 0,
|
|
24724
|
+
"input": 0.1,
|
|
24725
|
+
"output": 0.4,
|
|
24726
|
+
"cacheRead": 0.01,
|
|
24440
24727
|
"cacheWrite": 0
|
|
24441
24728
|
},
|
|
24442
24729
|
"contextWindow": 1048576,
|
|
@@ -24463,9 +24750,9 @@
|
|
|
24463
24750
|
"image"
|
|
24464
24751
|
],
|
|
24465
24752
|
"cost": {
|
|
24466
|
-
"input":
|
|
24467
|
-
"output":
|
|
24468
|
-
"cacheRead": 0,
|
|
24753
|
+
"input": 1.25,
|
|
24754
|
+
"output": 10,
|
|
24755
|
+
"cacheRead": 0.125,
|
|
24469
24756
|
"cacheWrite": 0
|
|
24470
24757
|
},
|
|
24471
24758
|
"contextWindow": 1048576,
|
|
@@ -24493,9 +24780,9 @@
|
|
|
24493
24780
|
"image"
|
|
24494
24781
|
],
|
|
24495
24782
|
"cost": {
|
|
24496
|
-
"input": 0,
|
|
24497
|
-
"output":
|
|
24498
|
-
"cacheRead": 0,
|
|
24783
|
+
"input": 0.5,
|
|
24784
|
+
"output": 3,
|
|
24785
|
+
"cacheRead": 0.05,
|
|
24499
24786
|
"cacheWrite": 0
|
|
24500
24787
|
},
|
|
24501
24788
|
"contextWindow": 1048576,
|
|
@@ -24537,9 +24824,9 @@
|
|
|
24537
24824
|
"image"
|
|
24538
24825
|
],
|
|
24539
24826
|
"cost": {
|
|
24540
|
-
"input":
|
|
24541
|
-
"output":
|
|
24542
|
-
"cacheRead": 0,
|
|
24827
|
+
"input": 2,
|
|
24828
|
+
"output": 12,
|
|
24829
|
+
"cacheRead": 0.2,
|
|
24543
24830
|
"cacheWrite": 0
|
|
24544
24831
|
},
|
|
24545
24832
|
"contextWindow": 1048576,
|
|
@@ -24590,9 +24877,9 @@
|
|
|
24590
24877
|
"image"
|
|
24591
24878
|
],
|
|
24592
24879
|
"cost": {
|
|
24593
|
-
"input": 0,
|
|
24594
|
-
"output":
|
|
24595
|
-
"cacheRead": 0,
|
|
24880
|
+
"input": 0.25,
|
|
24881
|
+
"output": 1.5,
|
|
24882
|
+
"cacheRead": 0.025,
|
|
24596
24883
|
"cacheWrite": 0
|
|
24597
24884
|
},
|
|
24598
24885
|
"contextWindow": 1048576,
|
|
@@ -24620,9 +24907,9 @@
|
|
|
24620
24907
|
"image"
|
|
24621
24908
|
],
|
|
24622
24909
|
"cost": {
|
|
24623
|
-
"input":
|
|
24624
|
-
"output":
|
|
24625
|
-
"cacheRead": 0,
|
|
24910
|
+
"input": 2,
|
|
24911
|
+
"output": 12,
|
|
24912
|
+
"cacheRead": 0.2,
|
|
24626
24913
|
"cacheWrite": 0
|
|
24627
24914
|
},
|
|
24628
24915
|
"contextWindow": 1048576,
|
|
@@ -24658,9 +24945,9 @@
|
|
|
24658
24945
|
"image"
|
|
24659
24946
|
],
|
|
24660
24947
|
"cost": {
|
|
24661
|
-
"input":
|
|
24662
|
-
"output":
|
|
24663
|
-
"cacheRead": 0,
|
|
24948
|
+
"input": 1.5,
|
|
24949
|
+
"output": 9,
|
|
24950
|
+
"cacheRead": 0.15,
|
|
24664
24951
|
"cacheWrite": 0
|
|
24665
24952
|
},
|
|
24666
24953
|
"contextWindow": 1048576,
|
|
@@ -24702,9 +24989,9 @@
|
|
|
24702
24989
|
"image"
|
|
24703
24990
|
],
|
|
24704
24991
|
"cost": {
|
|
24705
|
-
"input":
|
|
24706
|
-
"output":
|
|
24707
|
-
"cacheRead": 0,
|
|
24992
|
+
"input": 1.5,
|
|
24993
|
+
"output": 7.5,
|
|
24994
|
+
"cacheRead": 0.15,
|
|
24708
24995
|
"cacheWrite": 0
|
|
24709
24996
|
},
|
|
24710
24997
|
"contextWindow": 1048576,
|
|
@@ -27683,6 +27970,26 @@
|
|
|
27683
27970
|
]
|
|
27684
27971
|
}
|
|
27685
27972
|
},
|
|
27973
|
+
"~deepseek/deepseek-v4-flash-latest": {
|
|
27974
|
+
"id": "~deepseek/deepseek-v4-flash-latest",
|
|
27975
|
+
"name": "DeepSeek V4 Flash Latest",
|
|
27976
|
+
"api": "openai-completions",
|
|
27977
|
+
"provider": "kilo",
|
|
27978
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
27979
|
+
"reasoning": false,
|
|
27980
|
+
"input": [
|
|
27981
|
+
"text"
|
|
27982
|
+
],
|
|
27983
|
+
"cost": {
|
|
27984
|
+
"input": 0,
|
|
27985
|
+
"output": 0,
|
|
27986
|
+
"cacheRead": 0,
|
|
27987
|
+
"cacheWrite": 0
|
|
27988
|
+
},
|
|
27989
|
+
"contextWindow": 1048576,
|
|
27990
|
+
"maxTokens": 1048576,
|
|
27991
|
+
"supportsComputerUse": false
|
|
27992
|
+
},
|
|
27686
27993
|
"~google/gemini-flash-latest": {
|
|
27687
27994
|
"id": "~google/gemini-flash-latest",
|
|
27688
27995
|
"name": "Gemini Flash Latest",
|
|
@@ -39715,8 +40022,8 @@
|
|
|
39715
40022
|
"cost": {
|
|
39716
40023
|
"input": 0.3,
|
|
39717
40024
|
"output": 1.2,
|
|
39718
|
-
"cacheRead": 0,
|
|
39719
|
-
"cacheWrite": 0
|
|
40025
|
+
"cacheRead": 0.03,
|
|
40026
|
+
"cacheWrite": 0.375
|
|
39720
40027
|
},
|
|
39721
40028
|
"contextWindow": 204800,
|
|
39722
40029
|
"maxTokens": 131072,
|
|
@@ -39981,8 +40288,8 @@
|
|
|
39981
40288
|
"cost": {
|
|
39982
40289
|
"input": 0.3,
|
|
39983
40290
|
"output": 1.2,
|
|
39984
|
-
"cacheRead": 0,
|
|
39985
|
-
"cacheWrite": 0
|
|
40291
|
+
"cacheRead": 0.03,
|
|
40292
|
+
"cacheWrite": 0.375
|
|
39986
40293
|
},
|
|
39987
40294
|
"contextWindow": 204800,
|
|
39988
40295
|
"maxTokens": 131072,
|
|
@@ -45151,7 +45458,7 @@
|
|
|
45151
45458
|
"api": "openai-completions",
|
|
45152
45459
|
"provider": "nanogpt",
|
|
45153
45460
|
"baseUrl": "https://nano-gpt.com/api/v1",
|
|
45154
|
-
"reasoning":
|
|
45461
|
+
"reasoning": true,
|
|
45155
45462
|
"input": [
|
|
45156
45463
|
"text"
|
|
45157
45464
|
],
|
|
@@ -45164,7 +45471,14 @@
|
|
|
45164
45471
|
"contextWindow": 1048576,
|
|
45165
45472
|
"maxTokens": 384000,
|
|
45166
45473
|
"supportsComputerUse": false,
|
|
45167
|
-
"supportsComputerUseConfig": false
|
|
45474
|
+
"supportsComputerUseConfig": false,
|
|
45475
|
+
"thinking": {
|
|
45476
|
+
"mode": "effort",
|
|
45477
|
+
"efforts": [
|
|
45478
|
+
"high",
|
|
45479
|
+
"max"
|
|
45480
|
+
]
|
|
45481
|
+
}
|
|
45168
45482
|
},
|
|
45169
45483
|
"deepseek/deepseek-v4-flash:thinking": {
|
|
45170
45484
|
"id": "deepseek/deepseek-v4-flash:thinking",
|
|
@@ -61608,6 +61922,35 @@
|
|
|
61608
61922
|
"supportsComputerUse": false,
|
|
61609
61923
|
"supportsComputerUseConfig": false
|
|
61610
61924
|
},
|
|
61925
|
+
"deepseek/deepseek-v4-flash-0731": {
|
|
61926
|
+
"id": "deepseek/deepseek-v4-flash-0731",
|
|
61927
|
+
"name": "Deepseek V4 Flash 0731",
|
|
61928
|
+
"api": "openai-completions",
|
|
61929
|
+
"provider": "novita",
|
|
61930
|
+
"baseUrl": "https://api.novita.ai/openai/v1",
|
|
61931
|
+
"reasoning": true,
|
|
61932
|
+
"input": [
|
|
61933
|
+
"text"
|
|
61934
|
+
],
|
|
61935
|
+
"cost": {
|
|
61936
|
+
"input": 0.14,
|
|
61937
|
+
"output": 0.28,
|
|
61938
|
+
"cacheRead": 0.028,
|
|
61939
|
+
"cacheWrite": 0
|
|
61940
|
+
},
|
|
61941
|
+
"contextWindow": 1048576,
|
|
61942
|
+
"maxTokens": 393216,
|
|
61943
|
+
"supportsTools": true,
|
|
61944
|
+
"thinking": {
|
|
61945
|
+
"mode": "effort",
|
|
61946
|
+
"efforts": [
|
|
61947
|
+
"high",
|
|
61948
|
+
"max"
|
|
61949
|
+
]
|
|
61950
|
+
},
|
|
61951
|
+
"supportsComputerUse": false,
|
|
61952
|
+
"supportsComputerUseConfig": false
|
|
61953
|
+
},
|
|
61611
61954
|
"deepseek/deepseek-v4-pro": {
|
|
61612
61955
|
"id": "deepseek/deepseek-v4-pro",
|
|
61613
61956
|
"name": "DeepSeek V4 Pro",
|
|
@@ -67781,7 +68124,7 @@
|
|
|
67781
68124
|
"cacheWrite": 0
|
|
67782
68125
|
},
|
|
67783
68126
|
"contextWindow": 1048576,
|
|
67784
|
-
"maxTokens":
|
|
68127
|
+
"maxTokens": 65536,
|
|
67785
68128
|
"omitMaxOutputTokens": true,
|
|
67786
68129
|
"thinking": {
|
|
67787
68130
|
"mode": "effort",
|
|
@@ -67794,6 +68137,37 @@
|
|
|
67794
68137
|
]
|
|
67795
68138
|
}
|
|
67796
68139
|
},
|
|
68140
|
+
"deepseek-v4-flash:0731": {
|
|
68141
|
+
"id": "deepseek-v4-flash:0731",
|
|
68142
|
+
"name": "deepseek-v4-flash:0731",
|
|
68143
|
+
"api": "ollama-chat",
|
|
68144
|
+
"provider": "ollama-cloud",
|
|
68145
|
+
"baseUrl": "https://ollama.com",
|
|
68146
|
+
"reasoning": true,
|
|
68147
|
+
"thinking": {
|
|
68148
|
+
"mode": "effort",
|
|
68149
|
+
"efforts": [
|
|
68150
|
+
"minimal",
|
|
68151
|
+
"low",
|
|
68152
|
+
"medium",
|
|
68153
|
+
"high",
|
|
68154
|
+
"xhigh"
|
|
68155
|
+
]
|
|
68156
|
+
},
|
|
68157
|
+
"input": [
|
|
68158
|
+
"text"
|
|
68159
|
+
],
|
|
68160
|
+
"cost": {
|
|
68161
|
+
"input": 0,
|
|
68162
|
+
"output": 0,
|
|
68163
|
+
"cacheRead": 0,
|
|
68164
|
+
"cacheWrite": 0
|
|
68165
|
+
},
|
|
68166
|
+
"contextWindow": 1048576,
|
|
68167
|
+
"maxTokens": 65536,
|
|
68168
|
+
"omitMaxOutputTokens": true,
|
|
68169
|
+
"supportsComputerUse": false
|
|
68170
|
+
},
|
|
67797
68171
|
"deepseek-v4-pro": {
|
|
67798
68172
|
"id": "deepseek-v4-pro",
|
|
67799
68173
|
"name": "deepseek-v4-pro",
|
|
@@ -67811,7 +68185,7 @@
|
|
|
67811
68185
|
"cacheWrite": 0
|
|
67812
68186
|
},
|
|
67813
68187
|
"contextWindow": 1048576,
|
|
67814
|
-
"maxTokens":
|
|
68188
|
+
"maxTokens": 65536,
|
|
67815
68189
|
"omitMaxOutputTokens": true,
|
|
67816
68190
|
"thinking": {
|
|
67817
68191
|
"mode": "effort",
|
|
@@ -73825,6 +74199,33 @@
|
|
|
73825
74199
|
"supportsComputerUse": false,
|
|
73826
74200
|
"supportsComputerUseConfig": false
|
|
73827
74201
|
},
|
|
74202
|
+
"~deepseek/deepseek-v4-flash-latest": {
|
|
74203
|
+
"id": "~deepseek/deepseek-v4-flash-latest",
|
|
74204
|
+
"name": "DeepSeek V4 Flash Latest",
|
|
74205
|
+
"api": "openrouter",
|
|
74206
|
+
"provider": "openrouter",
|
|
74207
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
74208
|
+
"reasoning": true,
|
|
74209
|
+
"input": [
|
|
74210
|
+
"text"
|
|
74211
|
+
],
|
|
74212
|
+
"cost": {
|
|
74213
|
+
"input": 0.09,
|
|
74214
|
+
"output": 0.18,
|
|
74215
|
+
"cacheRead": 0.018,
|
|
74216
|
+
"cacheWrite": 0
|
|
74217
|
+
},
|
|
74218
|
+
"contextWindow": 1048576,
|
|
74219
|
+
"maxTokens": 65536,
|
|
74220
|
+
"thinking": {
|
|
74221
|
+
"mode": "effort",
|
|
74222
|
+
"efforts": [
|
|
74223
|
+
"high"
|
|
74224
|
+
]
|
|
74225
|
+
},
|
|
74226
|
+
"supportsComputerUse": false,
|
|
74227
|
+
"supportsComputerUseConfig": false
|
|
74228
|
+
},
|
|
73828
74229
|
"~google/gemini-flash-latest": {
|
|
73829
74230
|
"id": "~google/gemini-flash-latest",
|
|
73830
74231
|
"name": "Gemini Flash Latest",
|
|
@@ -76021,17 +76422,19 @@
|
|
|
76021
76422
|
"text"
|
|
76022
76423
|
],
|
|
76023
76424
|
"cost": {
|
|
76024
|
-
"input": 0.
|
|
76025
|
-
"output": 0.
|
|
76026
|
-
"cacheRead": 0.
|
|
76425
|
+
"input": 0.09,
|
|
76426
|
+
"output": 0.18,
|
|
76427
|
+
"cacheRead": 0.018,
|
|
76027
76428
|
"cacheWrite": 0
|
|
76028
76429
|
},
|
|
76029
76430
|
"contextWindow": 1048576,
|
|
76030
|
-
"maxTokens":
|
|
76431
|
+
"maxTokens": 65536,
|
|
76031
76432
|
"thinking": {
|
|
76032
76433
|
"mode": "effort",
|
|
76033
76434
|
"efforts": [
|
|
76034
|
-
"
|
|
76435
|
+
"low",
|
|
76436
|
+
"high",
|
|
76437
|
+
"max"
|
|
76035
76438
|
]
|
|
76036
76439
|
},
|
|
76037
76440
|
"supportsComputerUse": false,
|
|
@@ -78744,9 +79147,9 @@
|
|
|
78744
79147
|
"image"
|
|
78745
79148
|
],
|
|
78746
79149
|
"cost": {
|
|
78747
|
-
"input": 0.
|
|
78748
|
-
"output":
|
|
78749
|
-
"cacheRead": 0.
|
|
79150
|
+
"input": 0.6,
|
|
79151
|
+
"output": 3.41,
|
|
79152
|
+
"cacheRead": 0.19999999999999998,
|
|
78750
79153
|
"cacheWrite": 0
|
|
78751
79154
|
},
|
|
78752
79155
|
"contextWindow": 262144,
|
|
@@ -81159,7 +81562,7 @@
|
|
|
81159
81562
|
],
|
|
81160
81563
|
"cost": {
|
|
81161
81564
|
"input": 0.03,
|
|
81162
|
-
"output": 0.
|
|
81565
|
+
"output": 0.13,
|
|
81163
81566
|
"cacheRead": 0.03,
|
|
81164
81567
|
"cacheWrite": 0
|
|
81165
81568
|
},
|
|
@@ -82543,12 +82946,12 @@
|
|
|
82543
82946
|
],
|
|
82544
82947
|
"cost": {
|
|
82545
82948
|
"input": 0.07,
|
|
82546
|
-
"output": 0.
|
|
82949
|
+
"output": 0.28,
|
|
82547
82950
|
"cacheRead": 0,
|
|
82548
82951
|
"cacheWrite": 0
|
|
82549
82952
|
},
|
|
82550
82953
|
"contextWindow": 262144,
|
|
82551
|
-
"maxTokens":
|
|
82954
|
+
"maxTokens": 262144,
|
|
82552
82955
|
"supportsComputerUse": false,
|
|
82553
82956
|
"supportsComputerUseConfig": false
|
|
82554
82957
|
},
|
|
@@ -83982,6 +84385,37 @@
|
|
|
83982
84385
|
"supportsComputerUse": false,
|
|
83983
84386
|
"supportsComputerUseConfig": false
|
|
83984
84387
|
},
|
|
84388
|
+
"thinkingmachines/inkling-small": {
|
|
84389
|
+
"id": "thinkingmachines/inkling-small",
|
|
84390
|
+
"name": "Inkling Small",
|
|
84391
|
+
"api": "openrouter",
|
|
84392
|
+
"provider": "openrouter",
|
|
84393
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
84394
|
+
"reasoning": true,
|
|
84395
|
+
"input": [
|
|
84396
|
+
"text",
|
|
84397
|
+
"image"
|
|
84398
|
+
],
|
|
84399
|
+
"cost": {
|
|
84400
|
+
"input": 0.5,
|
|
84401
|
+
"output": 1.2,
|
|
84402
|
+
"cacheRead": 0.09999999999999999,
|
|
84403
|
+
"cacheWrite": 0
|
|
84404
|
+
},
|
|
84405
|
+
"contextWindow": 524288,
|
|
84406
|
+
"maxTokens": 32768,
|
|
84407
|
+
"thinking": {
|
|
84408
|
+
"mode": "effort",
|
|
84409
|
+
"efforts": [
|
|
84410
|
+
"minimal",
|
|
84411
|
+
"low",
|
|
84412
|
+
"medium",
|
|
84413
|
+
"high"
|
|
84414
|
+
]
|
|
84415
|
+
},
|
|
84416
|
+
"supportsComputerUse": false,
|
|
84417
|
+
"supportsComputerUseConfig": false
|
|
84418
|
+
},
|
|
83985
84419
|
"tngtech/deepseek-r1t2-chimera": {
|
|
83986
84420
|
"id": "tngtech/deepseek-r1t2-chimera",
|
|
83987
84421
|
"name": "DeepSeek R1T2 Chimera",
|
|
@@ -85011,9 +85445,9 @@
|
|
|
85011
85445
|
"text"
|
|
85012
85446
|
],
|
|
85013
85447
|
"cost": {
|
|
85014
|
-
"input":
|
|
85015
|
-
"output":
|
|
85016
|
-
"cacheRead": 0.
|
|
85448
|
+
"input": 0.42,
|
|
85449
|
+
"output": 1.32,
|
|
85450
|
+
"cacheRead": 0.078,
|
|
85017
85451
|
"cacheWrite": 0
|
|
85018
85452
|
},
|
|
85019
85453
|
"contextWindow": 1048576,
|
|
@@ -85235,8 +85669,6 @@
|
|
|
85235
85669
|
},
|
|
85236
85670
|
"contextWindow": 524288,
|
|
85237
85671
|
"maxTokens": 65536,
|
|
85238
|
-
"supportsComputerUse": false,
|
|
85239
|
-
"supportsComputerUseConfig": false,
|
|
85240
85672
|
"thinking": {
|
|
85241
85673
|
"mode": "effort",
|
|
85242
85674
|
"efforts": [
|
|
@@ -85249,7 +85681,8 @@
|
|
|
85249
85681
|
"max": "max"
|
|
85250
85682
|
},
|
|
85251
85683
|
"requiresEffort": true
|
|
85252
|
-
}
|
|
85684
|
+
},
|
|
85685
|
+
"supportsComputerUse": false
|
|
85253
85686
|
},
|
|
85254
85687
|
"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4": {
|
|
85255
85688
|
"id": "hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
@@ -85279,8 +85712,7 @@
|
|
|
85279
85712
|
"xhigh"
|
|
85280
85713
|
]
|
|
85281
85714
|
},
|
|
85282
|
-
"supportsComputerUse": false
|
|
85283
|
-
"supportsComputerUseConfig": false
|
|
85715
|
+
"supportsComputerUse": false
|
|
85284
85716
|
},
|
|
85285
85717
|
"hf:openai/gpt-oss-120b": {
|
|
85286
85718
|
"id": "hf:openai/gpt-oss-120b",
|
|
@@ -85308,8 +85740,7 @@
|
|
|
85308
85740
|
"high"
|
|
85309
85741
|
]
|
|
85310
85742
|
},
|
|
85311
|
-
"supportsComputerUse": false
|
|
85312
|
-
"supportsComputerUseConfig": false
|
|
85743
|
+
"supportsComputerUse": false
|
|
85313
85744
|
},
|
|
85314
85745
|
"hf:Qwen/Qwen3.6-27B": {
|
|
85315
85746
|
"id": "hf:Qwen/Qwen3.6-27B",
|
|
@@ -85339,8 +85770,7 @@
|
|
|
85339
85770
|
"high"
|
|
85340
85771
|
]
|
|
85341
85772
|
},
|
|
85342
|
-
"supportsComputerUse": false
|
|
85343
|
-
"supportsComputerUseConfig": false
|
|
85773
|
+
"supportsComputerUse": false
|
|
85344
85774
|
},
|
|
85345
85775
|
"hf:zai-org/GLM-4.7-Flash": {
|
|
85346
85776
|
"id": "hf:zai-org/GLM-4.7-Flash",
|
|
@@ -85370,8 +85800,7 @@
|
|
|
85370
85800
|
"xhigh"
|
|
85371
85801
|
]
|
|
85372
85802
|
},
|
|
85373
|
-
"supportsComputerUse": false
|
|
85374
|
-
"supportsComputerUseConfig": false
|
|
85803
|
+
"supportsComputerUse": false
|
|
85375
85804
|
},
|
|
85376
85805
|
"hf:zai-org/GLM-5.2": {
|
|
85377
85806
|
"id": "hf:zai-org/GLM-5.2",
|
|
@@ -85401,8 +85830,7 @@
|
|
|
85401
85830
|
"xhigh"
|
|
85402
85831
|
]
|
|
85403
85832
|
},
|
|
85404
|
-
"supportsComputerUse": false
|
|
85405
|
-
"supportsComputerUseConfig": false
|
|
85833
|
+
"supportsComputerUse": false
|
|
85406
85834
|
},
|
|
85407
85835
|
"syn:large:text": {
|
|
85408
85836
|
"id": "syn:large:text",
|
|
@@ -86156,7 +86584,7 @@
|
|
|
86156
86584
|
"cost": {
|
|
86157
86585
|
"input": 0.6,
|
|
86158
86586
|
"output": 3.6,
|
|
86159
|
-
"cacheRead": 0,
|
|
86587
|
+
"cacheRead": 0.35,
|
|
86160
86588
|
"cacheWrite": 0
|
|
86161
86589
|
},
|
|
86162
86590
|
"contextWindow": 262144,
|
|
@@ -86241,7 +86669,7 @@
|
|
|
86241
86669
|
"cost": {
|
|
86242
86670
|
"input": 1.25,
|
|
86243
86671
|
"output": 3.75,
|
|
86244
|
-
"cacheRead": 0,
|
|
86672
|
+
"cacheRead": 0.125,
|
|
86245
86673
|
"cacheWrite": 0
|
|
86246
86674
|
},
|
|
86247
86675
|
"contextWindow": 1000000,
|
|
@@ -86348,7 +86776,7 @@
|
|
|
86348
86776
|
"cost": {
|
|
86349
86777
|
"input": 1.4,
|
|
86350
86778
|
"output": 4.4,
|
|
86351
|
-
"cacheRead": 0,
|
|
86779
|
+
"cacheRead": 0.26,
|
|
86352
86780
|
"cacheWrite": 0
|
|
86353
86781
|
},
|
|
86354
86782
|
"contextWindow": 202752,
|
|
@@ -86431,6 +86859,40 @@
|
|
|
86431
86859
|
"escapeBuiltinToolNames": true
|
|
86432
86860
|
}
|
|
86433
86861
|
},
|
|
86862
|
+
"umans-deepseek-v4-flash-0731": {
|
|
86863
|
+
"id": "umans-deepseek-v4-flash-0731",
|
|
86864
|
+
"name": "Umans DeepSeek V4 Flash (experimental)",
|
|
86865
|
+
"api": "anthropic-messages",
|
|
86866
|
+
"provider": "umans",
|
|
86867
|
+
"baseUrl": "https://api.code.umans.ai",
|
|
86868
|
+
"reasoning": true,
|
|
86869
|
+
"thinking": {
|
|
86870
|
+
"mode": "budget",
|
|
86871
|
+
"efforts": [
|
|
86872
|
+
"minimal",
|
|
86873
|
+
"low",
|
|
86874
|
+
"medium",
|
|
86875
|
+
"high",
|
|
86876
|
+
"xhigh"
|
|
86877
|
+
]
|
|
86878
|
+
},
|
|
86879
|
+
"input": [
|
|
86880
|
+
"text"
|
|
86881
|
+
],
|
|
86882
|
+
"cost": {
|
|
86883
|
+
"input": 0,
|
|
86884
|
+
"output": 0,
|
|
86885
|
+
"cacheRead": 0,
|
|
86886
|
+
"cacheWrite": 0
|
|
86887
|
+
},
|
|
86888
|
+
"contextWindow": 1048576,
|
|
86889
|
+
"maxTokens": 393215,
|
|
86890
|
+
"supportsComputerUse": false,
|
|
86891
|
+
"supportsComputerUseConfig": false,
|
|
86892
|
+
"compat": {
|
|
86893
|
+
"escapeBuiltinToolNames": true
|
|
86894
|
+
}
|
|
86895
|
+
},
|
|
86434
86896
|
"umans-flash": {
|
|
86435
86897
|
"id": "umans-flash",
|
|
86436
86898
|
"name": "Umans Flash",
|
|
@@ -87259,6 +87721,32 @@
|
|
|
87259
87721
|
]
|
|
87260
87722
|
}
|
|
87261
87723
|
},
|
|
87724
|
+
"deepseek-v4-flash-0731": {
|
|
87725
|
+
"id": "deepseek-v4-flash-0731",
|
|
87726
|
+
"name": "DeepSeek V4 Flash 0731",
|
|
87727
|
+
"api": "openai-completions",
|
|
87728
|
+
"provider": "venice",
|
|
87729
|
+
"baseUrl": "https://api.venice.ai/api/v1",
|
|
87730
|
+
"reasoning": true,
|
|
87731
|
+
"input": [
|
|
87732
|
+
"text"
|
|
87733
|
+
],
|
|
87734
|
+
"cost": {
|
|
87735
|
+
"input": 0.175,
|
|
87736
|
+
"output": 0.35,
|
|
87737
|
+
"cacheRead": 0.035,
|
|
87738
|
+
"cacheWrite": 0
|
|
87739
|
+
},
|
|
87740
|
+
"contextWindow": 1000000,
|
|
87741
|
+
"maxTokens": 32768,
|
|
87742
|
+
"thinking": {
|
|
87743
|
+
"mode": "effort",
|
|
87744
|
+
"efforts": [
|
|
87745
|
+
"high",
|
|
87746
|
+
"max"
|
|
87747
|
+
]
|
|
87748
|
+
}
|
|
87749
|
+
},
|
|
87262
87750
|
"deepseek-v4-pro": {
|
|
87263
87751
|
"id": "deepseek-v4-pro",
|
|
87264
87752
|
"name": "DeepSeek V4 Pro",
|
|
@@ -90109,9 +90597,9 @@
|
|
|
90109
90597
|
"text"
|
|
90110
90598
|
],
|
|
90111
90599
|
"cost": {
|
|
90112
|
-
"input": 0.
|
|
90113
|
-
"output": 0.
|
|
90114
|
-
"cacheRead": 0,
|
|
90600
|
+
"input": 0.06,
|
|
90601
|
+
"output": 0.4,
|
|
90602
|
+
"cacheRead": 0.01,
|
|
90115
90603
|
"cacheWrite": 0
|
|
90116
90604
|
},
|
|
90117
90605
|
"contextWindow": 128000,
|
|
@@ -91973,8 +92461,38 @@
|
|
|
91973
92461
|
"text"
|
|
91974
92462
|
],
|
|
91975
92463
|
"cost": {
|
|
91976
|
-
"input": 0.
|
|
91977
|
-
"output": 0.
|
|
92464
|
+
"input": 0.14,
|
|
92465
|
+
"output": 0.28,
|
|
92466
|
+
"cacheRead": 0.0028,
|
|
92467
|
+
"cacheWrite": 0
|
|
92468
|
+
},
|
|
92469
|
+
"contextWindow": 1000000,
|
|
92470
|
+
"maxTokens": 384000,
|
|
92471
|
+
"thinking": {
|
|
92472
|
+
"mode": "budget",
|
|
92473
|
+
"efforts": [
|
|
92474
|
+
"minimal",
|
|
92475
|
+
"low",
|
|
92476
|
+
"medium",
|
|
92477
|
+
"high",
|
|
92478
|
+
"xhigh"
|
|
92479
|
+
]
|
|
92480
|
+
},
|
|
92481
|
+
"supportsComputerUse": false
|
|
92482
|
+
},
|
|
92483
|
+
"deepseek/deepseek-v4-flash-0731": {
|
|
92484
|
+
"id": "deepseek/deepseek-v4-flash-0731",
|
|
92485
|
+
"name": "DeepSeek V4 Flash 0731",
|
|
92486
|
+
"api": "anthropic-messages",
|
|
92487
|
+
"provider": "vercel-ai-gateway",
|
|
92488
|
+
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
92489
|
+
"reasoning": true,
|
|
92490
|
+
"input": [
|
|
92491
|
+
"text"
|
|
92492
|
+
],
|
|
92493
|
+
"cost": {
|
|
92494
|
+
"input": 0.13,
|
|
92495
|
+
"output": 0.26,
|
|
91978
92496
|
"cacheRead": 0.028,
|
|
91979
92497
|
"cacheWrite": 0
|
|
91980
92498
|
},
|
|
@@ -92636,7 +93154,8 @@
|
|
|
92636
93154
|
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
92637
93155
|
"reasoning": true,
|
|
92638
93156
|
"input": [
|
|
92639
|
-
"text"
|
|
93157
|
+
"text",
|
|
93158
|
+
"image"
|
|
92640
93159
|
],
|
|
92641
93160
|
"cost": {
|
|
92642
93161
|
"input": 0.15,
|
|
@@ -92706,7 +93225,8 @@
|
|
|
92706
93225
|
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
92707
93226
|
"reasoning": true,
|
|
92708
93227
|
"input": [
|
|
92709
|
-
"text"
|
|
93228
|
+
"text",
|
|
93229
|
+
"image"
|
|
92710
93230
|
],
|
|
92711
93231
|
"cost": {
|
|
92712
93232
|
"input": 0.74,
|
|
@@ -93436,7 +93956,8 @@
|
|
|
93436
93956
|
"provider": "vercel-ai-gateway",
|
|
93437
93957
|
"reasoning": false,
|
|
93438
93958
|
"input": [
|
|
93439
|
-
"text"
|
|
93959
|
+
"text",
|
|
93960
|
+
"image"
|
|
93440
93961
|
],
|
|
93441
93962
|
"cost": {
|
|
93442
93963
|
"input": 0.09999999999999999,
|
|
@@ -93456,7 +93977,8 @@
|
|
|
93456
93977
|
"provider": "vercel-ai-gateway",
|
|
93457
93978
|
"reasoning": false,
|
|
93458
93979
|
"input": [
|
|
93459
|
-
"text"
|
|
93980
|
+
"text",
|
|
93981
|
+
"image"
|
|
93460
93982
|
],
|
|
93461
93983
|
"cost": {
|
|
93462
93984
|
"input": 0.15,
|
|
@@ -93549,7 +94071,8 @@
|
|
|
93549
94071
|
"baseUrl": "https://ai-gateway.vercel.sh",
|
|
93550
94072
|
"reasoning": false,
|
|
93551
94073
|
"input": [
|
|
93552
|
-
"text"
|
|
94074
|
+
"text",
|
|
94075
|
+
"image"
|
|
93553
94076
|
],
|
|
93554
94077
|
"cost": {
|
|
93555
94078
|
"input": 0.15,
|
|
@@ -98024,7 +98547,6 @@
|
|
|
98024
98547
|
"contextWindow": 2000000,
|
|
98025
98548
|
"maxTokens": 2000000,
|
|
98026
98549
|
"supportsComputerUse": false,
|
|
98027
|
-
"supportsComputerUseConfig": false,
|
|
98028
98550
|
"compat": {
|
|
98029
98551
|
"reasoningEffortMap": {
|
|
98030
98552
|
"minimal": "low"
|
|
@@ -98056,7 +98578,6 @@
|
|
|
98056
98578
|
"contextWindow": 2000000,
|
|
98057
98579
|
"maxTokens": 2000000,
|
|
98058
98580
|
"supportsComputerUse": false,
|
|
98059
|
-
"supportsComputerUseConfig": false,
|
|
98060
98581
|
"compat": {
|
|
98061
98582
|
"reasoningEffortMap": {
|
|
98062
98583
|
"minimal": "low"
|
|
@@ -98100,7 +98621,6 @@
|
|
|
98100
98621
|
}
|
|
98101
98622
|
},
|
|
98102
98623
|
"supportsComputerUse": false,
|
|
98103
|
-
"supportsComputerUseConfig": false,
|
|
98104
98624
|
"compat": {
|
|
98105
98625
|
"reasoningEffortMap": {
|
|
98106
98626
|
"minimal": "low"
|
|
@@ -98145,7 +98665,6 @@
|
|
|
98145
98665
|
}
|
|
98146
98666
|
},
|
|
98147
98667
|
"supportsComputerUse": false,
|
|
98148
|
-
"supportsComputerUseConfig": false,
|
|
98149
98668
|
"compat": {
|
|
98150
98669
|
"reasoningEffortMap": {
|
|
98151
98670
|
"minimal": "low"
|
|
@@ -98190,7 +98709,6 @@
|
|
|
98190
98709
|
}
|
|
98191
98710
|
},
|
|
98192
98711
|
"supportsComputerUse": false,
|
|
98193
|
-
"supportsComputerUseConfig": false,
|
|
98194
98712
|
"compat": {
|
|
98195
98713
|
"reasoningEffortMap": {
|
|
98196
98714
|
"minimal": "low"
|
|
@@ -98222,7 +98740,6 @@
|
|
|
98222
98740
|
"contextWindow": 512000,
|
|
98223
98741
|
"maxTokens": 512000,
|
|
98224
98742
|
"supportsComputerUse": false,
|
|
98225
|
-
"supportsComputerUseConfig": false,
|
|
98226
98743
|
"compat": {
|
|
98227
98744
|
"reasoningEffortMap": {
|
|
98228
98745
|
"minimal": "low"
|
|
@@ -98254,7 +98771,6 @@
|
|
|
98254
98771
|
"contextWindow": 256000,
|
|
98255
98772
|
"maxTokens": 256000,
|
|
98256
98773
|
"supportsComputerUse": false,
|
|
98257
|
-
"supportsComputerUseConfig": false,
|
|
98258
98774
|
"compat": {
|
|
98259
98775
|
"reasoningEffortMap": {
|
|
98260
98776
|
"minimal": "low"
|
|
@@ -98285,7 +98801,6 @@
|
|
|
98285
98801
|
"contextWindow": 200000,
|
|
98286
98802
|
"maxTokens": 200000,
|
|
98287
98803
|
"supportsComputerUse": false,
|
|
98288
|
-
"supportsComputerUseConfig": false,
|
|
98289
98804
|
"compat": {
|
|
98290
98805
|
"reasoningEffortMap": {
|
|
98291
98806
|
"minimal": "low"
|
|
@@ -105158,6 +105673,68 @@
|
|
|
105158
105673
|
]
|
|
105159
105674
|
}
|
|
105160
105675
|
},
|
|
105676
|
+
"glm-5.2-highspeed": {
|
|
105677
|
+
"id": "glm-5.2-highspeed",
|
|
105678
|
+
"name": "GLM-5.2 Highspeed",
|
|
105679
|
+
"api": "openai-completions",
|
|
105680
|
+
"provider": "zhipu-coding-plan",
|
|
105681
|
+
"baseUrl": "https://open.bigmodel.cn/api/coding/paas/v4",
|
|
105682
|
+
"reasoning": true,
|
|
105683
|
+
"input": [
|
|
105684
|
+
"text"
|
|
105685
|
+
],
|
|
105686
|
+
"cost": {
|
|
105687
|
+
"input": 0,
|
|
105688
|
+
"output": 0,
|
|
105689
|
+
"cacheRead": 0,
|
|
105690
|
+
"cacheWrite": 0
|
|
105691
|
+
},
|
|
105692
|
+
"contextWindow": 1000000,
|
|
105693
|
+
"maxTokens": 131072,
|
|
105694
|
+
"compat": {
|
|
105695
|
+
"thinkingFormat": "zai",
|
|
105696
|
+
"reasoningContentField": "reasoning_content",
|
|
105697
|
+
"supportsDeveloperRole": false
|
|
105698
|
+
},
|
|
105699
|
+
"thinking": {
|
|
105700
|
+
"mode": "effort",
|
|
105701
|
+
"efforts": [
|
|
105702
|
+
"high",
|
|
105703
|
+
"max"
|
|
105704
|
+
]
|
|
105705
|
+
}
|
|
105706
|
+
},
|
|
105707
|
+
"glm-5.2-highspeed[1m]": {
|
|
105708
|
+
"id": "glm-5.2-highspeed[1m]",
|
|
105709
|
+
"name": "GLM-5.2 Highspeed",
|
|
105710
|
+
"api": "openai-completions",
|
|
105711
|
+
"provider": "zhipu-coding-plan",
|
|
105712
|
+
"baseUrl": "https://open.bigmodel.cn/api/coding/paas/v4",
|
|
105713
|
+
"reasoning": true,
|
|
105714
|
+
"input": [
|
|
105715
|
+
"text"
|
|
105716
|
+
],
|
|
105717
|
+
"cost": {
|
|
105718
|
+
"input": 0,
|
|
105719
|
+
"output": 0,
|
|
105720
|
+
"cacheRead": 0,
|
|
105721
|
+
"cacheWrite": 0
|
|
105722
|
+
},
|
|
105723
|
+
"contextWindow": 1000000,
|
|
105724
|
+
"maxTokens": 131072,
|
|
105725
|
+
"compat": {
|
|
105726
|
+
"thinkingFormat": "zai",
|
|
105727
|
+
"reasoningContentField": "reasoning_content",
|
|
105728
|
+
"supportsDeveloperRole": false
|
|
105729
|
+
},
|
|
105730
|
+
"thinking": {
|
|
105731
|
+
"mode": "effort",
|
|
105732
|
+
"efforts": [
|
|
105733
|
+
"high",
|
|
105734
|
+
"max"
|
|
105735
|
+
]
|
|
105736
|
+
}
|
|
105737
|
+
},
|
|
105161
105738
|
"glm-5v-turbo": {
|
|
105162
105739
|
"id": "glm-5v-turbo",
|
|
105163
105740
|
"name": "GLM-5V-Turbo",
|