aimodels 0.4.6 → 0.4.8

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.
Files changed (2) hide show
  1. package/dist/index.js +38 -15
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14,7 +14,6 @@ var models = {
14
14
  "txt-in",
15
15
  "txt-out",
16
16
  "img-in",
17
- "json-out",
18
17
  "fn-out"
19
18
  ],
20
19
  "context": {
@@ -43,7 +42,6 @@ var models = {
43
42
  "txt-in",
44
43
  "txt-out",
45
44
  "img-in",
46
- "json-out",
47
45
  "fn-out"
48
46
  ],
49
47
  "context": {
@@ -72,7 +70,6 @@ var models = {
72
70
  "txt-in",
73
71
  "txt-out",
74
72
  "img-in",
75
- "json-out",
76
73
  "fn-out"
77
74
  ],
78
75
  "context": {
@@ -100,7 +97,6 @@ var models = {
100
97
  "txt-in",
101
98
  "txt-out",
102
99
  "img-in",
103
- "json-out",
104
100
  "fn-out"
105
101
  ],
106
102
  "context": {
@@ -129,7 +125,6 @@ var models = {
129
125
  "txt-in",
130
126
  "txt-out",
131
127
  "img-in",
132
- "json-out",
133
128
  "fn-out"
134
129
  ],
135
130
  "context": {
@@ -153,7 +148,6 @@ var models = {
153
148
  "chat",
154
149
  "txt-in",
155
150
  "txt-out",
156
- "json-out",
157
151
  "fn-out"
158
152
  ],
159
153
  "context": {
@@ -182,7 +176,6 @@ var models = {
182
176
  "txt-in",
183
177
  "txt-out",
184
178
  "img-in",
185
- "json-out",
186
179
  "fn-out",
187
180
  "reason"
188
181
  ],
@@ -758,6 +751,33 @@ var models = {
758
751
  },
759
752
  "creatorId": "deepseek"
760
753
  },
754
+ "gemini-2.5-pro-exp-03-25": {
755
+ "id": "gemini-2.5-pro-exp-03-25",
756
+ "name": "Gemini 2.5 Pro",
757
+ "license": "proprietary",
758
+ "providerIds": [
759
+ "google"
760
+ ],
761
+ "capabilities": [
762
+ "chat",
763
+ "txt-in",
764
+ "txt-out",
765
+ "json-out",
766
+ "fn-out",
767
+ "img-in",
768
+ "audio-in",
769
+ "reason"
770
+ ],
771
+ "context": {
772
+ "type": "token",
773
+ "total": 1048576,
774
+ "maxOutput": 65536
775
+ },
776
+ "aliases": [
777
+ "gemini-2.5"
778
+ ],
779
+ "creatorId": "google"
780
+ },
761
781
  "gemini-2.0-flash": {
762
782
  "id": "gemini-2.0-flash",
763
783
  "name": "Gemini 2.0 Flash",
@@ -1260,14 +1280,10 @@ var models = {
1260
1280
  "total": 128e3,
1261
1281
  "maxOutput": 16384
1262
1282
  },
1263
- "creatorId": "openai"
1264
- },
1265
- "chatgpt-4o-latest": {
1266
- "id": "chatgpt-4o-latest",
1267
- "extends": "gpt-4o",
1268
- "overrides": {
1269
- "name": "GPT-4o used in ChatGPT"
1270
- },
1283
+ "aliases": [
1284
+ "chatgpt-4o-latest",
1285
+ "gpt-4o-2024-08-06"
1286
+ ],
1271
1287
  "creatorId": "openai"
1272
1288
  },
1273
1289
  "gpt-4o-2024-11-20": {
@@ -1291,6 +1307,13 @@ var models = {
1291
1307
  "extends": "gpt-4o",
1292
1308
  "overrides": {
1293
1309
  "name": "GPT-4o (2024-05-13)",
1310
+ "capabilities": [
1311
+ "chat",
1312
+ "txt-in",
1313
+ "txt-out",
1314
+ "img-in",
1315
+ "fn-out"
1316
+ ],
1294
1317
  "context": {
1295
1318
  "type": "token",
1296
1319
  "total": 128e3,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aimodels",
3
- "version": "0.4.6",
3
+ "version": "0.4.8",
4
4
  "description": "A collection of AI model specifications across different providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",