chat-agent-toolkit 1.2.32 → 1.2.33
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/dist/research-agent.cjs.js +1 -1
- package/dist/research-agent.cjs.js.map +1 -1
- package/dist/research-agent.es.js +1 -1
- package/dist/research-agent.es.js.map +1 -1
- package/package.json +1 -1
- package/src/config/language-models-database.ts +33 -33
- package/src/provider-logos/01-ai.png +0 -0
- package/src/provider-logos/anthropic.png +0 -0
- package/src/provider-logos/aws-bedrock.png +0 -0
- package/src/provider-logos/aws-sagemaker.png +0 -0
- package/src/provider-logos/azure-openai-service.png +0 -0
- package/src/provider-logos/chatglm.png +0 -0
- package/src/provider-logos/cohere.png +0 -0
- package/src/provider-logos/gemini.png +0 -0
- package/src/provider-logos/groqcloud.png +0 -0
- package/src/provider-logos/huggingface.png +0 -0
- package/src/provider-logos/jina.png +0 -0
- package/src/provider-logos/localai.png +0 -0
- package/src/provider-logos/mistral-ai.png +0 -0
- package/src/provider-logos/moonshot-ai.png +0 -0
- package/src/provider-logos/ollama.png +0 -0
- package/src/provider-logos/openai.png +0 -0
- package/src/provider-logos/openllm.png +0 -0
- package/src/provider-logos/openrouter.png +0 -0
- package/src/provider-logos/replicate.png +0 -0
- package/src/provider-logos/together-ai.png +0 -0
- package/src/provider-logos/tongyi.png +0 -0
- package/src/provider-logos/xorbits-inference.png +0 -0
- package/src/provider-logos/zhipu-ai.png +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chat-agent-toolkit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.33",
|
|
4
4
|
"description": "Multi-provider AI agent toolkit: generate language responses, search the web, extract content, and manage memory across 10+ LLM providers.",
|
|
5
5
|
"author": "vtempest <grokthiscontact@gmail.com>",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -19,56 +19,56 @@ export const LANGUAGE_MODELS = [
|
|
|
19
19
|
"id": "nvidia/llama-3.1-nemotron-70b-instruct",
|
|
20
20
|
"contextLength": 131_072,
|
|
21
21
|
"free": true,
|
|
22
|
-
"type": "text
|
|
22
|
+
"type": "text"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"name": "Nemotron 3 Super 120B",
|
|
26
26
|
"id": "nvidia/nemotron-3-super-120b-a12b",
|
|
27
27
|
"contextLength": 1_000_000,
|
|
28
28
|
"free": true,
|
|
29
|
-
"type": "text
|
|
29
|
+
"type": "text"
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"name": "Nemotron-4 340B",
|
|
33
33
|
"id": "nvidia/nemotron-4-340b",
|
|
34
34
|
"contextLength": 131_072,
|
|
35
35
|
"free": false,
|
|
36
|
-
"type": "text
|
|
36
|
+
"type": "text"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "Llama 3.3 70B Instruct",
|
|
40
40
|
"id": "meta/llama-3.3-70b-instruct",
|
|
41
41
|
"contextLength": 131_072,
|
|
42
42
|
"free": true,
|
|
43
|
-
"type": "text
|
|
43
|
+
"type": "text"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"name": "Llama 3.1 405B Instruct",
|
|
47
47
|
"id": "meta/llama-3.1-405b-instruct",
|
|
48
48
|
"contextLength": 131_072,
|
|
49
49
|
"free": false,
|
|
50
|
-
"type": "text
|
|
50
|
+
"type": "text"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"name": "Llama 3.1 8B Instruct",
|
|
54
54
|
"id": "meta/llama-3.1-8b-instruct",
|
|
55
55
|
"contextLength": 131_072,
|
|
56
56
|
"free": true,
|
|
57
|
-
"type": "text
|
|
57
|
+
"type": "text"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"name": "Gemma 4 31B IT",
|
|
61
61
|
"id": "google/gemma-4-31b-it",
|
|
62
62
|
"contextLength": 131_072,
|
|
63
63
|
"free": true,
|
|
64
|
-
"type": "text
|
|
64
|
+
"type": "text"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"name": "Mistral Large 2",
|
|
68
68
|
"id": "mistralai/mistral-large-2",
|
|
69
69
|
"contextLength": 131_072,
|
|
70
70
|
"free": false,
|
|
71
|
-
"type": "text
|
|
71
|
+
"type": "text"
|
|
72
72
|
}
|
|
73
73
|
]
|
|
74
74
|
},
|
|
@@ -1204,175 +1204,175 @@ export const LANGUAGE_MODELS = [
|
|
|
1204
1204
|
"id": "openrouter/free",
|
|
1205
1205
|
"contextLength": 200_000,
|
|
1206
1206
|
"free": true,
|
|
1207
|
-
"type": "text
|
|
1207
|
+
"type": "text"
|
|
1208
1208
|
},
|
|
1209
1209
|
{
|
|
1210
1210
|
"name": "Nemotron 3 Super 120B",
|
|
1211
1211
|
"id": "nvidia/nemotron-3-super-120b-a12b:free",
|
|
1212
1212
|
"contextLength": 1_000_000,
|
|
1213
1213
|
"free": true,
|
|
1214
|
-
"type": "text
|
|
1214
|
+
"type": "text"
|
|
1215
1215
|
},
|
|
1216
1216
|
{
|
|
1217
1217
|
"name": "Nemotron 3 Ultra 550B",
|
|
1218
1218
|
"id": "nvidia/nemotron-3-ultra-550b-a55b:free",
|
|
1219
1219
|
"contextLength": 1_000_000,
|
|
1220
1220
|
"free": true,
|
|
1221
|
-
"type": "text
|
|
1221
|
+
"type": "text"
|
|
1222
1222
|
},
|
|
1223
1223
|
{
|
|
1224
1224
|
"name": "Nemotron 3 Nano 30B A3B",
|
|
1225
1225
|
"id": "nvidia/nemotron-3-nano-30b-a3b:free",
|
|
1226
1226
|
"contextLength": 256_000,
|
|
1227
1227
|
"free": true,
|
|
1228
|
-
"type": "text
|
|
1228
|
+
"type": "text"
|
|
1229
1229
|
},
|
|
1230
1230
|
{
|
|
1231
1231
|
"name": "Nemotron 3 Nano Omni 30B A3B Reasoning",
|
|
1232
1232
|
"id": "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
|
|
1233
1233
|
"contextLength": 256_000,
|
|
1234
1234
|
"free": true,
|
|
1235
|
-
"type": "text
|
|
1235
|
+
"type": "text"
|
|
1236
1236
|
},
|
|
1237
1237
|
{
|
|
1238
1238
|
"name": "Nemotron Nano 12B v2 VL",
|
|
1239
1239
|
"id": "nvidia/nemotron-nano-12b-v2-vl:free",
|
|
1240
1240
|
"contextLength": 128_000,
|
|
1241
1241
|
"free": true,
|
|
1242
|
-
"type": "text
|
|
1242
|
+
"type": "text"
|
|
1243
1243
|
},
|
|
1244
1244
|
{
|
|
1245
1245
|
"name": "Nemotron Nano 9B v2",
|
|
1246
1246
|
"id": "nvidia/nemotron-nano-9b-v2:free",
|
|
1247
1247
|
"contextLength": 128_000,
|
|
1248
1248
|
"free": true,
|
|
1249
|
-
"type": "text
|
|
1249
|
+
"type": "text"
|
|
1250
1250
|
},
|
|
1251
1251
|
{
|
|
1252
1252
|
"name": "Nemotron 3.5 Content Safety",
|
|
1253
1253
|
"id": "nvidia/nemotron-3.5-content-safety:free",
|
|
1254
1254
|
"contextLength": 128_000,
|
|
1255
1255
|
"free": true,
|
|
1256
|
-
"type": "text
|
|
1256
|
+
"type": "text"
|
|
1257
1257
|
},
|
|
1258
1258
|
{
|
|
1259
1259
|
"name": "Gemma 4 31B IT",
|
|
1260
1260
|
"id": "google/gemma-4-31b-it:free",
|
|
1261
1261
|
"contextLength": 262_000,
|
|
1262
1262
|
"free": true,
|
|
1263
|
-
"type": "text
|
|
1263
|
+
"type": "text"
|
|
1264
1264
|
},
|
|
1265
1265
|
{
|
|
1266
1266
|
"name": "Gemma 4 26B A4B IT",
|
|
1267
1267
|
"id": "google/gemma-4-26b-a4b-it:free",
|
|
1268
1268
|
"contextLength": 262_000,
|
|
1269
1269
|
"free": true,
|
|
1270
|
-
"type": "text
|
|
1270
|
+
"type": "text"
|
|
1271
1271
|
},
|
|
1272
1272
|
{
|
|
1273
1273
|
"name": "GPT-OSS 120B",
|
|
1274
1274
|
"id": "openai/gpt-oss-120b:free",
|
|
1275
1275
|
"contextLength": 131_072,
|
|
1276
1276
|
"free": true,
|
|
1277
|
-
"type": "text
|
|
1277
|
+
"type": "text"
|
|
1278
1278
|
},
|
|
1279
1279
|
{
|
|
1280
1280
|
"name": "GPT-OSS 20B",
|
|
1281
1281
|
"id": "openai/gpt-oss-20b:free",
|
|
1282
1282
|
"contextLength": 131_072,
|
|
1283
1283
|
"free": true,
|
|
1284
|
-
"type": "text
|
|
1284
|
+
"type": "text"
|
|
1285
1285
|
},
|
|
1286
1286
|
{
|
|
1287
1287
|
"name": "Qwen3 Coder",
|
|
1288
1288
|
"id": "qwen/qwen3-coder:free",
|
|
1289
1289
|
"contextLength": 1_000_000,
|
|
1290
1290
|
"free": true,
|
|
1291
|
-
"type": "text
|
|
1291
|
+
"type": "text"
|
|
1292
1292
|
},
|
|
1293
1293
|
{
|
|
1294
1294
|
"name": "Qwen3 Next 80B A3B Instruct",
|
|
1295
1295
|
"id": "qwen/qwen3-next-80b-a3b-instruct:free",
|
|
1296
1296
|
"contextLength": 262_000,
|
|
1297
1297
|
"free": true,
|
|
1298
|
-
"type": "text
|
|
1298
|
+
"type": "text"
|
|
1299
1299
|
},
|
|
1300
1300
|
{
|
|
1301
1301
|
"name": "Llama 3.3 70B Instruct",
|
|
1302
1302
|
"id": "meta-llama/llama-3.3-70b-instruct:free",
|
|
1303
1303
|
"contextLength": 131_072,
|
|
1304
1304
|
"free": true,
|
|
1305
|
-
"type": "text
|
|
1305
|
+
"type": "text"
|
|
1306
1306
|
},
|
|
1307
1307
|
{
|
|
1308
1308
|
"name": "Llama 3.2 3B Instruct",
|
|
1309
1309
|
"id": "meta-llama/llama-3.2-3b-instruct:free",
|
|
1310
1310
|
"contextLength": 131_072,
|
|
1311
1311
|
"free": true,
|
|
1312
|
-
"type": "text
|
|
1312
|
+
"type": "text"
|
|
1313
1313
|
},
|
|
1314
1314
|
{
|
|
1315
1315
|
"name": "Hermes 3 Llama 3.1 405B",
|
|
1316
1316
|
"id": "nousresearch/hermes-3-llama-3.1-405b:free",
|
|
1317
1317
|
"contextLength": 131_072,
|
|
1318
1318
|
"free": true,
|
|
1319
|
-
"type": "text
|
|
1319
|
+
"type": "text"
|
|
1320
1320
|
},
|
|
1321
1321
|
{
|
|
1322
1322
|
"name": "Laguna XS 2.1",
|
|
1323
1323
|
"id": "poolside/laguna-xs-2.1:free",
|
|
1324
1324
|
"contextLength": 262_000,
|
|
1325
1325
|
"free": true,
|
|
1326
|
-
"type": "text
|
|
1326
|
+
"type": "text"
|
|
1327
1327
|
},
|
|
1328
1328
|
{
|
|
1329
1329
|
"name": "Laguna XS 2",
|
|
1330
1330
|
"id": "poolside/laguna-xs.2:free",
|
|
1331
1331
|
"contextLength": 262_000,
|
|
1332
1332
|
"free": true,
|
|
1333
|
-
"type": "text
|
|
1333
|
+
"type": "text"
|
|
1334
1334
|
},
|
|
1335
1335
|
{
|
|
1336
1336
|
"name": "Laguna M 1",
|
|
1337
1337
|
"id": "poolside/laguna-m.1:free",
|
|
1338
1338
|
"contextLength": 262_000,
|
|
1339
1339
|
"free": true,
|
|
1340
|
-
"type": "text
|
|
1340
|
+
"type": "text"
|
|
1341
1341
|
},
|
|
1342
1342
|
{
|
|
1343
1343
|
"name": "North Mini Code",
|
|
1344
1344
|
"id": "cohere/north-mini-code:free",
|
|
1345
1345
|
"contextLength": 256_000,
|
|
1346
1346
|
"free": true,
|
|
1347
|
-
"type": "text
|
|
1347
|
+
"type": "text"
|
|
1348
1348
|
},
|
|
1349
1349
|
{
|
|
1350
1350
|
"name": "Dolphin Mistral 24B Venice Edition",
|
|
1351
1351
|
"id": "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
|
|
1352
1352
|
"contextLength": 33_000,
|
|
1353
1353
|
"free": true,
|
|
1354
|
-
"type": "text
|
|
1354
|
+
"type": "text"
|
|
1355
1355
|
},
|
|
1356
1356
|
{
|
|
1357
1357
|
"name": "LFM 2.5 1.2B Thinking",
|
|
1358
1358
|
"id": "liquid/lfm-2.5-1.2b-thinking:free",
|
|
1359
1359
|
"contextLength": 33_000,
|
|
1360
1360
|
"free": true,
|
|
1361
|
-
"type": "text
|
|
1361
|
+
"type": "text"
|
|
1362
1362
|
},
|
|
1363
1363
|
{
|
|
1364
1364
|
"name": "LFM 2.5 1.2B Instruct",
|
|
1365
1365
|
"id": "liquid/lfm-2.5-1.2b-instruct:free",
|
|
1366
1366
|
"contextLength": 33_000,
|
|
1367
1367
|
"free": true,
|
|
1368
|
-
"type": "text
|
|
1368
|
+
"type": "text"
|
|
1369
1369
|
},
|
|
1370
1370
|
{
|
|
1371
1371
|
"name": "OpenRouter Free (rotating)",
|
|
1372
1372
|
"id": "openrouter/free",
|
|
1373
1373
|
"contextLength": 200_000,
|
|
1374
1374
|
"free": true,
|
|
1375
|
-
"type": "text
|
|
1375
|
+
"type": "text"
|
|
1376
1376
|
}
|
|
1377
1377
|
]
|
|
1378
1378
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|