@ottocode/sdk 0.1.301 → 0.1.303
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/package.json +35 -28
- package/src/core/src/search/fff.ts +215 -0
- package/src/core/src/tools/builtin/fs/read.txt +1 -1
- package/src/core/src/tools/builtin/glob.txt +1 -1
- package/src/core/src/tools/builtin/search.ts +157 -0
- package/src/core/src/tools/builtin/search.txt +14 -0
- package/src/core/src/tools/builtin/shell.ts +23 -0
- package/src/core/src/tools/builtin/shell.txt +3 -1
- package/src/core/src/tools/loader.ts +3 -3
- package/src/prompts/src/agents/build.txt +2 -1
- package/src/prompts/src/agents/plan.txt +2 -1
- package/src/prompts/src/agents/research.txt +1 -1
- package/src/prompts/src/providers/anthropic.txt +2 -2
- package/src/prompts/src/providers/default.txt +2 -2
- package/src/prompts/src/providers/glm.txt +2 -2
- package/src/prompts/src/providers/google.txt +1 -1
- package/src/prompts/src/providers/moonshot.txt +2 -2
- package/src/prompts/src/providers/openai.txt +2 -2
- package/src/providers/src/catalog.ts +200 -206
- package/src/providers/src/oauth-models.ts +1 -0
- package/src/core/src/tools/builtin/ripgrep.ts +0 -188
- package/src/core/src/tools/builtin/ripgrep.txt +0 -14
|
@@ -1292,6 +1292,32 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
1292
1292
|
output: 4096,
|
|
1293
1293
|
},
|
|
1294
1294
|
},
|
|
1295
|
+
{
|
|
1296
|
+
id: 'claude-fable-5',
|
|
1297
|
+
ownedBy: 'anthropic',
|
|
1298
|
+
label: 'Claude Fable 5',
|
|
1299
|
+
modalities: {
|
|
1300
|
+
input: ['text', 'image', 'pdf'],
|
|
1301
|
+
output: ['text'],
|
|
1302
|
+
},
|
|
1303
|
+
toolCall: true,
|
|
1304
|
+
reasoningText: true,
|
|
1305
|
+
attachment: true,
|
|
1306
|
+
temperature: false,
|
|
1307
|
+
releaseDate: '2026-06-09',
|
|
1308
|
+
lastUpdated: '2026-06-09',
|
|
1309
|
+
openWeights: false,
|
|
1310
|
+
cost: {
|
|
1311
|
+
input: 10,
|
|
1312
|
+
output: 50,
|
|
1313
|
+
cacheRead: 1,
|
|
1314
|
+
cacheWrite: 12.5,
|
|
1315
|
+
},
|
|
1316
|
+
limit: {
|
|
1317
|
+
context: 1000000,
|
|
1318
|
+
output: 128000,
|
|
1319
|
+
},
|
|
1320
|
+
},
|
|
1295
1321
|
{
|
|
1296
1322
|
id: 'claude-haiku-4-5',
|
|
1297
1323
|
ownedBy: 'anthropic',
|
|
@@ -2291,13 +2317,13 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2291
2317
|
lastUpdated: '2026-04-27',
|
|
2292
2318
|
openWeights: false,
|
|
2293
2319
|
cost: {
|
|
2294
|
-
input: 0.
|
|
2295
|
-
output: 3.
|
|
2296
|
-
cacheRead: 0.
|
|
2320
|
+
input: 0.68,
|
|
2321
|
+
output: 3.41,
|
|
2322
|
+
cacheRead: 0.34,
|
|
2297
2323
|
},
|
|
2298
2324
|
limit: {
|
|
2299
|
-
context:
|
|
2300
|
-
output:
|
|
2325
|
+
context: 262142,
|
|
2326
|
+
output: 262142,
|
|
2301
2327
|
},
|
|
2302
2328
|
},
|
|
2303
2329
|
{
|
|
@@ -2967,30 +2993,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
2967
2993
|
output: 64000,
|
|
2968
2994
|
},
|
|
2969
2995
|
},
|
|
2970
|
-
{
|
|
2971
|
-
id: 'baidu/ernie-4.5-vl-28b-a3b',
|
|
2972
|
-
label: 'ERNIE 4.5 VL 28B A3B',
|
|
2973
|
-
modalities: {
|
|
2974
|
-
input: ['text', 'image'],
|
|
2975
|
-
output: ['text'],
|
|
2976
|
-
},
|
|
2977
|
-
toolCall: true,
|
|
2978
|
-
reasoningText: true,
|
|
2979
|
-
attachment: true,
|
|
2980
|
-
temperature: true,
|
|
2981
|
-
knowledge: '2025-03-31',
|
|
2982
|
-
releaseDate: '2025-08-12',
|
|
2983
|
-
lastUpdated: '2025-08-12',
|
|
2984
|
-
openWeights: true,
|
|
2985
|
-
cost: {
|
|
2986
|
-
input: 0.14,
|
|
2987
|
-
output: 0.56,
|
|
2988
|
-
},
|
|
2989
|
-
limit: {
|
|
2990
|
-
context: 30000,
|
|
2991
|
-
output: 8000,
|
|
2992
|
-
},
|
|
2993
|
-
},
|
|
2994
2996
|
{
|
|
2995
2997
|
id: 'bytedance-seed/seed-1.6',
|
|
2996
2998
|
label: 'Seed 1.6',
|
|
@@ -3207,7 +3209,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3207
3209
|
},
|
|
3208
3210
|
{
|
|
3209
3211
|
id: 'deepseek/deepseek-r1',
|
|
3210
|
-
label: 'R1',
|
|
3212
|
+
label: 'DeepSeek-R1',
|
|
3211
3213
|
modalities: {
|
|
3212
3214
|
input: ['text'],
|
|
3213
3215
|
output: ['text'],
|
|
@@ -3216,9 +3218,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3216
3218
|
reasoningText: true,
|
|
3217
3219
|
attachment: false,
|
|
3218
3220
|
temperature: true,
|
|
3219
|
-
knowledge: '2024-07
|
|
3221
|
+
knowledge: '2024-07',
|
|
3220
3222
|
releaseDate: '2025-01-20',
|
|
3221
|
-
lastUpdated: '2025-
|
|
3223
|
+
lastUpdated: '2025-05-29',
|
|
3222
3224
|
openWeights: true,
|
|
3223
3225
|
cost: {
|
|
3224
3226
|
input: 0.7,
|
|
@@ -3741,8 +3743,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3741
3743
|
lastUpdated: '2025-03-13',
|
|
3742
3744
|
openWeights: true,
|
|
3743
3745
|
cost: {
|
|
3744
|
-
input: 0.
|
|
3745
|
-
output: 0.
|
|
3746
|
+
input: 0.05,
|
|
3747
|
+
output: 0.15,
|
|
3746
3748
|
},
|
|
3747
3749
|
limit: {
|
|
3748
3750
|
context: 131072,
|
|
@@ -3839,11 +3841,12 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
3839
3841
|
openWeights: true,
|
|
3840
3842
|
cost: {
|
|
3841
3843
|
input: 0.12,
|
|
3842
|
-
output: 0.
|
|
3844
|
+
output: 0.36,
|
|
3845
|
+
cacheRead: 0.09,
|
|
3843
3846
|
},
|
|
3844
3847
|
limit: {
|
|
3845
|
-
context:
|
|
3846
|
-
output:
|
|
3848
|
+
context: 256000,
|
|
3849
|
+
output: 8192,
|
|
3847
3850
|
},
|
|
3848
3851
|
},
|
|
3849
3852
|
{
|
|
@@ -4055,10 +4058,10 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4055
4058
|
openWeights: true,
|
|
4056
4059
|
cost: {
|
|
4057
4060
|
input: 0.02,
|
|
4058
|
-
output: 0.
|
|
4061
|
+
output: 0.03,
|
|
4059
4062
|
},
|
|
4060
4063
|
limit: {
|
|
4061
|
-
context:
|
|
4064
|
+
context: 131072,
|
|
4062
4065
|
output: 16384,
|
|
4063
4066
|
},
|
|
4064
4067
|
},
|
|
@@ -4150,7 +4153,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4150
4153
|
lastUpdated: '2025-04-05',
|
|
4151
4154
|
openWeights: true,
|
|
4152
4155
|
cost: {
|
|
4153
|
-
input: 0.
|
|
4156
|
+
input: 0.1,
|
|
4154
4157
|
output: 0.3,
|
|
4155
4158
|
},
|
|
4156
4159
|
limit: {
|
|
@@ -4278,7 +4281,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4278
4281
|
},
|
|
4279
4282
|
limit: {
|
|
4280
4283
|
context: 196608,
|
|
4281
|
-
output:
|
|
4284
|
+
output: 196608,
|
|
4282
4285
|
},
|
|
4283
4286
|
},
|
|
4284
4287
|
{
|
|
@@ -4841,13 +4844,13 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4841
4844
|
lastUpdated: '2026-04-21',
|
|
4842
4845
|
openWeights: true,
|
|
4843
4846
|
cost: {
|
|
4844
|
-
input: 0.
|
|
4845
|
-
output: 3.
|
|
4846
|
-
cacheRead: 0.
|
|
4847
|
+
input: 0.68,
|
|
4848
|
+
output: 3.41,
|
|
4849
|
+
cacheRead: 0.34,
|
|
4847
4850
|
},
|
|
4848
4851
|
limit: {
|
|
4849
|
-
context:
|
|
4850
|
-
output:
|
|
4852
|
+
context: 262142,
|
|
4853
|
+
output: 262142,
|
|
4851
4854
|
},
|
|
4852
4855
|
},
|
|
4853
4856
|
{
|
|
@@ -4876,31 +4879,31 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4876
4879
|
},
|
|
4877
4880
|
},
|
|
4878
4881
|
{
|
|
4879
|
-
id: 'nex-agi/
|
|
4880
|
-
label: '
|
|
4882
|
+
id: 'nex-agi/nex-n2-pro:free',
|
|
4883
|
+
label: 'Nex-N2-Pro (free)',
|
|
4881
4884
|
modalities: {
|
|
4882
|
-
input: ['text'],
|
|
4885
|
+
input: ['text', 'image'],
|
|
4883
4886
|
output: ['text'],
|
|
4884
4887
|
},
|
|
4885
4888
|
toolCall: true,
|
|
4886
|
-
reasoningText:
|
|
4887
|
-
attachment:
|
|
4889
|
+
reasoningText: true,
|
|
4890
|
+
attachment: true,
|
|
4888
4891
|
temperature: true,
|
|
4889
|
-
releaseDate: '
|
|
4890
|
-
lastUpdated: '
|
|
4892
|
+
releaseDate: '2026-06-08',
|
|
4893
|
+
lastUpdated: '2026-06-08',
|
|
4891
4894
|
openWeights: true,
|
|
4892
4895
|
cost: {
|
|
4893
|
-
input: 0
|
|
4894
|
-
output: 0
|
|
4896
|
+
input: 0,
|
|
4897
|
+
output: 0,
|
|
4895
4898
|
},
|
|
4896
4899
|
limit: {
|
|
4897
|
-
context:
|
|
4898
|
-
output:
|
|
4900
|
+
context: 262144,
|
|
4901
|
+
output: 262144,
|
|
4899
4902
|
},
|
|
4900
4903
|
},
|
|
4901
4904
|
{
|
|
4902
4905
|
id: 'nvidia/llama-3.3-nemotron-super-49b-v1.5',
|
|
4903
|
-
label: 'Llama 3.3 Nemotron Super 49B
|
|
4906
|
+
label: 'Llama 3.3 Nemotron Super 49B v1.5',
|
|
4904
4907
|
modalities: {
|
|
4905
4908
|
input: ['text'],
|
|
4906
4909
|
output: ['text'],
|
|
@@ -4909,12 +4912,11 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4909
4912
|
reasoningText: true,
|
|
4910
4913
|
attachment: false,
|
|
4911
4914
|
temperature: true,
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
lastUpdated: '2025-10-10',
|
|
4915
|
+
releaseDate: '2025-07-25',
|
|
4916
|
+
lastUpdated: '2025-07-25',
|
|
4915
4917
|
openWeights: true,
|
|
4916
4918
|
cost: {
|
|
4917
|
-
input: 0.
|
|
4919
|
+
input: 0.4,
|
|
4918
4920
|
output: 0.4,
|
|
4919
4921
|
},
|
|
4920
4922
|
limit: {
|
|
@@ -4933,8 +4935,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4933
4935
|
reasoningText: true,
|
|
4934
4936
|
attachment: false,
|
|
4935
4937
|
temperature: true,
|
|
4936
|
-
releaseDate: '2025-12-
|
|
4937
|
-
lastUpdated: '2025-12-
|
|
4938
|
+
releaseDate: '2025-12-15',
|
|
4939
|
+
lastUpdated: '2025-12-15',
|
|
4938
4940
|
openWeights: true,
|
|
4939
4941
|
cost: {
|
|
4940
4942
|
input: 0.05,
|
|
@@ -4956,9 +4958,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4956
4958
|
reasoningText: true,
|
|
4957
4959
|
attachment: false,
|
|
4958
4960
|
temperature: true,
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
lastUpdated: '2025-12-14',
|
|
4961
|
+
releaseDate: '2025-12-15',
|
|
4962
|
+
lastUpdated: '2025-12-15',
|
|
4962
4963
|
openWeights: true,
|
|
4963
4964
|
cost: {
|
|
4964
4965
|
input: 0,
|
|
@@ -4973,7 +4974,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4973
4974
|
id: 'nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free',
|
|
4974
4975
|
label: 'Nemotron 3 Nano Omni (free)',
|
|
4975
4976
|
modalities: {
|
|
4976
|
-
input: ['text', '
|
|
4977
|
+
input: ['text', 'image', 'video', 'audio'],
|
|
4977
4978
|
output: ['text'],
|
|
4978
4979
|
},
|
|
4979
4980
|
toolCall: true,
|
|
@@ -4982,7 +4983,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4982
4983
|
temperature: true,
|
|
4983
4984
|
releaseDate: '2026-04-28',
|
|
4984
4985
|
lastUpdated: '2026-04-28',
|
|
4985
|
-
openWeights:
|
|
4986
|
+
openWeights: true,
|
|
4986
4987
|
cost: {
|
|
4987
4988
|
input: 0,
|
|
4988
4989
|
output: 0,
|
|
@@ -4994,7 +4995,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
4994
4995
|
},
|
|
4995
4996
|
{
|
|
4996
4997
|
id: 'nvidia/nemotron-3-super-120b-a12b',
|
|
4997
|
-
label: 'Nemotron 3 Super',
|
|
4998
|
+
label: 'Nemotron 3 Super 120B A12B',
|
|
4998
4999
|
modalities: {
|
|
4999
5000
|
input: ['text'],
|
|
5000
5001
|
output: ['text'],
|
|
@@ -5003,7 +5004,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5003
5004
|
reasoningText: true,
|
|
5004
5005
|
attachment: false,
|
|
5005
5006
|
temperature: true,
|
|
5006
|
-
knowledge: '2024-04',
|
|
5007
5007
|
releaseDate: '2026-03-11',
|
|
5008
5008
|
lastUpdated: '2026-03-11',
|
|
5009
5009
|
openWeights: true,
|
|
@@ -5027,7 +5027,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5027
5027
|
reasoningText: true,
|
|
5028
5028
|
attachment: false,
|
|
5029
5029
|
temperature: true,
|
|
5030
|
-
knowledge: '2024-04',
|
|
5031
5030
|
releaseDate: '2026-03-11',
|
|
5032
5031
|
lastUpdated: '2026-03-11',
|
|
5033
5032
|
openWeights: true,
|
|
@@ -5042,7 +5041,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5042
5041
|
},
|
|
5043
5042
|
{
|
|
5044
5043
|
id: 'nvidia/nemotron-3-ultra-550b-a55b',
|
|
5045
|
-
label: 'Nemotron 3 Ultra',
|
|
5044
|
+
label: 'Nemotron 3 Ultra 550B A55B',
|
|
5046
5045
|
modalities: {
|
|
5047
5046
|
input: ['text'],
|
|
5048
5047
|
output: ['text'],
|
|
@@ -5091,14 +5090,13 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5091
5090
|
id: 'nvidia/nemotron-nano-12b-v2-vl:free',
|
|
5092
5091
|
label: 'Nemotron Nano 12B 2 VL (free)',
|
|
5093
5092
|
modalities: {
|
|
5094
|
-
input: ['
|
|
5093
|
+
input: ['text', 'image', 'video'],
|
|
5095
5094
|
output: ['text'],
|
|
5096
5095
|
},
|
|
5097
5096
|
toolCall: true,
|
|
5098
5097
|
reasoningText: true,
|
|
5099
5098
|
attachment: true,
|
|
5100
5099
|
temperature: true,
|
|
5101
|
-
knowledge: '2025-11',
|
|
5102
5100
|
releaseDate: '2025-10-28',
|
|
5103
5101
|
lastUpdated: '2025-10-28',
|
|
5104
5102
|
openWeights: true,
|
|
@@ -5113,7 +5111,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5113
5111
|
},
|
|
5114
5112
|
{
|
|
5115
5113
|
id: 'nvidia/nemotron-nano-9b-v2',
|
|
5116
|
-
label: 'Nemotron Nano 9B
|
|
5114
|
+
label: 'Nemotron Nano 9B v2',
|
|
5117
5115
|
modalities: {
|
|
5118
5116
|
input: ['text'],
|
|
5119
5117
|
output: ['text'],
|
|
@@ -5122,9 +5120,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5122
5120
|
reasoningText: true,
|
|
5123
5121
|
attachment: false,
|
|
5124
5122
|
temperature: true,
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
lastUpdated: '2025-09-05',
|
|
5123
|
+
releaseDate: '2025-08-18',
|
|
5124
|
+
lastUpdated: '2025-08-18',
|
|
5128
5125
|
openWeights: true,
|
|
5129
5126
|
cost: {
|
|
5130
5127
|
input: 0.04,
|
|
@@ -5146,9 +5143,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5146
5143
|
reasoningText: true,
|
|
5147
5144
|
attachment: false,
|
|
5148
5145
|
temperature: true,
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
lastUpdated: '2025-09-05',
|
|
5146
|
+
releaseDate: '2025-08-18',
|
|
5147
|
+
lastUpdated: '2025-08-18',
|
|
5152
5148
|
openWeights: true,
|
|
5153
5149
|
cost: {
|
|
5154
5150
|
input: 0,
|
|
@@ -5259,31 +5255,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
5259
5255
|
output: 4096,
|
|
5260
5256
|
},
|
|
5261
5257
|
},
|
|
5262
|
-
{
|
|
5263
|
-
id: 'openai/gpt-4-1106-preview',
|
|
5264
|
-
ownedBy: 'openai',
|
|
5265
|
-
label: 'GPT-4 Turbo (older v1106)',
|
|
5266
|
-
modalities: {
|
|
5267
|
-
input: ['text'],
|
|
5268
|
-
output: ['text'],
|
|
5269
|
-
},
|
|
5270
|
-
toolCall: true,
|
|
5271
|
-
reasoningText: false,
|
|
5272
|
-
attachment: false,
|
|
5273
|
-
temperature: true,
|
|
5274
|
-
knowledge: '2023-04-30',
|
|
5275
|
-
releaseDate: '2023-11-06',
|
|
5276
|
-
lastUpdated: '2023-11-06',
|
|
5277
|
-
openWeights: false,
|
|
5278
|
-
cost: {
|
|
5279
|
-
input: 10,
|
|
5280
|
-
output: 30,
|
|
5281
|
-
},
|
|
5282
|
-
limit: {
|
|
5283
|
-
context: 128000,
|
|
5284
|
-
output: 4096,
|
|
5285
|
-
},
|
|
5286
|
-
},
|
|
5287
5258
|
{
|
|
5288
5259
|
id: 'openai/gpt-4-turbo',
|
|
5289
5260
|
ownedBy: 'openai',
|
|
@@ -6726,7 +6697,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6726
6697
|
},
|
|
6727
6698
|
{
|
|
6728
6699
|
id: 'qwen/qwen-plus',
|
|
6729
|
-
label: 'Qwen
|
|
6700
|
+
label: 'Qwen Plus',
|
|
6730
6701
|
modalities: {
|
|
6731
6702
|
input: ['text'],
|
|
6732
6703
|
output: ['text'],
|
|
@@ -6735,9 +6706,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6735
6706
|
reasoningText: false,
|
|
6736
6707
|
attachment: false,
|
|
6737
6708
|
temperature: true,
|
|
6738
|
-
knowledge: '
|
|
6739
|
-
releaseDate: '
|
|
6740
|
-
lastUpdated: '2025-
|
|
6709
|
+
knowledge: '2024-04',
|
|
6710
|
+
releaseDate: '2024-01-25',
|
|
6711
|
+
lastUpdated: '2025-09-11',
|
|
6741
6712
|
openWeights: false,
|
|
6742
6713
|
cost: {
|
|
6743
6714
|
input: 0.26,
|
|
@@ -6825,7 +6796,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6825
6796
|
},
|
|
6826
6797
|
{
|
|
6827
6798
|
id: 'qwen/qwen3-235b-a22b',
|
|
6828
|
-
label: 'Qwen3 235B
|
|
6799
|
+
label: 'Qwen3 235B-A22B',
|
|
6829
6800
|
modalities: {
|
|
6830
6801
|
input: ['text'],
|
|
6831
6802
|
output: ['text'],
|
|
@@ -6834,9 +6805,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6834
6805
|
reasoningText: true,
|
|
6835
6806
|
attachment: false,
|
|
6836
6807
|
temperature: true,
|
|
6837
|
-
knowledge: '2025-
|
|
6838
|
-
releaseDate: '2025-04
|
|
6839
|
-
lastUpdated: '2025-04
|
|
6808
|
+
knowledge: '2025-04',
|
|
6809
|
+
releaseDate: '2025-04',
|
|
6810
|
+
lastUpdated: '2025-04',
|
|
6840
6811
|
openWeights: true,
|
|
6841
6812
|
cost: {
|
|
6842
6813
|
input: 0.455,
|
|
@@ -6863,7 +6834,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6863
6834
|
lastUpdated: '2025-07-21',
|
|
6864
6835
|
openWeights: true,
|
|
6865
6836
|
cost: {
|
|
6866
|
-
input: 0.
|
|
6837
|
+
input: 0.09,
|
|
6867
6838
|
output: 0.1,
|
|
6868
6839
|
},
|
|
6869
6840
|
limit: {
|
|
@@ -6912,12 +6883,12 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6912
6883
|
lastUpdated: '2025-04-28',
|
|
6913
6884
|
openWeights: true,
|
|
6914
6885
|
cost: {
|
|
6915
|
-
input: 0.
|
|
6916
|
-
output: 0.
|
|
6886
|
+
input: 0.12,
|
|
6887
|
+
output: 0.5,
|
|
6917
6888
|
},
|
|
6918
6889
|
limit: {
|
|
6919
6890
|
context: 40960,
|
|
6920
|
-
output:
|
|
6891
|
+
output: 16384,
|
|
6921
6892
|
},
|
|
6922
6893
|
},
|
|
6923
6894
|
{
|
|
@@ -6980,9 +6951,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
6980
6951
|
reasoningText: true,
|
|
6981
6952
|
attachment: false,
|
|
6982
6953
|
temperature: true,
|
|
6983
|
-
knowledge: '2025-
|
|
6984
|
-
releaseDate: '2025-04
|
|
6985
|
-
lastUpdated: '2025-04
|
|
6954
|
+
knowledge: '2025-04',
|
|
6955
|
+
releaseDate: '2025-04',
|
|
6956
|
+
lastUpdated: '2025-04',
|
|
6986
6957
|
openWeights: true,
|
|
6987
6958
|
cost: {
|
|
6988
6959
|
input: 0.08,
|
|
@@ -7044,7 +7015,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7044
7015
|
},
|
|
7045
7016
|
{
|
|
7046
7017
|
id: 'qwen/qwen3-coder-30b-a3b-instruct',
|
|
7047
|
-
label: 'Qwen3
|
|
7018
|
+
label: 'Qwen3-Coder 30B-A3B Instruct',
|
|
7048
7019
|
modalities: {
|
|
7049
7020
|
input: ['text'],
|
|
7050
7021
|
output: ['text'],
|
|
@@ -7053,9 +7024,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7053
7024
|
reasoningText: false,
|
|
7054
7025
|
attachment: false,
|
|
7055
7026
|
temperature: true,
|
|
7056
|
-
knowledge: '2025-
|
|
7057
|
-
releaseDate: '2025-
|
|
7058
|
-
lastUpdated: '2025-
|
|
7027
|
+
knowledge: '2025-04',
|
|
7028
|
+
releaseDate: '2025-04',
|
|
7029
|
+
lastUpdated: '2025-04',
|
|
7059
7030
|
openWeights: true,
|
|
7060
7031
|
cost: {
|
|
7061
7032
|
input: 0.07,
|
|
@@ -7077,9 +7048,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7077
7048
|
reasoningText: false,
|
|
7078
7049
|
attachment: false,
|
|
7079
7050
|
temperature: true,
|
|
7080
|
-
knowledge: '2025-
|
|
7081
|
-
releaseDate: '2025-
|
|
7082
|
-
lastUpdated: '2025-
|
|
7051
|
+
knowledge: '2025-04',
|
|
7052
|
+
releaseDate: '2025-07-28',
|
|
7053
|
+
lastUpdated: '2025-07-28',
|
|
7083
7054
|
openWeights: false,
|
|
7084
7055
|
cost: {
|
|
7085
7056
|
input: 0.195,
|
|
@@ -7127,9 +7098,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7127
7098
|
reasoningText: false,
|
|
7128
7099
|
attachment: false,
|
|
7129
7100
|
temperature: true,
|
|
7130
|
-
knowledge: '2025-
|
|
7131
|
-
releaseDate: '2025-
|
|
7132
|
-
lastUpdated: '2025-
|
|
7101
|
+
knowledge: '2025-04',
|
|
7102
|
+
releaseDate: '2025-07-23',
|
|
7103
|
+
lastUpdated: '2025-07-23',
|
|
7133
7104
|
openWeights: false,
|
|
7134
7105
|
cost: {
|
|
7135
7106
|
input: 0.65,
|
|
@@ -7177,7 +7148,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7177
7148
|
reasoningText: false,
|
|
7178
7149
|
attachment: false,
|
|
7179
7150
|
temperature: true,
|
|
7180
|
-
knowledge: '2025-
|
|
7151
|
+
knowledge: '2025-04',
|
|
7181
7152
|
releaseDate: '2025-09-23',
|
|
7182
7153
|
lastUpdated: '2025-09-23',
|
|
7183
7154
|
openWeights: false,
|
|
@@ -7217,7 +7188,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7217
7188
|
},
|
|
7218
7189
|
{
|
|
7219
7190
|
id: 'qwen/qwen3-next-80b-a3b-instruct',
|
|
7220
|
-
label: 'Qwen3
|
|
7191
|
+
label: 'Qwen3-Next 80B-A3B Instruct',
|
|
7221
7192
|
modalities: {
|
|
7222
7193
|
input: ['text'],
|
|
7223
7194
|
output: ['text'],
|
|
@@ -7226,9 +7197,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7226
7197
|
reasoningText: false,
|
|
7227
7198
|
attachment: false,
|
|
7228
7199
|
temperature: true,
|
|
7229
|
-
knowledge: '2025-
|
|
7230
|
-
releaseDate: '2025-09
|
|
7231
|
-
lastUpdated: '2025-09
|
|
7200
|
+
knowledge: '2025-04',
|
|
7201
|
+
releaseDate: '2025-09',
|
|
7202
|
+
lastUpdated: '2025-09',
|
|
7232
7203
|
openWeights: true,
|
|
7233
7204
|
cost: {
|
|
7234
7205
|
input: 0.09,
|
|
@@ -7250,9 +7221,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7250
7221
|
reasoningText: false,
|
|
7251
7222
|
attachment: false,
|
|
7252
7223
|
temperature: true,
|
|
7253
|
-
knowledge: '2025-
|
|
7254
|
-
releaseDate: '2025-09
|
|
7255
|
-
lastUpdated: '2025-09
|
|
7224
|
+
knowledge: '2025-04',
|
|
7225
|
+
releaseDate: '2025-09',
|
|
7226
|
+
lastUpdated: '2025-09',
|
|
7256
7227
|
openWeights: true,
|
|
7257
7228
|
cost: {
|
|
7258
7229
|
input: 0,
|
|
@@ -7265,7 +7236,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7265
7236
|
},
|
|
7266
7237
|
{
|
|
7267
7238
|
id: 'qwen/qwen3-next-80b-a3b-thinking',
|
|
7268
|
-
label: 'Qwen3
|
|
7239
|
+
label: 'Qwen3-Next 80B-A3B (Thinking)',
|
|
7269
7240
|
modalities: {
|
|
7270
7241
|
input: ['text'],
|
|
7271
7242
|
output: ['text'],
|
|
@@ -7274,9 +7245,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7274
7245
|
reasoningText: true,
|
|
7275
7246
|
attachment: false,
|
|
7276
7247
|
temperature: true,
|
|
7277
|
-
knowledge: '2025-
|
|
7278
|
-
releaseDate: '2025-09
|
|
7279
|
-
lastUpdated: '2025-09
|
|
7248
|
+
knowledge: '2025-04',
|
|
7249
|
+
releaseDate: '2025-09',
|
|
7250
|
+
lastUpdated: '2025-09',
|
|
7280
7251
|
openWeights: true,
|
|
7281
7252
|
cost: {
|
|
7282
7253
|
input: 0.0975,
|
|
@@ -7455,7 +7426,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7455
7426
|
},
|
|
7456
7427
|
{
|
|
7457
7428
|
id: 'qwen/qwen3.5-122b-a10b',
|
|
7458
|
-
label: 'Qwen3.5
|
|
7429
|
+
label: 'Qwen3.5 122B-A10B',
|
|
7459
7430
|
modalities: {
|
|
7460
7431
|
input: ['text', 'image', 'video'],
|
|
7461
7432
|
output: ['text'],
|
|
@@ -7464,8 +7435,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7464
7435
|
reasoningText: true,
|
|
7465
7436
|
attachment: true,
|
|
7466
7437
|
temperature: true,
|
|
7467
|
-
releaseDate: '2026-02-
|
|
7468
|
-
lastUpdated: '2026-02-
|
|
7438
|
+
releaseDate: '2026-02-23',
|
|
7439
|
+
lastUpdated: '2026-02-23',
|
|
7469
7440
|
openWeights: true,
|
|
7470
7441
|
cost: {
|
|
7471
7442
|
input: 0.26,
|
|
@@ -7478,7 +7449,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7478
7449
|
},
|
|
7479
7450
|
{
|
|
7480
7451
|
id: 'qwen/qwen3.5-27b',
|
|
7481
|
-
label: 'Qwen3.5
|
|
7452
|
+
label: 'Qwen3.5 27B',
|
|
7482
7453
|
modalities: {
|
|
7483
7454
|
input: ['text', 'image', 'video'],
|
|
7484
7455
|
output: ['text'],
|
|
@@ -7487,8 +7458,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7487
7458
|
reasoningText: true,
|
|
7488
7459
|
attachment: true,
|
|
7489
7460
|
temperature: true,
|
|
7490
|
-
releaseDate: '2026-02-
|
|
7491
|
-
lastUpdated: '2026-02-
|
|
7461
|
+
releaseDate: '2026-02-23',
|
|
7462
|
+
lastUpdated: '2026-02-23',
|
|
7492
7463
|
openWeights: true,
|
|
7493
7464
|
cost: {
|
|
7494
7465
|
input: 0.195,
|
|
@@ -7501,7 +7472,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7501
7472
|
},
|
|
7502
7473
|
{
|
|
7503
7474
|
id: 'qwen/qwen3.5-35b-a3b',
|
|
7504
|
-
label: 'Qwen3.5
|
|
7475
|
+
label: 'Qwen3.5 35B-A3B',
|
|
7505
7476
|
modalities: {
|
|
7506
7477
|
input: ['text', 'image', 'video'],
|
|
7507
7478
|
output: ['text'],
|
|
@@ -7510,8 +7481,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7510
7481
|
reasoningText: true,
|
|
7511
7482
|
attachment: true,
|
|
7512
7483
|
temperature: true,
|
|
7513
|
-
releaseDate: '2026-02-
|
|
7514
|
-
lastUpdated: '2026-02-
|
|
7484
|
+
releaseDate: '2026-02-23',
|
|
7485
|
+
lastUpdated: '2026-02-23',
|
|
7515
7486
|
openWeights: true,
|
|
7516
7487
|
cost: {
|
|
7517
7488
|
input: 0.14,
|
|
@@ -7525,7 +7496,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7525
7496
|
},
|
|
7526
7497
|
{
|
|
7527
7498
|
id: 'qwen/qwen3.5-397b-a17b',
|
|
7528
|
-
label: 'Qwen3.5 397B
|
|
7499
|
+
label: 'Qwen3.5 397B-A17B',
|
|
7529
7500
|
modalities: {
|
|
7530
7501
|
input: ['text', 'image', 'video'],
|
|
7531
7502
|
output: ['text'],
|
|
@@ -7534,9 +7505,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7534
7505
|
reasoningText: true,
|
|
7535
7506
|
attachment: true,
|
|
7536
7507
|
temperature: true,
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
lastUpdated: '2026-02-16',
|
|
7508
|
+
releaseDate: '2026-02-15',
|
|
7509
|
+
lastUpdated: '2026-02-15',
|
|
7540
7510
|
openWeights: true,
|
|
7541
7511
|
cost: {
|
|
7542
7512
|
input: 0.39,
|
|
@@ -7562,12 +7532,12 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7562
7532
|
lastUpdated: '2026-03-10',
|
|
7563
7533
|
openWeights: true,
|
|
7564
7534
|
cost: {
|
|
7565
|
-
input: 0.
|
|
7535
|
+
input: 0.1,
|
|
7566
7536
|
output: 0.15,
|
|
7567
7537
|
},
|
|
7568
7538
|
limit: {
|
|
7569
7539
|
context: 262144,
|
|
7570
|
-
output:
|
|
7540
|
+
output: 262144,
|
|
7571
7541
|
},
|
|
7572
7542
|
},
|
|
7573
7543
|
{
|
|
@@ -7652,21 +7622,21 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7652
7622
|
reasoningText: true,
|
|
7653
7623
|
attachment: true,
|
|
7654
7624
|
temperature: true,
|
|
7655
|
-
releaseDate: '2026-04-
|
|
7656
|
-
lastUpdated: '2026-04-
|
|
7625
|
+
releaseDate: '2026-04-22',
|
|
7626
|
+
lastUpdated: '2026-04-22',
|
|
7657
7627
|
openWeights: true,
|
|
7658
7628
|
cost: {
|
|
7659
|
-
input: 0.
|
|
7660
|
-
output:
|
|
7629
|
+
input: 0.289,
|
|
7630
|
+
output: 2.4,
|
|
7661
7631
|
},
|
|
7662
7632
|
limit: {
|
|
7663
|
-
context:
|
|
7664
|
-
output:
|
|
7633
|
+
context: 131072,
|
|
7634
|
+
output: 131072,
|
|
7665
7635
|
},
|
|
7666
7636
|
},
|
|
7667
7637
|
{
|
|
7668
7638
|
id: 'qwen/qwen3.6-35b-a3b',
|
|
7669
|
-
label: 'Qwen3.6 35B
|
|
7639
|
+
label: 'Qwen3.6 35B-A3B',
|
|
7670
7640
|
modalities: {
|
|
7671
7641
|
input: ['text', 'image', 'video'],
|
|
7672
7642
|
output: ['text'],
|
|
@@ -7675,8 +7645,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7675
7645
|
reasoningText: true,
|
|
7676
7646
|
attachment: true,
|
|
7677
7647
|
temperature: true,
|
|
7678
|
-
releaseDate: '2026-04-
|
|
7679
|
-
lastUpdated: '2026-04-
|
|
7648
|
+
releaseDate: '2026-04-17',
|
|
7649
|
+
lastUpdated: '2026-04-17',
|
|
7680
7650
|
openWeights: true,
|
|
7681
7651
|
cost: {
|
|
7682
7652
|
input: 0.14,
|
|
@@ -7722,8 +7692,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7722
7692
|
reasoningText: true,
|
|
7723
7693
|
attachment: false,
|
|
7724
7694
|
temperature: true,
|
|
7725
|
-
|
|
7726
|
-
|
|
7695
|
+
knowledge: '2025-04',
|
|
7696
|
+
releaseDate: '2026-04-20',
|
|
7697
|
+
lastUpdated: '2026-04-20',
|
|
7727
7698
|
openWeights: false,
|
|
7728
7699
|
cost: {
|
|
7729
7700
|
input: 1.04,
|
|
@@ -7796,8 +7767,9 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7796
7767
|
reasoningText: true,
|
|
7797
7768
|
attachment: true,
|
|
7798
7769
|
temperature: true,
|
|
7799
|
-
|
|
7800
|
-
|
|
7770
|
+
knowledge: '2025-04',
|
|
7771
|
+
releaseDate: '2026-06-02',
|
|
7772
|
+
lastUpdated: '2026-06-02',
|
|
7801
7773
|
openWeights: false,
|
|
7802
7774
|
cost: {
|
|
7803
7775
|
input: 0.4,
|
|
@@ -7856,30 +7828,6 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7856
7828
|
output: 128000,
|
|
7857
7829
|
},
|
|
7858
7830
|
},
|
|
7859
|
-
{
|
|
7860
|
-
id: 'sao10k/l3-euryale-70b',
|
|
7861
|
-
label: 'Llama 3 Euryale 70B v2.1',
|
|
7862
|
-
modalities: {
|
|
7863
|
-
input: ['text'],
|
|
7864
|
-
output: ['text'],
|
|
7865
|
-
},
|
|
7866
|
-
toolCall: true,
|
|
7867
|
-
reasoningText: false,
|
|
7868
|
-
attachment: false,
|
|
7869
|
-
temperature: true,
|
|
7870
|
-
knowledge: '2023-12-31',
|
|
7871
|
-
releaseDate: '2024-06-18',
|
|
7872
|
-
lastUpdated: '2024-06-18',
|
|
7873
|
-
openWeights: true,
|
|
7874
|
-
cost: {
|
|
7875
|
-
input: 1.48,
|
|
7876
|
-
output: 1.48,
|
|
7877
|
-
},
|
|
7878
|
-
limit: {
|
|
7879
|
-
context: 8192,
|
|
7880
|
-
output: 8192,
|
|
7881
|
-
},
|
|
7882
|
-
},
|
|
7883
7831
|
{
|
|
7884
7832
|
id: 'sao10k/l3.1-euryale-70b',
|
|
7885
7833
|
label: 'Llama 3.1 Euryale 70B v2.2',
|
|
@@ -7917,7 +7865,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7917
7865
|
temperature: true,
|
|
7918
7866
|
knowledge: '2025-01',
|
|
7919
7867
|
releaseDate: '2026-01-29',
|
|
7920
|
-
lastUpdated: '2026-
|
|
7868
|
+
lastUpdated: '2026-02-13',
|
|
7921
7869
|
openWeights: true,
|
|
7922
7870
|
cost: {
|
|
7923
7871
|
input: 0.09,
|
|
@@ -7940,9 +7888,10 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7940
7888
|
reasoningText: true,
|
|
7941
7889
|
attachment: true,
|
|
7942
7890
|
temperature: true,
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7891
|
+
knowledge: '2026-01-01',
|
|
7892
|
+
releaseDate: '2026-05-29',
|
|
7893
|
+
lastUpdated: '2026-05-29',
|
|
7894
|
+
openWeights: true,
|
|
7946
7895
|
cost: {
|
|
7947
7896
|
input: 0.2,
|
|
7948
7897
|
output: 1.15,
|
|
@@ -7964,8 +7913,8 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
7964
7913
|
reasoningText: true,
|
|
7965
7914
|
attachment: false,
|
|
7966
7915
|
temperature: true,
|
|
7967
|
-
releaseDate: '2026-04-
|
|
7968
|
-
lastUpdated: '2026-04-
|
|
7916
|
+
releaseDate: '2026-04-20',
|
|
7917
|
+
lastUpdated: '2026-04-20',
|
|
7969
7918
|
openWeights: true,
|
|
7970
7919
|
cost: {
|
|
7971
7920
|
input: 0.063,
|
|
@@ -10227,6 +10176,30 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10227
10176
|
output: 128000,
|
|
10228
10177
|
},
|
|
10229
10178
|
},
|
|
10179
|
+
{
|
|
10180
|
+
id: 'north-mini-code-free',
|
|
10181
|
+
label: 'North Mini Code Free',
|
|
10182
|
+
modalities: {
|
|
10183
|
+
input: ['text'],
|
|
10184
|
+
output: ['text'],
|
|
10185
|
+
},
|
|
10186
|
+
toolCall: true,
|
|
10187
|
+
reasoningText: true,
|
|
10188
|
+
attachment: false,
|
|
10189
|
+
temperature: true,
|
|
10190
|
+
knowledge: '2025-09-23',
|
|
10191
|
+
releaseDate: '2026-06-09',
|
|
10192
|
+
lastUpdated: '2026-06-09',
|
|
10193
|
+
openWeights: true,
|
|
10194
|
+
cost: {
|
|
10195
|
+
input: 0,
|
|
10196
|
+
output: 0,
|
|
10197
|
+
},
|
|
10198
|
+
limit: {
|
|
10199
|
+
context: 256000,
|
|
10200
|
+
output: 64000,
|
|
10201
|
+
},
|
|
10202
|
+
},
|
|
10230
10203
|
{
|
|
10231
10204
|
id: 'qwen3-coder',
|
|
10232
10205
|
label: 'Qwen3 Coder',
|
|
@@ -10416,7 +10389,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10416
10389
|
cacheRead: 0.2,
|
|
10417
10390
|
},
|
|
10418
10391
|
limit: {
|
|
10419
|
-
context:
|
|
10392
|
+
context: 1000000,
|
|
10420
10393
|
output: 30000,
|
|
10421
10394
|
},
|
|
10422
10395
|
},
|
|
@@ -10441,7 +10414,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
10441
10414
|
cacheRead: 0.2,
|
|
10442
10415
|
},
|
|
10443
10416
|
limit: {
|
|
10444
|
-
context:
|
|
10417
|
+
context: 1000000,
|
|
10445
10418
|
output: 30000,
|
|
10446
10419
|
},
|
|
10447
10420
|
},
|
|
@@ -12333,7 +12306,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12333
12306
|
output: ['text'],
|
|
12334
12307
|
},
|
|
12335
12308
|
toolCall: true,
|
|
12336
|
-
reasoningText:
|
|
12309
|
+
reasoningText: true,
|
|
12337
12310
|
attachment: false,
|
|
12338
12311
|
releaseDate: '2025-10-23',
|
|
12339
12312
|
lastUpdated: '2026-01-19',
|
|
@@ -12411,7 +12384,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12411
12384
|
},
|
|
12412
12385
|
toolCall: true,
|
|
12413
12386
|
reasoningText: true,
|
|
12414
|
-
attachment:
|
|
12387
|
+
attachment: true,
|
|
12415
12388
|
temperature: true,
|
|
12416
12389
|
knowledge: '2025-01',
|
|
12417
12390
|
releaseDate: '2026-05-31',
|
|
@@ -12504,6 +12477,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12504
12477
|
toolCall: true,
|
|
12505
12478
|
reasoningText: true,
|
|
12506
12479
|
attachment: false,
|
|
12480
|
+
temperature: true,
|
|
12507
12481
|
releaseDate: '2025-12-15',
|
|
12508
12482
|
lastUpdated: '2026-01-19',
|
|
12509
12483
|
openWeights: true,
|
|
@@ -12522,6 +12496,7 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12522
12496
|
toolCall: true,
|
|
12523
12497
|
reasoningText: true,
|
|
12524
12498
|
attachment: false,
|
|
12499
|
+
temperature: true,
|
|
12525
12500
|
releaseDate: '2026-03-11',
|
|
12526
12501
|
lastUpdated: '2026-03-12',
|
|
12527
12502
|
openWeights: true,
|
|
@@ -12530,6 +12505,25 @@ export const catalog: Partial<Record<BuiltInProviderId, ProviderCatalogEntry>> =
|
|
|
12530
12505
|
output: 65536,
|
|
12531
12506
|
},
|
|
12532
12507
|
},
|
|
12508
|
+
{
|
|
12509
|
+
id: 'nemotron-3-ultra',
|
|
12510
|
+
label: 'nemotron-3-ultra',
|
|
12511
|
+
modalities: {
|
|
12512
|
+
input: ['text'],
|
|
12513
|
+
output: ['text'],
|
|
12514
|
+
},
|
|
12515
|
+
toolCall: true,
|
|
12516
|
+
reasoningText: true,
|
|
12517
|
+
attachment: false,
|
|
12518
|
+
temperature: true,
|
|
12519
|
+
releaseDate: '2026-06-04',
|
|
12520
|
+
lastUpdated: '2026-06-04',
|
|
12521
|
+
openWeights: true,
|
|
12522
|
+
limit: {
|
|
12523
|
+
context: 262144,
|
|
12524
|
+
output: 128000,
|
|
12525
|
+
},
|
|
12526
|
+
},
|
|
12533
12527
|
{
|
|
12534
12528
|
id: 'qwen3-coder-next',
|
|
12535
12529
|
label: 'qwen3-coder-next',
|