@gajae-code/ai 0.15.4 → 0.15.6
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 +27 -1
- package/dist/types/auth-broker/client.d.ts +6 -2
- package/dist/types/auth-broker/remote-store.d.ts +14 -2
- package/dist/types/auth-broker/types.d.ts +6 -0
- package/dist/types/auth-broker/wire-schemas.d.ts +19 -0
- package/dist/types/auth-gateway/server.d.ts +39 -5
- package/dist/types/auth-gateway/types.d.ts +16 -2
- package/dist/types/auth-storage.d.ts +116 -34
- package/dist/types/provider-models/openai-compat.d.ts +1 -0
- package/dist/types/provider-models/special.d.ts +2 -1
- package/dist/types/providers/kiro-api-key.d.ts +50 -0
- package/dist/types/providers/kiro-codewhisperer.d.ts +3 -0
- package/dist/types/providers/register-builtins.d.ts +12 -12
- package/dist/types/stream.d.ts +2 -1
- package/dist/types/types.d.ts +35 -24
- package/dist/types/utils/fallback-transport.d.ts +7 -0
- package/dist/types/utils/json-parse.d.ts +5 -3
- package/dist/types/utils/oauth/api-key-login.d.ts +4 -1
- package/dist/types/utils/oauth/api-key-validation.d.ts +12 -6
- package/dist/types/utils/oauth/commandcode.d.ts +1 -0
- package/dist/types/utils/oauth/types.d.ts +1 -1
- package/dist/types/utils/retry.d.ts +2 -0
- package/dist/types/utils/tool-call-healing.d.ts +4 -4
- package/package.json +3 -3
- package/src/auth-broker/client.ts +41 -13
- package/src/auth-broker/redact.ts +25 -1
- package/src/auth-broker/remote-store.ts +374 -115
- package/src/auth-broker/server.ts +131 -91
- package/src/auth-broker/types.ts +6 -0
- package/src/auth-broker/wire-schemas.ts +6 -0
- package/src/auth-gateway/server.ts +447 -79
- package/src/auth-gateway/types.ts +28 -2
- package/src/auth-storage.ts +742 -157
- package/src/cli.ts +1 -0
- package/src/model-thinking.ts +16 -0
- package/src/models.json +1054 -0
- package/src/models.ts +9 -1
- package/src/provider-models/descriptors.ts +3 -1
- package/src/provider-models/openai-compat.ts +41 -1
- package/src/provider-models/special.ts +15 -3
- package/src/providers/anthropic.ts +7 -1
- package/src/providers/azure-openai-responses.ts +4 -1
- package/src/providers/cursor.ts +256 -101
- package/src/providers/gitlab-duo.ts +18 -1
- package/src/providers/google-gemini-cli.ts +3 -0
- package/src/providers/google-shared.ts +3 -0
- package/src/providers/kiro-api-key.d.ts +50 -0
- package/src/providers/kiro-api-key.ts +786 -0
- package/src/providers/kiro-codewhisperer.d.ts +3 -0
- package/src/providers/kiro-codewhisperer.ts +34 -9
- package/src/providers/ollama.ts +3 -0
- package/src/providers/openai-codex-responses.ts +24 -6
- package/src/providers/openai-completions.ts +11 -1
- package/src/providers/openai-responses-shared.ts +23 -2
- package/src/providers/openai-responses.ts +10 -1
- package/src/providers/pi-native-client.ts +1 -0
- package/src/providers/pi-native-server.ts +24 -0
- package/src/providers/register-builtins.d.ts +12 -12
- package/src/providers/register-builtins.ts +16 -3
- package/src/stream.d.ts +2 -1
- package/src/stream.ts +180 -70
- package/src/types.d.ts +35 -24
- package/src/types.ts +40 -23
- package/src/utils/fallback-transport.d.ts +7 -0
- package/src/utils/fallback-transport.ts +21 -4
- package/src/utils/json-parse.d.ts +5 -3
- package/src/utils/json-parse.ts +6 -6
- package/src/utils/oauth/api-key-login.ts +13 -2
- package/src/utils/oauth/api-key-validation.ts +242 -41
- package/src/utils/oauth/commandcode.ts +17 -0
- package/src/utils/oauth/index.ts +20 -5
- package/src/utils/oauth/types.d.ts +1 -1
- package/src/utils/oauth/types.ts +1 -0
- package/src/utils/retry.d.ts +2 -0
- package/src/utils/retry.ts +15 -2
- package/src/utils/tool-call-healing.d.ts +4 -4
- package/src/utils/tool-call-healing.ts +4 -4
package/src/models.json
CHANGED
|
@@ -28141,6 +28141,1029 @@
|
|
|
28141
28141
|
}
|
|
28142
28142
|
}
|
|
28143
28143
|
},
|
|
28144
|
+
"kiro": {
|
|
28145
|
+
"auto": {
|
|
28146
|
+
"id": "auto",
|
|
28147
|
+
"name": "Auto",
|
|
28148
|
+
"api": "kiro-codewhisperer-stream",
|
|
28149
|
+
"provider": "kiro",
|
|
28150
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28151
|
+
"reasoning": true,
|
|
28152
|
+
"thinking": {
|
|
28153
|
+
"mode": "effort",
|
|
28154
|
+
"minLevel": "low",
|
|
28155
|
+
"maxLevel": "xhigh",
|
|
28156
|
+
"defaultLevel": "medium",
|
|
28157
|
+
"levels": [
|
|
28158
|
+
"low",
|
|
28159
|
+
"medium",
|
|
28160
|
+
"high",
|
|
28161
|
+
"xhigh"
|
|
28162
|
+
]
|
|
28163
|
+
},
|
|
28164
|
+
"input": [
|
|
28165
|
+
"text",
|
|
28166
|
+
"image"
|
|
28167
|
+
],
|
|
28168
|
+
"cost": {
|
|
28169
|
+
"input": 0,
|
|
28170
|
+
"output": 0,
|
|
28171
|
+
"cacheRead": 0,
|
|
28172
|
+
"cacheWrite": 0
|
|
28173
|
+
},
|
|
28174
|
+
"contextWindow": 1000000,
|
|
28175
|
+
"maxTokens": 64000
|
|
28176
|
+
},
|
|
28177
|
+
"claude-haiku-4-5": {
|
|
28178
|
+
"id": "claude-haiku-4-5",
|
|
28179
|
+
"name": "Claude Haiku 4.5",
|
|
28180
|
+
"api": "kiro-codewhisperer-stream",
|
|
28181
|
+
"provider": "kiro",
|
|
28182
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28183
|
+
"reasoning": true,
|
|
28184
|
+
"thinking": {
|
|
28185
|
+
"mode": "effort",
|
|
28186
|
+
"minLevel": "low",
|
|
28187
|
+
"maxLevel": "xhigh",
|
|
28188
|
+
"defaultLevel": "medium",
|
|
28189
|
+
"levels": [
|
|
28190
|
+
"low",
|
|
28191
|
+
"medium",
|
|
28192
|
+
"high",
|
|
28193
|
+
"xhigh"
|
|
28194
|
+
]
|
|
28195
|
+
},
|
|
28196
|
+
"input": [
|
|
28197
|
+
"text",
|
|
28198
|
+
"image"
|
|
28199
|
+
],
|
|
28200
|
+
"cost": {
|
|
28201
|
+
"input": 0,
|
|
28202
|
+
"output": 0,
|
|
28203
|
+
"cacheRead": 0,
|
|
28204
|
+
"cacheWrite": 0
|
|
28205
|
+
},
|
|
28206
|
+
"contextWindow": 200000,
|
|
28207
|
+
"maxTokens": 64000
|
|
28208
|
+
},
|
|
28209
|
+
"claude-haiku-4.5": {
|
|
28210
|
+
"id": "claude-haiku-4.5",
|
|
28211
|
+
"name": "Claude Haiku 4.5",
|
|
28212
|
+
"api": "kiro-codewhisperer-stream",
|
|
28213
|
+
"provider": "kiro",
|
|
28214
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28215
|
+
"reasoning": true,
|
|
28216
|
+
"thinking": {
|
|
28217
|
+
"mode": "effort",
|
|
28218
|
+
"minLevel": "low",
|
|
28219
|
+
"maxLevel": "xhigh",
|
|
28220
|
+
"defaultLevel": "medium",
|
|
28221
|
+
"levels": [
|
|
28222
|
+
"low",
|
|
28223
|
+
"medium",
|
|
28224
|
+
"high",
|
|
28225
|
+
"xhigh"
|
|
28226
|
+
]
|
|
28227
|
+
},
|
|
28228
|
+
"input": [
|
|
28229
|
+
"text",
|
|
28230
|
+
"image"
|
|
28231
|
+
],
|
|
28232
|
+
"cost": {
|
|
28233
|
+
"input": 0,
|
|
28234
|
+
"output": 0,
|
|
28235
|
+
"cacheRead": 0,
|
|
28236
|
+
"cacheWrite": 0
|
|
28237
|
+
},
|
|
28238
|
+
"contextWindow": 200000,
|
|
28239
|
+
"maxTokens": 64000
|
|
28240
|
+
},
|
|
28241
|
+
"claude-opus-4-5": {
|
|
28242
|
+
"id": "claude-opus-4-5",
|
|
28243
|
+
"name": "Claude Opus 4.5",
|
|
28244
|
+
"api": "kiro-codewhisperer-stream",
|
|
28245
|
+
"provider": "kiro",
|
|
28246
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28247
|
+
"reasoning": true,
|
|
28248
|
+
"thinking": {
|
|
28249
|
+
"mode": "effort",
|
|
28250
|
+
"minLevel": "low",
|
|
28251
|
+
"maxLevel": "xhigh",
|
|
28252
|
+
"defaultLevel": "medium",
|
|
28253
|
+
"levels": [
|
|
28254
|
+
"low",
|
|
28255
|
+
"medium",
|
|
28256
|
+
"high",
|
|
28257
|
+
"xhigh"
|
|
28258
|
+
]
|
|
28259
|
+
},
|
|
28260
|
+
"input": [
|
|
28261
|
+
"text",
|
|
28262
|
+
"image"
|
|
28263
|
+
],
|
|
28264
|
+
"cost": {
|
|
28265
|
+
"input": 0,
|
|
28266
|
+
"output": 0,
|
|
28267
|
+
"cacheRead": 0,
|
|
28268
|
+
"cacheWrite": 0
|
|
28269
|
+
},
|
|
28270
|
+
"contextWindow": 200000,
|
|
28271
|
+
"maxTokens": 64000
|
|
28272
|
+
},
|
|
28273
|
+
"claude-opus-4-6": {
|
|
28274
|
+
"id": "claude-opus-4-6",
|
|
28275
|
+
"name": "Claude Opus 4.6",
|
|
28276
|
+
"api": "kiro-codewhisperer-stream",
|
|
28277
|
+
"provider": "kiro",
|
|
28278
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28279
|
+
"reasoning": true,
|
|
28280
|
+
"thinking": {
|
|
28281
|
+
"mode": "effort",
|
|
28282
|
+
"minLevel": "low",
|
|
28283
|
+
"maxLevel": "xhigh",
|
|
28284
|
+
"defaultLevel": "medium",
|
|
28285
|
+
"levels": [
|
|
28286
|
+
"low",
|
|
28287
|
+
"medium",
|
|
28288
|
+
"high",
|
|
28289
|
+
"xhigh"
|
|
28290
|
+
]
|
|
28291
|
+
},
|
|
28292
|
+
"input": [
|
|
28293
|
+
"text",
|
|
28294
|
+
"image"
|
|
28295
|
+
],
|
|
28296
|
+
"cost": {
|
|
28297
|
+
"input": 0,
|
|
28298
|
+
"output": 0,
|
|
28299
|
+
"cacheRead": 0,
|
|
28300
|
+
"cacheWrite": 0
|
|
28301
|
+
},
|
|
28302
|
+
"contextWindow": 1000000,
|
|
28303
|
+
"maxTokens": 64000
|
|
28304
|
+
},
|
|
28305
|
+
"claude-opus-4-7": {
|
|
28306
|
+
"id": "claude-opus-4-7",
|
|
28307
|
+
"name": "Claude Opus 4.7",
|
|
28308
|
+
"api": "kiro-codewhisperer-stream",
|
|
28309
|
+
"provider": "kiro",
|
|
28310
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28311
|
+
"reasoning": true,
|
|
28312
|
+
"thinking": {
|
|
28313
|
+
"mode": "effort",
|
|
28314
|
+
"minLevel": "low",
|
|
28315
|
+
"maxLevel": "xhigh",
|
|
28316
|
+
"defaultLevel": "medium",
|
|
28317
|
+
"levels": [
|
|
28318
|
+
"low",
|
|
28319
|
+
"medium",
|
|
28320
|
+
"high",
|
|
28321
|
+
"xhigh"
|
|
28322
|
+
]
|
|
28323
|
+
},
|
|
28324
|
+
"input": [
|
|
28325
|
+
"text",
|
|
28326
|
+
"image"
|
|
28327
|
+
],
|
|
28328
|
+
"cost": {
|
|
28329
|
+
"input": 0,
|
|
28330
|
+
"output": 0,
|
|
28331
|
+
"cacheRead": 0,
|
|
28332
|
+
"cacheWrite": 0
|
|
28333
|
+
},
|
|
28334
|
+
"contextWindow": 1000000,
|
|
28335
|
+
"maxTokens": 128000
|
|
28336
|
+
},
|
|
28337
|
+
"claude-opus-4-8": {
|
|
28338
|
+
"id": "claude-opus-4-8",
|
|
28339
|
+
"name": "Claude Opus 4.8",
|
|
28340
|
+
"api": "kiro-codewhisperer-stream",
|
|
28341
|
+
"provider": "kiro",
|
|
28342
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28343
|
+
"reasoning": true,
|
|
28344
|
+
"thinking": {
|
|
28345
|
+
"mode": "effort",
|
|
28346
|
+
"minLevel": "low",
|
|
28347
|
+
"maxLevel": "xhigh",
|
|
28348
|
+
"defaultLevel": "medium",
|
|
28349
|
+
"levels": [
|
|
28350
|
+
"low",
|
|
28351
|
+
"medium",
|
|
28352
|
+
"high",
|
|
28353
|
+
"xhigh"
|
|
28354
|
+
]
|
|
28355
|
+
},
|
|
28356
|
+
"input": [
|
|
28357
|
+
"text",
|
|
28358
|
+
"image"
|
|
28359
|
+
],
|
|
28360
|
+
"cost": {
|
|
28361
|
+
"input": 0,
|
|
28362
|
+
"output": 0,
|
|
28363
|
+
"cacheRead": 0,
|
|
28364
|
+
"cacheWrite": 0
|
|
28365
|
+
},
|
|
28366
|
+
"contextWindow": 1000000,
|
|
28367
|
+
"maxTokens": 128000
|
|
28368
|
+
},
|
|
28369
|
+
"claude-opus-4.5": {
|
|
28370
|
+
"id": "claude-opus-4.5",
|
|
28371
|
+
"name": "Claude Opus 4.5",
|
|
28372
|
+
"api": "kiro-codewhisperer-stream",
|
|
28373
|
+
"provider": "kiro",
|
|
28374
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28375
|
+
"reasoning": true,
|
|
28376
|
+
"thinking": {
|
|
28377
|
+
"mode": "effort",
|
|
28378
|
+
"minLevel": "low",
|
|
28379
|
+
"maxLevel": "xhigh",
|
|
28380
|
+
"defaultLevel": "medium",
|
|
28381
|
+
"levels": [
|
|
28382
|
+
"low",
|
|
28383
|
+
"medium",
|
|
28384
|
+
"high",
|
|
28385
|
+
"xhigh"
|
|
28386
|
+
]
|
|
28387
|
+
},
|
|
28388
|
+
"input": [
|
|
28389
|
+
"text",
|
|
28390
|
+
"image"
|
|
28391
|
+
],
|
|
28392
|
+
"cost": {
|
|
28393
|
+
"input": 0,
|
|
28394
|
+
"output": 0,
|
|
28395
|
+
"cacheRead": 0,
|
|
28396
|
+
"cacheWrite": 0
|
|
28397
|
+
},
|
|
28398
|
+
"contextWindow": 200000,
|
|
28399
|
+
"maxTokens": 64000
|
|
28400
|
+
},
|
|
28401
|
+
"claude-opus-4.6": {
|
|
28402
|
+
"id": "claude-opus-4.6",
|
|
28403
|
+
"name": "Claude Opus 4.6",
|
|
28404
|
+
"api": "kiro-codewhisperer-stream",
|
|
28405
|
+
"provider": "kiro",
|
|
28406
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28407
|
+
"reasoning": true,
|
|
28408
|
+
"thinking": {
|
|
28409
|
+
"mode": "effort",
|
|
28410
|
+
"minLevel": "low",
|
|
28411
|
+
"maxLevel": "xhigh",
|
|
28412
|
+
"defaultLevel": "medium",
|
|
28413
|
+
"levels": [
|
|
28414
|
+
"low",
|
|
28415
|
+
"medium",
|
|
28416
|
+
"high",
|
|
28417
|
+
"xhigh"
|
|
28418
|
+
]
|
|
28419
|
+
},
|
|
28420
|
+
"input": [
|
|
28421
|
+
"text",
|
|
28422
|
+
"image"
|
|
28423
|
+
],
|
|
28424
|
+
"cost": {
|
|
28425
|
+
"input": 0,
|
|
28426
|
+
"output": 0,
|
|
28427
|
+
"cacheRead": 0,
|
|
28428
|
+
"cacheWrite": 0
|
|
28429
|
+
},
|
|
28430
|
+
"contextWindow": 1000000,
|
|
28431
|
+
"maxTokens": 64000
|
|
28432
|
+
},
|
|
28433
|
+
"claude-opus-4.7": {
|
|
28434
|
+
"id": "claude-opus-4.7",
|
|
28435
|
+
"name": "Claude Opus 4.7",
|
|
28436
|
+
"api": "kiro-codewhisperer-stream",
|
|
28437
|
+
"provider": "kiro",
|
|
28438
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28439
|
+
"reasoning": true,
|
|
28440
|
+
"thinking": {
|
|
28441
|
+
"mode": "effort",
|
|
28442
|
+
"minLevel": "low",
|
|
28443
|
+
"maxLevel": "xhigh",
|
|
28444
|
+
"defaultLevel": "medium",
|
|
28445
|
+
"levels": [
|
|
28446
|
+
"low",
|
|
28447
|
+
"medium",
|
|
28448
|
+
"high",
|
|
28449
|
+
"xhigh"
|
|
28450
|
+
]
|
|
28451
|
+
},
|
|
28452
|
+
"input": [
|
|
28453
|
+
"text",
|
|
28454
|
+
"image"
|
|
28455
|
+
],
|
|
28456
|
+
"cost": {
|
|
28457
|
+
"input": 0,
|
|
28458
|
+
"output": 0,
|
|
28459
|
+
"cacheRead": 0,
|
|
28460
|
+
"cacheWrite": 0
|
|
28461
|
+
},
|
|
28462
|
+
"contextWindow": 1000000,
|
|
28463
|
+
"maxTokens": 128000
|
|
28464
|
+
},
|
|
28465
|
+
"claude-opus-4.8": {
|
|
28466
|
+
"id": "claude-opus-4.8",
|
|
28467
|
+
"name": "Claude Opus 4.8",
|
|
28468
|
+
"api": "kiro-codewhisperer-stream",
|
|
28469
|
+
"provider": "kiro",
|
|
28470
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28471
|
+
"reasoning": true,
|
|
28472
|
+
"thinking": {
|
|
28473
|
+
"mode": "effort",
|
|
28474
|
+
"minLevel": "low",
|
|
28475
|
+
"maxLevel": "xhigh",
|
|
28476
|
+
"defaultLevel": "medium",
|
|
28477
|
+
"levels": [
|
|
28478
|
+
"low",
|
|
28479
|
+
"medium",
|
|
28480
|
+
"high",
|
|
28481
|
+
"xhigh"
|
|
28482
|
+
]
|
|
28483
|
+
},
|
|
28484
|
+
"input": [
|
|
28485
|
+
"text",
|
|
28486
|
+
"image"
|
|
28487
|
+
],
|
|
28488
|
+
"cost": {
|
|
28489
|
+
"input": 0,
|
|
28490
|
+
"output": 0,
|
|
28491
|
+
"cacheRead": 0,
|
|
28492
|
+
"cacheWrite": 0
|
|
28493
|
+
},
|
|
28494
|
+
"contextWindow": 1000000,
|
|
28495
|
+
"maxTokens": 128000
|
|
28496
|
+
},
|
|
28497
|
+
"claude-opus-5": {
|
|
28498
|
+
"id": "claude-opus-5",
|
|
28499
|
+
"name": "Claude Opus 5",
|
|
28500
|
+
"api": "kiro-codewhisperer-stream",
|
|
28501
|
+
"provider": "kiro",
|
|
28502
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28503
|
+
"reasoning": true,
|
|
28504
|
+
"thinking": {
|
|
28505
|
+
"mode": "effort",
|
|
28506
|
+
"minLevel": "low",
|
|
28507
|
+
"maxLevel": "xhigh",
|
|
28508
|
+
"defaultLevel": "medium",
|
|
28509
|
+
"levels": [
|
|
28510
|
+
"low",
|
|
28511
|
+
"medium",
|
|
28512
|
+
"high",
|
|
28513
|
+
"xhigh"
|
|
28514
|
+
]
|
|
28515
|
+
},
|
|
28516
|
+
"input": [
|
|
28517
|
+
"text",
|
|
28518
|
+
"image"
|
|
28519
|
+
],
|
|
28520
|
+
"cost": {
|
|
28521
|
+
"input": 0,
|
|
28522
|
+
"output": 0,
|
|
28523
|
+
"cacheRead": 0,
|
|
28524
|
+
"cacheWrite": 0
|
|
28525
|
+
},
|
|
28526
|
+
"contextWindow": 1000000,
|
|
28527
|
+
"maxTokens": 128000
|
|
28528
|
+
},
|
|
28529
|
+
"claude-sonnet-4": {
|
|
28530
|
+
"id": "claude-sonnet-4",
|
|
28531
|
+
"name": "Claude Sonnet 4",
|
|
28532
|
+
"api": "kiro-codewhisperer-stream",
|
|
28533
|
+
"provider": "kiro",
|
|
28534
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28535
|
+
"reasoning": true,
|
|
28536
|
+
"thinking": {
|
|
28537
|
+
"mode": "effort",
|
|
28538
|
+
"minLevel": "low",
|
|
28539
|
+
"maxLevel": "xhigh",
|
|
28540
|
+
"defaultLevel": "medium",
|
|
28541
|
+
"levels": [
|
|
28542
|
+
"low",
|
|
28543
|
+
"medium",
|
|
28544
|
+
"high",
|
|
28545
|
+
"xhigh"
|
|
28546
|
+
]
|
|
28547
|
+
},
|
|
28548
|
+
"input": [
|
|
28549
|
+
"text",
|
|
28550
|
+
"image"
|
|
28551
|
+
],
|
|
28552
|
+
"cost": {
|
|
28553
|
+
"input": 0,
|
|
28554
|
+
"output": 0,
|
|
28555
|
+
"cacheRead": 0,
|
|
28556
|
+
"cacheWrite": 0
|
|
28557
|
+
},
|
|
28558
|
+
"contextWindow": 200000,
|
|
28559
|
+
"maxTokens": 64000
|
|
28560
|
+
},
|
|
28561
|
+
"claude-sonnet-4-5": {
|
|
28562
|
+
"id": "claude-sonnet-4-5",
|
|
28563
|
+
"name": "Claude Sonnet 4.5",
|
|
28564
|
+
"api": "kiro-codewhisperer-stream",
|
|
28565
|
+
"provider": "kiro",
|
|
28566
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28567
|
+
"reasoning": true,
|
|
28568
|
+
"thinking": {
|
|
28569
|
+
"mode": "effort",
|
|
28570
|
+
"minLevel": "low",
|
|
28571
|
+
"maxLevel": "xhigh",
|
|
28572
|
+
"defaultLevel": "medium",
|
|
28573
|
+
"levels": [
|
|
28574
|
+
"low",
|
|
28575
|
+
"medium",
|
|
28576
|
+
"high",
|
|
28577
|
+
"xhigh"
|
|
28578
|
+
]
|
|
28579
|
+
},
|
|
28580
|
+
"input": [
|
|
28581
|
+
"text",
|
|
28582
|
+
"image"
|
|
28583
|
+
],
|
|
28584
|
+
"cost": {
|
|
28585
|
+
"input": 0,
|
|
28586
|
+
"output": 0,
|
|
28587
|
+
"cacheRead": 0,
|
|
28588
|
+
"cacheWrite": 0
|
|
28589
|
+
},
|
|
28590
|
+
"contextWindow": 200000,
|
|
28591
|
+
"maxTokens": 64000
|
|
28592
|
+
},
|
|
28593
|
+
"claude-sonnet-4-6": {
|
|
28594
|
+
"id": "claude-sonnet-4-6",
|
|
28595
|
+
"name": "Claude Sonnet 4.6",
|
|
28596
|
+
"api": "kiro-codewhisperer-stream",
|
|
28597
|
+
"provider": "kiro",
|
|
28598
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28599
|
+
"reasoning": true,
|
|
28600
|
+
"thinking": {
|
|
28601
|
+
"mode": "effort",
|
|
28602
|
+
"minLevel": "low",
|
|
28603
|
+
"maxLevel": "xhigh",
|
|
28604
|
+
"defaultLevel": "medium",
|
|
28605
|
+
"levels": [
|
|
28606
|
+
"low",
|
|
28607
|
+
"medium",
|
|
28608
|
+
"high",
|
|
28609
|
+
"xhigh"
|
|
28610
|
+
]
|
|
28611
|
+
},
|
|
28612
|
+
"input": [
|
|
28613
|
+
"text",
|
|
28614
|
+
"image"
|
|
28615
|
+
],
|
|
28616
|
+
"cost": {
|
|
28617
|
+
"input": 0,
|
|
28618
|
+
"output": 0,
|
|
28619
|
+
"cacheRead": 0,
|
|
28620
|
+
"cacheWrite": 0
|
|
28621
|
+
},
|
|
28622
|
+
"contextWindow": 1000000,
|
|
28623
|
+
"maxTokens": 64000
|
|
28624
|
+
},
|
|
28625
|
+
"claude-sonnet-4.5": {
|
|
28626
|
+
"id": "claude-sonnet-4.5",
|
|
28627
|
+
"name": "Claude Sonnet 4.5",
|
|
28628
|
+
"api": "kiro-codewhisperer-stream",
|
|
28629
|
+
"provider": "kiro",
|
|
28630
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28631
|
+
"reasoning": true,
|
|
28632
|
+
"thinking": {
|
|
28633
|
+
"mode": "effort",
|
|
28634
|
+
"minLevel": "low",
|
|
28635
|
+
"maxLevel": "xhigh",
|
|
28636
|
+
"defaultLevel": "medium",
|
|
28637
|
+
"levels": [
|
|
28638
|
+
"low",
|
|
28639
|
+
"medium",
|
|
28640
|
+
"high",
|
|
28641
|
+
"xhigh"
|
|
28642
|
+
]
|
|
28643
|
+
},
|
|
28644
|
+
"input": [
|
|
28645
|
+
"text",
|
|
28646
|
+
"image"
|
|
28647
|
+
],
|
|
28648
|
+
"cost": {
|
|
28649
|
+
"input": 0,
|
|
28650
|
+
"output": 0,
|
|
28651
|
+
"cacheRead": 0,
|
|
28652
|
+
"cacheWrite": 0
|
|
28653
|
+
},
|
|
28654
|
+
"contextWindow": 200000,
|
|
28655
|
+
"maxTokens": 64000
|
|
28656
|
+
},
|
|
28657
|
+
"claude-sonnet-4.6": {
|
|
28658
|
+
"id": "claude-sonnet-4.6",
|
|
28659
|
+
"name": "Claude Sonnet 4.6",
|
|
28660
|
+
"api": "kiro-codewhisperer-stream",
|
|
28661
|
+
"provider": "kiro",
|
|
28662
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28663
|
+
"reasoning": true,
|
|
28664
|
+
"thinking": {
|
|
28665
|
+
"mode": "effort",
|
|
28666
|
+
"minLevel": "low",
|
|
28667
|
+
"maxLevel": "xhigh",
|
|
28668
|
+
"defaultLevel": "medium",
|
|
28669
|
+
"levels": [
|
|
28670
|
+
"low",
|
|
28671
|
+
"medium",
|
|
28672
|
+
"high",
|
|
28673
|
+
"xhigh"
|
|
28674
|
+
]
|
|
28675
|
+
},
|
|
28676
|
+
"input": [
|
|
28677
|
+
"text",
|
|
28678
|
+
"image"
|
|
28679
|
+
],
|
|
28680
|
+
"cost": {
|
|
28681
|
+
"input": 0,
|
|
28682
|
+
"output": 0,
|
|
28683
|
+
"cacheRead": 0,
|
|
28684
|
+
"cacheWrite": 0
|
|
28685
|
+
},
|
|
28686
|
+
"contextWindow": 1000000,
|
|
28687
|
+
"maxTokens": 64000
|
|
28688
|
+
},
|
|
28689
|
+
"claude-sonnet-5": {
|
|
28690
|
+
"id": "claude-sonnet-5",
|
|
28691
|
+
"name": "Claude Sonnet 5",
|
|
28692
|
+
"api": "kiro-codewhisperer-stream",
|
|
28693
|
+
"provider": "kiro",
|
|
28694
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28695
|
+
"reasoning": true,
|
|
28696
|
+
"thinking": {
|
|
28697
|
+
"mode": "effort",
|
|
28698
|
+
"minLevel": "low",
|
|
28699
|
+
"maxLevel": "xhigh",
|
|
28700
|
+
"defaultLevel": "medium",
|
|
28701
|
+
"levels": [
|
|
28702
|
+
"low",
|
|
28703
|
+
"medium",
|
|
28704
|
+
"high",
|
|
28705
|
+
"xhigh"
|
|
28706
|
+
]
|
|
28707
|
+
},
|
|
28708
|
+
"input": [
|
|
28709
|
+
"text",
|
|
28710
|
+
"image"
|
|
28711
|
+
],
|
|
28712
|
+
"cost": {
|
|
28713
|
+
"input": 0,
|
|
28714
|
+
"output": 0,
|
|
28715
|
+
"cacheRead": 0,
|
|
28716
|
+
"cacheWrite": 0
|
|
28717
|
+
},
|
|
28718
|
+
"contextWindow": 1000000,
|
|
28719
|
+
"maxTokens": 64000
|
|
28720
|
+
},
|
|
28721
|
+
"deepseek-3-2": {
|
|
28722
|
+
"id": "deepseek-3-2",
|
|
28723
|
+
"name": "DeepSeek 3.2",
|
|
28724
|
+
"api": "kiro-codewhisperer-stream",
|
|
28725
|
+
"provider": "kiro",
|
|
28726
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28727
|
+
"reasoning": true,
|
|
28728
|
+
"thinking": {
|
|
28729
|
+
"mode": "effort",
|
|
28730
|
+
"minLevel": "low",
|
|
28731
|
+
"maxLevel": "xhigh",
|
|
28732
|
+
"defaultLevel": "medium",
|
|
28733
|
+
"levels": [
|
|
28734
|
+
"low",
|
|
28735
|
+
"medium",
|
|
28736
|
+
"high",
|
|
28737
|
+
"xhigh"
|
|
28738
|
+
]
|
|
28739
|
+
},
|
|
28740
|
+
"input": [
|
|
28741
|
+
"text",
|
|
28742
|
+
"image"
|
|
28743
|
+
],
|
|
28744
|
+
"cost": {
|
|
28745
|
+
"input": 0,
|
|
28746
|
+
"output": 0,
|
|
28747
|
+
"cacheRead": 0,
|
|
28748
|
+
"cacheWrite": 0
|
|
28749
|
+
},
|
|
28750
|
+
"contextWindow": 164000,
|
|
28751
|
+
"maxTokens": 64000
|
|
28752
|
+
},
|
|
28753
|
+
"deepseek-3.2": {
|
|
28754
|
+
"id": "deepseek-3.2",
|
|
28755
|
+
"name": "DeepSeek 3.2",
|
|
28756
|
+
"api": "kiro-codewhisperer-stream",
|
|
28757
|
+
"provider": "kiro",
|
|
28758
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28759
|
+
"reasoning": true,
|
|
28760
|
+
"thinking": {
|
|
28761
|
+
"mode": "effort",
|
|
28762
|
+
"minLevel": "low",
|
|
28763
|
+
"maxLevel": "xhigh",
|
|
28764
|
+
"defaultLevel": "medium",
|
|
28765
|
+
"levels": [
|
|
28766
|
+
"low",
|
|
28767
|
+
"medium",
|
|
28768
|
+
"high",
|
|
28769
|
+
"xhigh"
|
|
28770
|
+
]
|
|
28771
|
+
},
|
|
28772
|
+
"input": [
|
|
28773
|
+
"text",
|
|
28774
|
+
"image"
|
|
28775
|
+
],
|
|
28776
|
+
"cost": {
|
|
28777
|
+
"input": 0,
|
|
28778
|
+
"output": 0,
|
|
28779
|
+
"cacheRead": 0,
|
|
28780
|
+
"cacheWrite": 0
|
|
28781
|
+
},
|
|
28782
|
+
"contextWindow": 164000,
|
|
28783
|
+
"maxTokens": 64000
|
|
28784
|
+
},
|
|
28785
|
+
"glm-5": {
|
|
28786
|
+
"id": "glm-5",
|
|
28787
|
+
"name": "GLM 5",
|
|
28788
|
+
"api": "kiro-codewhisperer-stream",
|
|
28789
|
+
"provider": "kiro",
|
|
28790
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28791
|
+
"reasoning": true,
|
|
28792
|
+
"thinking": {
|
|
28793
|
+
"mode": "effort",
|
|
28794
|
+
"minLevel": "low",
|
|
28795
|
+
"maxLevel": "xhigh",
|
|
28796
|
+
"defaultLevel": "medium",
|
|
28797
|
+
"levels": [
|
|
28798
|
+
"low",
|
|
28799
|
+
"medium",
|
|
28800
|
+
"high",
|
|
28801
|
+
"xhigh"
|
|
28802
|
+
]
|
|
28803
|
+
},
|
|
28804
|
+
"input": [
|
|
28805
|
+
"text"
|
|
28806
|
+
],
|
|
28807
|
+
"cost": {
|
|
28808
|
+
"input": 0,
|
|
28809
|
+
"output": 0,
|
|
28810
|
+
"cacheRead": 0,
|
|
28811
|
+
"cacheWrite": 0
|
|
28812
|
+
},
|
|
28813
|
+
"contextWindow": 200000,
|
|
28814
|
+
"maxTokens": 64000
|
|
28815
|
+
},
|
|
28816
|
+
"gpt-5-6-luna": {
|
|
28817
|
+
"id": "gpt-5-6-luna",
|
|
28818
|
+
"name": "GPT 5.6 Luna",
|
|
28819
|
+
"api": "kiro-codewhisperer-stream",
|
|
28820
|
+
"provider": "kiro",
|
|
28821
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28822
|
+
"reasoning": true,
|
|
28823
|
+
"thinking": {
|
|
28824
|
+
"mode": "effort",
|
|
28825
|
+
"minLevel": "low",
|
|
28826
|
+
"maxLevel": "xhigh",
|
|
28827
|
+
"defaultLevel": "medium",
|
|
28828
|
+
"levels": [
|
|
28829
|
+
"low",
|
|
28830
|
+
"medium",
|
|
28831
|
+
"high",
|
|
28832
|
+
"xhigh"
|
|
28833
|
+
]
|
|
28834
|
+
},
|
|
28835
|
+
"input": [
|
|
28836
|
+
"text",
|
|
28837
|
+
"image"
|
|
28838
|
+
],
|
|
28839
|
+
"cost": {
|
|
28840
|
+
"input": 0,
|
|
28841
|
+
"output": 0,
|
|
28842
|
+
"cacheRead": 0,
|
|
28843
|
+
"cacheWrite": 0
|
|
28844
|
+
},
|
|
28845
|
+
"contextWindow": 272000,
|
|
28846
|
+
"maxTokens": 128000
|
|
28847
|
+
},
|
|
28848
|
+
"gpt-5-6-sol": {
|
|
28849
|
+
"id": "gpt-5-6-sol",
|
|
28850
|
+
"name": "GPT 5.6 Sol",
|
|
28851
|
+
"api": "kiro-codewhisperer-stream",
|
|
28852
|
+
"provider": "kiro",
|
|
28853
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28854
|
+
"reasoning": true,
|
|
28855
|
+
"thinking": {
|
|
28856
|
+
"mode": "effort",
|
|
28857
|
+
"minLevel": "low",
|
|
28858
|
+
"maxLevel": "xhigh",
|
|
28859
|
+
"defaultLevel": "medium",
|
|
28860
|
+
"levels": [
|
|
28861
|
+
"low",
|
|
28862
|
+
"medium",
|
|
28863
|
+
"high",
|
|
28864
|
+
"xhigh"
|
|
28865
|
+
]
|
|
28866
|
+
},
|
|
28867
|
+
"input": [
|
|
28868
|
+
"text",
|
|
28869
|
+
"image"
|
|
28870
|
+
],
|
|
28871
|
+
"cost": {
|
|
28872
|
+
"input": 0,
|
|
28873
|
+
"output": 0,
|
|
28874
|
+
"cacheRead": 0,
|
|
28875
|
+
"cacheWrite": 0
|
|
28876
|
+
},
|
|
28877
|
+
"contextWindow": 272000,
|
|
28878
|
+
"maxTokens": 128000
|
|
28879
|
+
},
|
|
28880
|
+
"gpt-5-6-terra": {
|
|
28881
|
+
"id": "gpt-5-6-terra",
|
|
28882
|
+
"name": "GPT 5.6 Terra",
|
|
28883
|
+
"api": "kiro-codewhisperer-stream",
|
|
28884
|
+
"provider": "kiro",
|
|
28885
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28886
|
+
"reasoning": true,
|
|
28887
|
+
"thinking": {
|
|
28888
|
+
"mode": "effort",
|
|
28889
|
+
"minLevel": "low",
|
|
28890
|
+
"maxLevel": "xhigh",
|
|
28891
|
+
"defaultLevel": "medium",
|
|
28892
|
+
"levels": [
|
|
28893
|
+
"low",
|
|
28894
|
+
"medium",
|
|
28895
|
+
"high",
|
|
28896
|
+
"xhigh"
|
|
28897
|
+
]
|
|
28898
|
+
},
|
|
28899
|
+
"input": [
|
|
28900
|
+
"text",
|
|
28901
|
+
"image"
|
|
28902
|
+
],
|
|
28903
|
+
"cost": {
|
|
28904
|
+
"input": 0,
|
|
28905
|
+
"output": 0,
|
|
28906
|
+
"cacheRead": 0,
|
|
28907
|
+
"cacheWrite": 0
|
|
28908
|
+
},
|
|
28909
|
+
"contextWindow": 272000,
|
|
28910
|
+
"maxTokens": 128000
|
|
28911
|
+
},
|
|
28912
|
+
"gpt-5.6-luna": {
|
|
28913
|
+
"id": "gpt-5.6-luna",
|
|
28914
|
+
"name": "GPT 5.6 Luna",
|
|
28915
|
+
"api": "kiro-codewhisperer-stream",
|
|
28916
|
+
"provider": "kiro",
|
|
28917
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28918
|
+
"reasoning": true,
|
|
28919
|
+
"thinking": {
|
|
28920
|
+
"mode": "effort",
|
|
28921
|
+
"minLevel": "low",
|
|
28922
|
+
"maxLevel": "xhigh",
|
|
28923
|
+
"defaultLevel": "medium",
|
|
28924
|
+
"levels": [
|
|
28925
|
+
"low",
|
|
28926
|
+
"medium",
|
|
28927
|
+
"high",
|
|
28928
|
+
"xhigh"
|
|
28929
|
+
]
|
|
28930
|
+
},
|
|
28931
|
+
"input": [
|
|
28932
|
+
"text",
|
|
28933
|
+
"image"
|
|
28934
|
+
],
|
|
28935
|
+
"cost": {
|
|
28936
|
+
"input": 0,
|
|
28937
|
+
"output": 0,
|
|
28938
|
+
"cacheRead": 0,
|
|
28939
|
+
"cacheWrite": 0
|
|
28940
|
+
},
|
|
28941
|
+
"contextWindow": 272000,
|
|
28942
|
+
"maxTokens": 128000
|
|
28943
|
+
},
|
|
28944
|
+
"gpt-5.6-sol": {
|
|
28945
|
+
"id": "gpt-5.6-sol",
|
|
28946
|
+
"name": "GPT 5.6 Sol",
|
|
28947
|
+
"api": "kiro-codewhisperer-stream",
|
|
28948
|
+
"provider": "kiro",
|
|
28949
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28950
|
+
"reasoning": true,
|
|
28951
|
+
"thinking": {
|
|
28952
|
+
"mode": "effort",
|
|
28953
|
+
"minLevel": "low",
|
|
28954
|
+
"maxLevel": "xhigh",
|
|
28955
|
+
"defaultLevel": "medium",
|
|
28956
|
+
"levels": [
|
|
28957
|
+
"low",
|
|
28958
|
+
"medium",
|
|
28959
|
+
"high",
|
|
28960
|
+
"xhigh"
|
|
28961
|
+
]
|
|
28962
|
+
},
|
|
28963
|
+
"input": [
|
|
28964
|
+
"text",
|
|
28965
|
+
"image"
|
|
28966
|
+
],
|
|
28967
|
+
"cost": {
|
|
28968
|
+
"input": 0,
|
|
28969
|
+
"output": 0,
|
|
28970
|
+
"cacheRead": 0,
|
|
28971
|
+
"cacheWrite": 0
|
|
28972
|
+
},
|
|
28973
|
+
"contextWindow": 272000,
|
|
28974
|
+
"maxTokens": 128000
|
|
28975
|
+
},
|
|
28976
|
+
"gpt-5.6-terra": {
|
|
28977
|
+
"id": "gpt-5.6-terra",
|
|
28978
|
+
"name": "GPT 5.6 Terra",
|
|
28979
|
+
"api": "kiro-codewhisperer-stream",
|
|
28980
|
+
"provider": "kiro",
|
|
28981
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
28982
|
+
"reasoning": true,
|
|
28983
|
+
"thinking": {
|
|
28984
|
+
"mode": "effort",
|
|
28985
|
+
"minLevel": "low",
|
|
28986
|
+
"maxLevel": "xhigh",
|
|
28987
|
+
"defaultLevel": "medium",
|
|
28988
|
+
"levels": [
|
|
28989
|
+
"low",
|
|
28990
|
+
"medium",
|
|
28991
|
+
"high",
|
|
28992
|
+
"xhigh"
|
|
28993
|
+
]
|
|
28994
|
+
},
|
|
28995
|
+
"input": [
|
|
28996
|
+
"text",
|
|
28997
|
+
"image"
|
|
28998
|
+
],
|
|
28999
|
+
"cost": {
|
|
29000
|
+
"input": 0,
|
|
29001
|
+
"output": 0,
|
|
29002
|
+
"cacheRead": 0,
|
|
29003
|
+
"cacheWrite": 0
|
|
29004
|
+
},
|
|
29005
|
+
"contextWindow": 272000,
|
|
29006
|
+
"maxTokens": 128000
|
|
29007
|
+
},
|
|
29008
|
+
"minimax-m2-1": {
|
|
29009
|
+
"id": "minimax-m2-1",
|
|
29010
|
+
"name": "MiniMax M2.1",
|
|
29011
|
+
"api": "kiro-codewhisperer-stream",
|
|
29012
|
+
"provider": "kiro",
|
|
29013
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
29014
|
+
"reasoning": true,
|
|
29015
|
+
"thinking": {
|
|
29016
|
+
"mode": "effort",
|
|
29017
|
+
"minLevel": "low",
|
|
29018
|
+
"maxLevel": "xhigh",
|
|
29019
|
+
"defaultLevel": "medium",
|
|
29020
|
+
"levels": [
|
|
29021
|
+
"low",
|
|
29022
|
+
"medium",
|
|
29023
|
+
"high",
|
|
29024
|
+
"xhigh"
|
|
29025
|
+
]
|
|
29026
|
+
},
|
|
29027
|
+
"input": [
|
|
29028
|
+
"text",
|
|
29029
|
+
"image"
|
|
29030
|
+
],
|
|
29031
|
+
"cost": {
|
|
29032
|
+
"input": 0,
|
|
29033
|
+
"output": 0,
|
|
29034
|
+
"cacheRead": 0,
|
|
29035
|
+
"cacheWrite": 0
|
|
29036
|
+
},
|
|
29037
|
+
"contextWindow": 196000,
|
|
29038
|
+
"maxTokens": 64000
|
|
29039
|
+
},
|
|
29040
|
+
"minimax-m2-5": {
|
|
29041
|
+
"id": "minimax-m2-5",
|
|
29042
|
+
"name": "MiniMax M2.5",
|
|
29043
|
+
"api": "kiro-codewhisperer-stream",
|
|
29044
|
+
"provider": "kiro",
|
|
29045
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
29046
|
+
"reasoning": true,
|
|
29047
|
+
"thinking": {
|
|
29048
|
+
"mode": "effort",
|
|
29049
|
+
"minLevel": "low",
|
|
29050
|
+
"maxLevel": "xhigh",
|
|
29051
|
+
"defaultLevel": "medium",
|
|
29052
|
+
"levels": [
|
|
29053
|
+
"low",
|
|
29054
|
+
"medium",
|
|
29055
|
+
"high",
|
|
29056
|
+
"xhigh"
|
|
29057
|
+
]
|
|
29058
|
+
},
|
|
29059
|
+
"input": [
|
|
29060
|
+
"text"
|
|
29061
|
+
],
|
|
29062
|
+
"cost": {
|
|
29063
|
+
"input": 0,
|
|
29064
|
+
"output": 0,
|
|
29065
|
+
"cacheRead": 0,
|
|
29066
|
+
"cacheWrite": 0
|
|
29067
|
+
},
|
|
29068
|
+
"contextWindow": 196000,
|
|
29069
|
+
"maxTokens": 64000
|
|
29070
|
+
},
|
|
29071
|
+
"minimax-m2.1": {
|
|
29072
|
+
"id": "minimax-m2.1",
|
|
29073
|
+
"name": "MiniMax M2.1",
|
|
29074
|
+
"api": "kiro-codewhisperer-stream",
|
|
29075
|
+
"provider": "kiro",
|
|
29076
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
29077
|
+
"reasoning": true,
|
|
29078
|
+
"thinking": {
|
|
29079
|
+
"mode": "effort",
|
|
29080
|
+
"minLevel": "low",
|
|
29081
|
+
"maxLevel": "xhigh",
|
|
29082
|
+
"defaultLevel": "medium",
|
|
29083
|
+
"levels": [
|
|
29084
|
+
"low",
|
|
29085
|
+
"medium",
|
|
29086
|
+
"high",
|
|
29087
|
+
"xhigh"
|
|
29088
|
+
]
|
|
29089
|
+
},
|
|
29090
|
+
"input": [
|
|
29091
|
+
"text",
|
|
29092
|
+
"image"
|
|
29093
|
+
],
|
|
29094
|
+
"cost": {
|
|
29095
|
+
"input": 0,
|
|
29096
|
+
"output": 0,
|
|
29097
|
+
"cacheRead": 0,
|
|
29098
|
+
"cacheWrite": 0
|
|
29099
|
+
},
|
|
29100
|
+
"contextWindow": 196000,
|
|
29101
|
+
"maxTokens": 64000
|
|
29102
|
+
},
|
|
29103
|
+
"minimax-m2.5": {
|
|
29104
|
+
"id": "minimax-m2.5",
|
|
29105
|
+
"name": "MiniMax M2.5",
|
|
29106
|
+
"api": "kiro-codewhisperer-stream",
|
|
29107
|
+
"provider": "kiro",
|
|
29108
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
29109
|
+
"reasoning": true,
|
|
29110
|
+
"thinking": {
|
|
29111
|
+
"mode": "effort",
|
|
29112
|
+
"minLevel": "low",
|
|
29113
|
+
"maxLevel": "xhigh",
|
|
29114
|
+
"defaultLevel": "medium",
|
|
29115
|
+
"levels": [
|
|
29116
|
+
"low",
|
|
29117
|
+
"medium",
|
|
29118
|
+
"high",
|
|
29119
|
+
"xhigh"
|
|
29120
|
+
]
|
|
29121
|
+
},
|
|
29122
|
+
"input": [
|
|
29123
|
+
"text"
|
|
29124
|
+
],
|
|
29125
|
+
"cost": {
|
|
29126
|
+
"input": 0,
|
|
29127
|
+
"output": 0,
|
|
29128
|
+
"cacheRead": 0,
|
|
29129
|
+
"cacheWrite": 0
|
|
29130
|
+
},
|
|
29131
|
+
"contextWindow": 196000,
|
|
29132
|
+
"maxTokens": 64000
|
|
29133
|
+
},
|
|
29134
|
+
"qwen3-coder-next": {
|
|
29135
|
+
"id": "qwen3-coder-next",
|
|
29136
|
+
"name": "Qwen3 Coder Next",
|
|
29137
|
+
"api": "kiro-codewhisperer-stream",
|
|
29138
|
+
"provider": "kiro",
|
|
29139
|
+
"baseUrl": "https://q.us-east-1.amazonaws.com/",
|
|
29140
|
+
"reasoning": true,
|
|
29141
|
+
"thinking": {
|
|
29142
|
+
"mode": "effort",
|
|
29143
|
+
"minLevel": "low",
|
|
29144
|
+
"maxLevel": "xhigh",
|
|
29145
|
+
"defaultLevel": "medium",
|
|
29146
|
+
"levels": [
|
|
29147
|
+
"low",
|
|
29148
|
+
"medium",
|
|
29149
|
+
"high",
|
|
29150
|
+
"xhigh"
|
|
29151
|
+
]
|
|
29152
|
+
},
|
|
29153
|
+
"input": [
|
|
29154
|
+
"text",
|
|
29155
|
+
"image"
|
|
29156
|
+
],
|
|
29157
|
+
"cost": {
|
|
29158
|
+
"input": 0,
|
|
29159
|
+
"output": 0,
|
|
29160
|
+
"cacheRead": 0,
|
|
29161
|
+
"cacheWrite": 0
|
|
29162
|
+
},
|
|
29163
|
+
"contextWindow": 256000,
|
|
29164
|
+
"maxTokens": 64000
|
|
29165
|
+
}
|
|
29166
|
+
},
|
|
28144
29167
|
"litellm": {
|
|
28145
29168
|
"abacusai/Dracarys-72B-Instruct": {
|
|
28146
29169
|
"id": "abacusai/Dracarys-72B-Instruct",
|
|
@@ -89307,6 +90330,37 @@
|
|
|
89307
90330
|
]
|
|
89308
90331
|
}
|
|
89309
90332
|
},
|
|
90333
|
+
"glm-5.3-flash": {
|
|
90334
|
+
"id": "glm-5.3-flash",
|
|
90335
|
+
"name": "GLM-5.3-Flash",
|
|
90336
|
+
"api": "anthropic-messages",
|
|
90337
|
+
"provider": "zai",
|
|
90338
|
+
"baseUrl": "https://api.z.ai/api/anthropic",
|
|
90339
|
+
"reasoning": true,
|
|
90340
|
+
"input": [
|
|
90341
|
+
"text",
|
|
90342
|
+
"image"
|
|
90343
|
+
],
|
|
90344
|
+
"cost": {
|
|
90345
|
+
"input": 0,
|
|
90346
|
+
"output": 0,
|
|
90347
|
+
"cacheRead": 0,
|
|
90348
|
+
"cacheWrite": 0
|
|
90349
|
+
},
|
|
90350
|
+
"contextWindow": 1000000,
|
|
90351
|
+
"maxTokens": 131072,
|
|
90352
|
+
"thinking": {
|
|
90353
|
+
"mode": "effort",
|
|
90354
|
+
"minLevel": "low",
|
|
90355
|
+
"maxLevel": "max",
|
|
90356
|
+
"defaultLevel": "max",
|
|
90357
|
+
"levels": [
|
|
90358
|
+
"low",
|
|
90359
|
+
"high",
|
|
90360
|
+
"max"
|
|
90361
|
+
]
|
|
90362
|
+
}
|
|
90363
|
+
},
|
|
89310
90364
|
"glm-5v-turbo": {
|
|
89311
90365
|
"id": "glm-5v-turbo",
|
|
89312
90366
|
"name": "GLM-5V-Turbo",
|