aimodels 0.5.0 → 0.5.1
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/index.js +6 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1628,7 +1628,7 @@ var models = {
|
|
|
1628
1628
|
"grok-3",
|
|
1629
1629
|
"grok-3-latest"
|
|
1630
1630
|
],
|
|
1631
|
-
"releasedAt": "2025-
|
|
1631
|
+
"releasedAt": "2025-02-18",
|
|
1632
1632
|
"creatorId": "xai"
|
|
1633
1633
|
},
|
|
1634
1634
|
"grok-3-fast-beta": {
|
|
@@ -1649,7 +1649,7 @@ var models = {
|
|
|
1649
1649
|
"total": 131072,
|
|
1650
1650
|
"maxOutput": 131072
|
|
1651
1651
|
},
|
|
1652
|
-
"releasedAt": "2025-
|
|
1652
|
+
"releasedAt": "2025-02-18",
|
|
1653
1653
|
"creatorId": "xai"
|
|
1654
1654
|
},
|
|
1655
1655
|
"grok-3-mini-beta": {
|
|
@@ -1674,7 +1674,7 @@ var models = {
|
|
|
1674
1674
|
"grok-3-mini",
|
|
1675
1675
|
"grok-3-mini-latest"
|
|
1676
1676
|
],
|
|
1677
|
-
"releasedAt": "2025-
|
|
1677
|
+
"releasedAt": "2025-02-18",
|
|
1678
1678
|
"creatorId": "xai"
|
|
1679
1679
|
},
|
|
1680
1680
|
"grok-3-mini-fast-beta": {
|
|
@@ -1695,7 +1695,7 @@ var models = {
|
|
|
1695
1695
|
"total": 131072,
|
|
1696
1696
|
"maxOutput": 131072
|
|
1697
1697
|
},
|
|
1698
|
-
"releasedAt": "2025-
|
|
1698
|
+
"releasedAt": "2025-02-18",
|
|
1699
1699
|
"creatorId": "xai"
|
|
1700
1700
|
},
|
|
1701
1701
|
"grok-2-vision-1212": {
|
|
@@ -1795,6 +1795,7 @@ var models = {
|
|
|
1795
1795
|
"chat",
|
|
1796
1796
|
"txt-in",
|
|
1797
1797
|
"txt-out",
|
|
1798
|
+
"img-in",
|
|
1798
1799
|
"reason",
|
|
1799
1800
|
"fn-out",
|
|
1800
1801
|
"json-out"
|
|
@@ -1819,6 +1820,7 @@ var models = {
|
|
|
1819
1820
|
"chat",
|
|
1820
1821
|
"txt-in",
|
|
1821
1822
|
"txt-out",
|
|
1823
|
+
"img-in",
|
|
1822
1824
|
"reason",
|
|
1823
1825
|
"fn-out",
|
|
1824
1826
|
"json-out"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aimodels",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "A collection of AI model specifications across different providers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
31
|
"lint": "eslint src --ext .ts",
|
|
32
32
|
"clean": "rm -rf dist",
|
|
33
|
-
"prepare": "
|
|
33
|
+
"prepare": "echo \"skip prepare for this publish\"",
|
|
34
34
|
"preversion": "npm run typecheck && npm run lint && npm test",
|
|
35
35
|
"version": "git add -A",
|
|
36
36
|
"postversion": "git push && git push --tags",
|
|
37
|
-
"prepublishOnly": "
|
|
37
|
+
"prepublishOnly": "echo \"skip prepublishOnly for this publish\"",
|
|
38
38
|
"postpublish": "npm run clean",
|
|
39
39
|
"rules": "airul generate",
|
|
40
40
|
"rules:comment": "# Generate AI rules from documentation",
|