aimodels 0.4.1 → 0.4.3
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/README.md +2 -2
- package/dist/index.js +272 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,8 @@ aimodels is useful when you need to programmatically access info about AI models
|
|
|
8
8
|
|
|
9
9
|
aimodels powers:
|
|
10
10
|
- [aimodels.dev](https://aimodels.dev) - a website about AI models
|
|
11
|
-
- [aiwrapper](https://github.com/mitkury/aiwrapper) - an AI wrapper for running AI models
|
|
12
|
-
- [Supa](https://github.com/supaorg/supa) - an open alternative to ChatGPT
|
|
11
|
+
- [aiwrapper](https://github.com/mitkury/aiwrapper) - an AI wrapper for running AI models
|
|
12
|
+
- [Supa](https://github.com/supaorg/supa) - an open alternative to ChatGPT
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
package/dist/index.js
CHANGED
|
@@ -206,6 +206,28 @@ var models = {
|
|
|
206
206
|
],
|
|
207
207
|
"creatorId": "anthropic"
|
|
208
208
|
},
|
|
209
|
+
"command-a-03-2025": {
|
|
210
|
+
"id": "command-a-03-2025",
|
|
211
|
+
"name": "Command A",
|
|
212
|
+
"creator": "cohere",
|
|
213
|
+
"license": "proprietary",
|
|
214
|
+
"providerIds": [
|
|
215
|
+
"cohere"
|
|
216
|
+
],
|
|
217
|
+
"capabilities": [
|
|
218
|
+
"chat",
|
|
219
|
+
"txt-in",
|
|
220
|
+
"txt-out",
|
|
221
|
+
"json-out",
|
|
222
|
+
"fn-out"
|
|
223
|
+
],
|
|
224
|
+
"context": {
|
|
225
|
+
"type": "token",
|
|
226
|
+
"total": 256e3,
|
|
227
|
+
"maxOutput": 8192
|
|
228
|
+
},
|
|
229
|
+
"creatorId": "cohere"
|
|
230
|
+
},
|
|
209
231
|
"command-r7b-12-2024": {
|
|
210
232
|
"id": "command-r7b-12-2024",
|
|
211
233
|
"name": "Command R7B",
|
|
@@ -228,6 +250,32 @@ var models = {
|
|
|
228
250
|
},
|
|
229
251
|
"creatorId": "cohere"
|
|
230
252
|
},
|
|
253
|
+
"command-r-plus-04-2024": {
|
|
254
|
+
"id": "command-r-plus-04-2024",
|
|
255
|
+
"name": "Command R+ (April 2024)",
|
|
256
|
+
"creator": "cohere",
|
|
257
|
+
"license": "proprietary",
|
|
258
|
+
"providerIds": [
|
|
259
|
+
"cohere",
|
|
260
|
+
"azure"
|
|
261
|
+
],
|
|
262
|
+
"capabilities": [
|
|
263
|
+
"chat",
|
|
264
|
+
"txt-in",
|
|
265
|
+
"txt-out",
|
|
266
|
+
"json-out",
|
|
267
|
+
"fn-out"
|
|
268
|
+
],
|
|
269
|
+
"context": {
|
|
270
|
+
"type": "token",
|
|
271
|
+
"total": 128e3,
|
|
272
|
+
"maxOutput": 4096
|
|
273
|
+
},
|
|
274
|
+
"aliases": [
|
|
275
|
+
"command-r-plus"
|
|
276
|
+
],
|
|
277
|
+
"creatorId": "cohere"
|
|
278
|
+
},
|
|
231
279
|
"command-r-plus-08-2024": {
|
|
232
280
|
"id": "command-r-plus-08-2024",
|
|
233
281
|
"name": "Command R+",
|
|
@@ -256,6 +304,28 @@ var models = {
|
|
|
256
304
|
],
|
|
257
305
|
"creatorId": "cohere"
|
|
258
306
|
},
|
|
307
|
+
"command-r-08-2024": {
|
|
308
|
+
"id": "command-r-08-2024",
|
|
309
|
+
"name": "Command R (August 2024)",
|
|
310
|
+
"creator": "cohere",
|
|
311
|
+
"license": "proprietary",
|
|
312
|
+
"providerIds": [
|
|
313
|
+
"cohere"
|
|
314
|
+
],
|
|
315
|
+
"capabilities": [
|
|
316
|
+
"chat",
|
|
317
|
+
"txt-in",
|
|
318
|
+
"txt-out",
|
|
319
|
+
"json-out",
|
|
320
|
+
"fn-out"
|
|
321
|
+
],
|
|
322
|
+
"context": {
|
|
323
|
+
"type": "token",
|
|
324
|
+
"total": 128e3,
|
|
325
|
+
"maxOutput": 4096
|
|
326
|
+
},
|
|
327
|
+
"creatorId": "cohere"
|
|
328
|
+
},
|
|
259
329
|
"command-r-03-2024": {
|
|
260
330
|
"id": "command-r-03-2024",
|
|
261
331
|
"name": "Command R",
|
|
@@ -271,7 +341,6 @@ var models = {
|
|
|
271
341
|
"chat",
|
|
272
342
|
"txt-in",
|
|
273
343
|
"txt-out",
|
|
274
|
-
"reason",
|
|
275
344
|
"json-out",
|
|
276
345
|
"fn-out"
|
|
277
346
|
],
|
|
@@ -285,6 +354,28 @@ var models = {
|
|
|
285
354
|
],
|
|
286
355
|
"creatorId": "cohere"
|
|
287
356
|
},
|
|
357
|
+
"command-nightly": {
|
|
358
|
+
"id": "command-nightly",
|
|
359
|
+
"name": "Command Nightly",
|
|
360
|
+
"creator": "cohere",
|
|
361
|
+
"license": "proprietary",
|
|
362
|
+
"providerIds": [
|
|
363
|
+
"cohere"
|
|
364
|
+
],
|
|
365
|
+
"capabilities": [
|
|
366
|
+
"chat",
|
|
367
|
+
"txt-in",
|
|
368
|
+
"txt-out",
|
|
369
|
+
"json-out",
|
|
370
|
+
"fn-out"
|
|
371
|
+
],
|
|
372
|
+
"context": {
|
|
373
|
+
"type": "token",
|
|
374
|
+
"total": 128e3,
|
|
375
|
+
"maxOutput": 4096
|
|
376
|
+
},
|
|
377
|
+
"creatorId": "cohere"
|
|
378
|
+
},
|
|
288
379
|
"command": {
|
|
289
380
|
"id": "command",
|
|
290
381
|
"name": "Command",
|
|
@@ -478,6 +569,152 @@ var models = {
|
|
|
478
569
|
},
|
|
479
570
|
"creatorId": "cohere"
|
|
480
571
|
},
|
|
572
|
+
"embed-english-v2.0": {
|
|
573
|
+
"id": "embed-english-v2.0",
|
|
574
|
+
"name": "Embed English v2.0",
|
|
575
|
+
"creator": "cohere",
|
|
576
|
+
"license": "proprietary",
|
|
577
|
+
"providerIds": [
|
|
578
|
+
"cohere"
|
|
579
|
+
],
|
|
580
|
+
"capabilities": [
|
|
581
|
+
"txt-in",
|
|
582
|
+
"vec-out"
|
|
583
|
+
],
|
|
584
|
+
"context": {
|
|
585
|
+
"type": "embedding",
|
|
586
|
+
"total": 512,
|
|
587
|
+
"dimensions": 4096,
|
|
588
|
+
"embeddingType": "text",
|
|
589
|
+
"normalized": true
|
|
590
|
+
},
|
|
591
|
+
"creatorId": "cohere"
|
|
592
|
+
},
|
|
593
|
+
"embed-english-light-v2.0": {
|
|
594
|
+
"id": "embed-english-light-v2.0",
|
|
595
|
+
"name": "Embed English Light v2.0",
|
|
596
|
+
"creator": "cohere",
|
|
597
|
+
"license": "proprietary",
|
|
598
|
+
"providerIds": [
|
|
599
|
+
"cohere",
|
|
600
|
+
"oracle"
|
|
601
|
+
],
|
|
602
|
+
"capabilities": [
|
|
603
|
+
"txt-in",
|
|
604
|
+
"vec-out"
|
|
605
|
+
],
|
|
606
|
+
"context": {
|
|
607
|
+
"type": "embedding",
|
|
608
|
+
"total": 512,
|
|
609
|
+
"dimensions": 1024,
|
|
610
|
+
"embeddingType": "text",
|
|
611
|
+
"normalized": true
|
|
612
|
+
},
|
|
613
|
+
"creatorId": "cohere"
|
|
614
|
+
},
|
|
615
|
+
"embed-multilingual-v2.0": {
|
|
616
|
+
"id": "embed-multilingual-v2.0",
|
|
617
|
+
"name": "Embed Multilingual v2.0",
|
|
618
|
+
"creator": "cohere",
|
|
619
|
+
"license": "proprietary",
|
|
620
|
+
"providerIds": [
|
|
621
|
+
"cohere"
|
|
622
|
+
],
|
|
623
|
+
"capabilities": [
|
|
624
|
+
"txt-in",
|
|
625
|
+
"vec-out"
|
|
626
|
+
],
|
|
627
|
+
"context": {
|
|
628
|
+
"type": "embedding",
|
|
629
|
+
"total": 256,
|
|
630
|
+
"dimensions": 768,
|
|
631
|
+
"embeddingType": "text",
|
|
632
|
+
"normalized": false
|
|
633
|
+
},
|
|
634
|
+
"creatorId": "cohere"
|
|
635
|
+
},
|
|
636
|
+
"c4ai-aya-expanse-8b": {
|
|
637
|
+
"id": "c4ai-aya-expanse-8b",
|
|
638
|
+
"name": "Aya Expanse 8B",
|
|
639
|
+
"creator": "cohere",
|
|
640
|
+
"license": "proprietary",
|
|
641
|
+
"providerIds": [
|
|
642
|
+
"cohere"
|
|
643
|
+
],
|
|
644
|
+
"capabilities": [
|
|
645
|
+
"chat",
|
|
646
|
+
"txt-in",
|
|
647
|
+
"txt-out"
|
|
648
|
+
],
|
|
649
|
+
"context": {
|
|
650
|
+
"type": "token",
|
|
651
|
+
"total": 8192,
|
|
652
|
+
"maxOutput": 4096
|
|
653
|
+
},
|
|
654
|
+
"creatorId": "cohere"
|
|
655
|
+
},
|
|
656
|
+
"c4ai-aya-expanse-32b": {
|
|
657
|
+
"id": "c4ai-aya-expanse-32b",
|
|
658
|
+
"name": "Aya Expanse 32B",
|
|
659
|
+
"creator": "cohere",
|
|
660
|
+
"license": "proprietary",
|
|
661
|
+
"providerIds": [
|
|
662
|
+
"cohere"
|
|
663
|
+
],
|
|
664
|
+
"capabilities": [
|
|
665
|
+
"chat",
|
|
666
|
+
"txt-in",
|
|
667
|
+
"txt-out"
|
|
668
|
+
],
|
|
669
|
+
"context": {
|
|
670
|
+
"type": "token",
|
|
671
|
+
"total": 128e3,
|
|
672
|
+
"maxOutput": 4096
|
|
673
|
+
},
|
|
674
|
+
"creatorId": "cohere"
|
|
675
|
+
},
|
|
676
|
+
"c4ai-aya-vision-8b": {
|
|
677
|
+
"id": "c4ai-aya-vision-8b",
|
|
678
|
+
"name": "Aya Vision 8B",
|
|
679
|
+
"creator": "cohere",
|
|
680
|
+
"license": "proprietary",
|
|
681
|
+
"providerIds": [
|
|
682
|
+
"cohere"
|
|
683
|
+
],
|
|
684
|
+
"capabilities": [
|
|
685
|
+
"chat",
|
|
686
|
+
"txt-in",
|
|
687
|
+
"txt-out",
|
|
688
|
+
"img-in"
|
|
689
|
+
],
|
|
690
|
+
"context": {
|
|
691
|
+
"type": "token",
|
|
692
|
+
"total": 16384,
|
|
693
|
+
"maxOutput": 4096
|
|
694
|
+
},
|
|
695
|
+
"creatorId": "cohere"
|
|
696
|
+
},
|
|
697
|
+
"c4ai-aya-vision-32b": {
|
|
698
|
+
"id": "c4ai-aya-vision-32b",
|
|
699
|
+
"name": "Aya Vision 32B",
|
|
700
|
+
"creator": "cohere",
|
|
701
|
+
"license": "proprietary",
|
|
702
|
+
"providerIds": [
|
|
703
|
+
"cohere"
|
|
704
|
+
],
|
|
705
|
+
"capabilities": [
|
|
706
|
+
"chat",
|
|
707
|
+
"txt-in",
|
|
708
|
+
"txt-out",
|
|
709
|
+
"img-in"
|
|
710
|
+
],
|
|
711
|
+
"context": {
|
|
712
|
+
"type": "token",
|
|
713
|
+
"total": 16384,
|
|
714
|
+
"maxOutput": 4096
|
|
715
|
+
},
|
|
716
|
+
"creatorId": "cohere"
|
|
717
|
+
},
|
|
481
718
|
"deepseek-chat": {
|
|
482
719
|
"id": "deepseek-chat",
|
|
483
720
|
"name": "DeepSeek V3",
|
|
@@ -1210,7 +1447,7 @@ var models = {
|
|
|
1210
1447
|
},
|
|
1211
1448
|
"o1": {
|
|
1212
1449
|
"id": "o1",
|
|
1213
|
-
"name": "OpenAI
|
|
1450
|
+
"name": "OpenAI o1",
|
|
1214
1451
|
"license": "proprietary",
|
|
1215
1452
|
"providerIds": [
|
|
1216
1453
|
"openai",
|
|
@@ -1236,7 +1473,7 @@ var models = {
|
|
|
1236
1473
|
"id": "o1-2024-12-17",
|
|
1237
1474
|
"extends": "o1",
|
|
1238
1475
|
"overrides": {
|
|
1239
|
-
"name": "OpenAI
|
|
1476
|
+
"name": "OpenAI o1 (2024-12-17)"
|
|
1240
1477
|
},
|
|
1241
1478
|
"creatorId": "openai"
|
|
1242
1479
|
},
|
|
@@ -1244,7 +1481,7 @@ var models = {
|
|
|
1244
1481
|
"id": "o1-mini",
|
|
1245
1482
|
"extends": "o1",
|
|
1246
1483
|
"overrides": {
|
|
1247
|
-
"name": "OpenAI
|
|
1484
|
+
"name": "OpenAI o1 Mini",
|
|
1248
1485
|
"capabilities": [
|
|
1249
1486
|
"chat",
|
|
1250
1487
|
"txt-in",
|
|
@@ -1265,7 +1502,7 @@ var models = {
|
|
|
1265
1502
|
"id": "o1-mini-2024-09-12",
|
|
1266
1503
|
"extends": "o1-mini",
|
|
1267
1504
|
"overrides": {
|
|
1268
|
-
"name": "OpenAI
|
|
1505
|
+
"name": "OpenAI o1 Mini (2024-09-12)"
|
|
1269
1506
|
},
|
|
1270
1507
|
"creatorId": "openai"
|
|
1271
1508
|
},
|
|
@@ -1273,7 +1510,7 @@ var models = {
|
|
|
1273
1510
|
"id": "o1-preview",
|
|
1274
1511
|
"extends": "o1",
|
|
1275
1512
|
"overrides": {
|
|
1276
|
-
"name": "OpenAI
|
|
1513
|
+
"name": "OpenAI o1 Preview",
|
|
1277
1514
|
"context": {
|
|
1278
1515
|
"type": "token",
|
|
1279
1516
|
"total": 128e3,
|
|
@@ -1286,13 +1523,13 @@ var models = {
|
|
|
1286
1523
|
"id": "o1-preview-2024-09-12",
|
|
1287
1524
|
"extends": "o1-preview",
|
|
1288
1525
|
"overrides": {
|
|
1289
|
-
"name": "OpenAI
|
|
1526
|
+
"name": "OpenAI o1 Preview (2024-09-12)"
|
|
1290
1527
|
},
|
|
1291
1528
|
"creatorId": "openai"
|
|
1292
1529
|
},
|
|
1293
1530
|
"o3-mini": {
|
|
1294
1531
|
"id": "o3-mini",
|
|
1295
|
-
"name": "OpenAI
|
|
1532
|
+
"name": "OpenAI o3 Mini",
|
|
1296
1533
|
"license": "proprietary",
|
|
1297
1534
|
"providerIds": [
|
|
1298
1535
|
"openai",
|
|
@@ -1317,10 +1554,36 @@ var models = {
|
|
|
1317
1554
|
"id": "o3-mini-2025-01-31",
|
|
1318
1555
|
"extends": "o3-mini",
|
|
1319
1556
|
"overrides": {
|
|
1320
|
-
"name": "OpenAI
|
|
1557
|
+
"name": "OpenAI o3 Mini (2025-01-31)"
|
|
1321
1558
|
},
|
|
1322
1559
|
"creatorId": "openai"
|
|
1323
1560
|
},
|
|
1561
|
+
"gpt-4.5-preview": {
|
|
1562
|
+
"id": "gpt-4.5-preview",
|
|
1563
|
+
"name": "GPT-4.5 Preview",
|
|
1564
|
+
"license": "proprietary",
|
|
1565
|
+
"providerIds": [
|
|
1566
|
+
"openai",
|
|
1567
|
+
"azure"
|
|
1568
|
+
],
|
|
1569
|
+
"capabilities": [
|
|
1570
|
+
"chat",
|
|
1571
|
+
"txt-in",
|
|
1572
|
+
"txt-out",
|
|
1573
|
+
"img-in",
|
|
1574
|
+
"json-out",
|
|
1575
|
+
"fn-out"
|
|
1576
|
+
],
|
|
1577
|
+
"context": {
|
|
1578
|
+
"type": "token",
|
|
1579
|
+
"total": 128e3,
|
|
1580
|
+
"maxOutput": 16384
|
|
1581
|
+
},
|
|
1582
|
+
"aliases": [
|
|
1583
|
+
"gpt-4.5-preview-2025-02-27"
|
|
1584
|
+
],
|
|
1585
|
+
"creatorId": "openai"
|
|
1586
|
+
},
|
|
1324
1587
|
"whisper-1": {
|
|
1325
1588
|
"id": "whisper-1",
|
|
1326
1589
|
"name": "Whisper",
|