@everworker/oneringai 0.4.7 → 0.5.0

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 (32) hide show
  1. package/README.md +425 -45
  2. package/dist/{ImageModel-1uP-2vk7.d.ts → ImageModel-CV8OuP3Z.d.ts} +10 -4
  3. package/dist/{ImageModel-BDI37OED.d.cts → ImageModel-OjV5NvLY.d.cts} +10 -4
  4. package/dist/capabilities/agents/index.cjs +17 -0
  5. package/dist/capabilities/agents/index.cjs.map +1 -1
  6. package/dist/capabilities/agents/index.d.cts +1 -1
  7. package/dist/capabilities/agents/index.d.ts +1 -1
  8. package/dist/capabilities/agents/index.js +17 -0
  9. package/dist/capabilities/agents/index.js.map +1 -1
  10. package/dist/capabilities/images/index.cjs +273 -16
  11. package/dist/capabilities/images/index.cjs.map +1 -1
  12. package/dist/capabilities/images/index.d.cts +1 -1
  13. package/dist/capabilities/images/index.d.ts +1 -1
  14. package/dist/capabilities/images/index.js +273 -16
  15. package/dist/capabilities/images/index.js.map +1 -1
  16. package/dist/index-BlEwczd4.d.ts +320 -0
  17. package/dist/index-DrJYI_0l.d.cts +320 -0
  18. package/dist/{index-Blci0FEd.d.ts → index-hmTj59TM.d.ts} +543 -36
  19. package/dist/{index-D8RCwpK9.d.cts → index-t4cRhBZW.d.cts} +543 -36
  20. package/dist/index.cjs +19916 -7155
  21. package/dist/index.cjs.map +1 -1
  22. package/dist/index.d.cts +7807 -5065
  23. package/dist/index.d.ts +7807 -5065
  24. package/dist/index.js +19377 -6645
  25. package/dist/index.js.map +1 -1
  26. package/dist/shared/index.cjs +596 -7
  27. package/dist/shared/index.cjs.map +1 -1
  28. package/dist/shared/index.d.cts +2 -284
  29. package/dist/shared/index.d.ts +2 -284
  30. package/dist/shared/index.js +596 -7
  31. package/dist/shared/index.js.map +1 -1
  32. package/package.json +1 -1
@@ -21,13 +21,30 @@ function isVendor(value) {
21
21
  return VENDORS.includes(value);
22
22
  }
23
23
 
24
+ // src/domain/entities/SharedVoices.ts
25
+ var OPENAI_REALTIME_VOICES = [
26
+ { id: "alloy", name: "Alloy", language: "multi", gender: "neutral", isDefault: true },
27
+ { id: "ash", name: "Ash", language: "multi", gender: "male" },
28
+ { id: "ballad", name: "Ballad", language: "multi", gender: "male" },
29
+ { id: "coral", name: "Coral", language: "multi", gender: "female" },
30
+ { id: "echo", name: "Echo", language: "multi", gender: "male" },
31
+ { id: "sage", name: "Sage", language: "multi", gender: "female" },
32
+ { id: "shimmer", name: "Shimmer", language: "multi", gender: "female" },
33
+ { id: "verse", name: "Verse", language: "multi", gender: "neutral" },
34
+ { id: "marin", name: "Marin", language: "multi", gender: "female" },
35
+ { id: "cedar", name: "Cedar", language: "multi", gender: "male" }
36
+ ];
37
+
24
38
  // src/domain/entities/Model.ts
25
39
  var LLM_MODELS = {
26
40
  [Vendor.OpenAI]: {
41
+ // GPT-5.4 Series (Current Flagship)
42
+ GPT_5_4: "gpt-5.4",
43
+ GPT_5_4_PRO: "gpt-5.4-pro",
27
44
  // GPT-5.3 Series
28
45
  GPT_5_3_CODEX: "gpt-5.3-codex",
29
46
  GPT_5_3_CHAT: "gpt-5.3-chat-latest",
30
- // GPT-5.2 Series (Current Flagship)
47
+ // GPT-5.2 Series
31
48
  GPT_5_2: "gpt-5.2",
32
49
  GPT_5_2_PRO: "gpt-5.2-pro",
33
50
  GPT_5_2_CODEX: "gpt-5.2-codex",
@@ -42,6 +59,7 @@ var LLM_MODELS = {
42
59
  GPT_5: "gpt-5",
43
60
  GPT_5_MINI: "gpt-5-mini",
44
61
  GPT_5_NANO: "gpt-5-nano",
62
+ GPT_5_CODEX: "gpt-5-codex",
45
63
  GPT_5_CHAT: "gpt-5-chat-latest",
46
64
  // GPT-4.1 Series
47
65
  GPT_4_1: "gpt-4.1",
@@ -50,9 +68,24 @@ var LLM_MODELS = {
50
68
  // GPT-4o Series (Legacy)
51
69
  GPT_4O: "gpt-4o",
52
70
  GPT_4O_MINI: "gpt-4o-mini",
71
+ // Audio Models
72
+ GPT_AUDIO_1_5: "gpt-audio-1.5",
73
+ GPT_AUDIO: "gpt-audio",
74
+ GPT_AUDIO_MINI: "gpt-audio-mini",
75
+ // Realtime Models
76
+ GPT_REALTIME_1_5: "gpt-realtime-1.5",
77
+ GPT_REALTIME: "gpt-realtime",
78
+ GPT_REALTIME_MINI: "gpt-realtime-mini",
53
79
  // Reasoning Models (o-series)
80
+ O3: "o3",
81
+ O4_MINI: "o4-mini",
54
82
  O3_MINI: "o3-mini",
55
- O1: "o1"
83
+ O3_DEEP_RESEARCH: "o3-deep-research",
84
+ O4_MINI_DEEP_RESEARCH: "o4-mini-deep-research",
85
+ O1: "o1",
86
+ // Open-Weight Models
87
+ GPT_OSS_120B: "gpt-oss-120b",
88
+ GPT_OSS_20B: "gpt-oss-20b"
56
89
  },
57
90
  [Vendor.Anthropic]: {
58
91
  // Claude 4.6 Series (Current)
@@ -104,8 +137,89 @@ var LLM_MODELS = {
104
137
  };
105
138
  var MODEL_REGISTRY = {
106
139
  // ============================================================================
107
- // OpenAI Models (Verified from platform.openai.com)
140
+ // OpenAI Models (Verified from developers.openai.com - March 2026)
108
141
  // ============================================================================
142
+ // GPT-5.4 Series (Current Flagship - March 2026)
143
+ "gpt-5.4": {
144
+ name: "gpt-5.4",
145
+ provider: Vendor.OpenAI,
146
+ description: "Flagship model with 1M+ context. Reasoning.effort: none, low, medium, high, xhigh. Computer use, MCP, tool search",
147
+ isActive: true,
148
+ preferred: true,
149
+ releaseDate: "2026-03-05",
150
+ knowledgeCutoff: "2025-08-31",
151
+ features: {
152
+ reasoning: true,
153
+ streaming: true,
154
+ structuredOutput: true,
155
+ functionCalling: true,
156
+ fineTuning: false,
157
+ predictedOutputs: false,
158
+ realtime: false,
159
+ vision: true,
160
+ audio: false,
161
+ video: false,
162
+ batchAPI: true,
163
+ promptCaching: true,
164
+ parameters: {
165
+ temperature: false,
166
+ topP: false,
167
+ frequencyPenalty: false,
168
+ presencePenalty: false
169
+ },
170
+ input: {
171
+ tokens: 105e4,
172
+ text: true,
173
+ image: true,
174
+ cpm: 2.5,
175
+ cpmCached: 0.25
176
+ },
177
+ output: {
178
+ tokens: 128e3,
179
+ text: true,
180
+ cpm: 15
181
+ }
182
+ }
183
+ },
184
+ "gpt-5.4-pro": {
185
+ name: "gpt-5.4-pro",
186
+ provider: Vendor.OpenAI,
187
+ description: "GPT-5.4 pro for smarter, more precise responses. Reasoning.effort: medium, high, xhigh only",
188
+ isActive: true,
189
+ releaseDate: "2026-03-05",
190
+ knowledgeCutoff: "2025-08-31",
191
+ features: {
192
+ reasoning: true,
193
+ streaming: true,
194
+ structuredOutput: false,
195
+ functionCalling: true,
196
+ fineTuning: false,
197
+ predictedOutputs: false,
198
+ realtime: false,
199
+ vision: true,
200
+ audio: false,
201
+ video: false,
202
+ batchAPI: true,
203
+ promptCaching: false,
204
+ parameters: {
205
+ temperature: false,
206
+ topP: false,
207
+ frequencyPenalty: false,
208
+ presencePenalty: false
209
+ },
210
+ input: {
211
+ tokens: 105e4,
212
+ text: true,
213
+ image: true,
214
+ cpm: 30
215
+ },
216
+ output: {
217
+ tokens: 128e3,
218
+ text: true,
219
+ cpm: 180
220
+ }
221
+ }
222
+ },
109
223
  // GPT-5.3 Series
110
224
  "gpt-5.3-codex": {
111
225
  name: "gpt-5.3-codex",
@@ -184,13 +298,12 @@ var MODEL_REGISTRY = {
184
298
  }
185
299
  }
186
300
  },
187
- // GPT-5.2 Series (Current Flagship)
301
+ // GPT-5.2 Series
188
302
  "gpt-5.2": {
189
303
  name: "gpt-5.2",
190
304
  provider: Vendor.OpenAI,
191
- description: "Flagship model for coding and agentic tasks. Reasoning.effort: none, low, medium, high, xhigh",
305
+ description: "Previous flagship model for coding and agentic tasks. Reasoning.effort: none, low, medium, high, xhigh",
192
306
  isActive: true,
193
- preferred: true,
194
307
  releaseDate: "2025-12-01",
195
308
  knowledgeCutoff: "2025-08-31",
196
309
  features: {
@@ -270,7 +383,6 @@ var MODEL_REGISTRY = {
270
383
  provider: Vendor.OpenAI,
271
384
  description: "GPT-5.2 codex for coding and agentic tasks. Reasoning.effort: low, medium, high, xhigh",
272
385
  isActive: true,
273
- preferred: true,
274
386
  releaseDate: "2025-12-01",
275
387
  knowledgeCutoff: "2025-08-31",
276
388
  features: {
@@ -656,6 +768,46 @@ var MODEL_REGISTRY = {
656
768
  }
657
769
  }
658
770
  },
771
+ "gpt-5-codex": {
772
+ name: "gpt-5-codex",
773
+ provider: Vendor.OpenAI,
774
+ description: "GPT-5 codex for coding and agentic tasks with reasoning",
775
+ isActive: true,
776
+ releaseDate: "2025-08-01",
777
+ knowledgeCutoff: "2024-09-30",
778
+ features: {
779
+ reasoning: true,
780
+ streaming: true,
781
+ structuredOutput: true,
782
+ functionCalling: true,
783
+ fineTuning: false,
784
+ predictedOutputs: false,
785
+ realtime: false,
786
+ vision: true,
787
+ audio: false,
788
+ video: false,
789
+ batchAPI: true,
790
+ promptCaching: true,
791
+ parameters: {
792
+ temperature: false,
793
+ topP: false,
794
+ frequencyPenalty: false,
795
+ presencePenalty: false
796
+ },
797
+ input: {
798
+ tokens: 4e5,
799
+ text: true,
800
+ image: true,
801
+ cpm: 1.25,
802
+ cpmCached: 0.125
803
+ },
804
+ output: {
805
+ tokens: 128e3,
806
+ text: true,
807
+ cpm: 10
808
+ }
809
+ }
810
+ },
659
811
  "gpt-5-chat-latest": {
660
812
  name: "gpt-5-chat-latest",
661
813
  provider: Vendor.OpenAI,
@@ -862,7 +1014,302 @@ var MODEL_REGISTRY = {
862
1014
  }
863
1015
  }
864
1016
  },
1017
+ // Audio Models (New generation - replaces gpt-4o-audio-*)
1018
+ "gpt-audio-1.5": {
1019
+ name: "gpt-audio-1.5",
1020
+ provider: Vendor.OpenAI,
1021
+ description: "Latest audio model with text+audio input/output. 128K context",
1022
+ isActive: true,
1023
+ preferred: true,
1024
+ releaseDate: "2025-12-01",
1025
+ knowledgeCutoff: "2024-09-30",
1026
+ features: {
1027
+ reasoning: false,
1028
+ streaming: true,
1029
+ structuredOutput: false,
1030
+ functionCalling: true,
1031
+ fineTuning: false,
1032
+ predictedOutputs: false,
1033
+ realtime: false,
1034
+ vision: false,
1035
+ audio: true,
1036
+ video: false,
1037
+ batchAPI: false,
1038
+ promptCaching: false,
1039
+ input: {
1040
+ tokens: 128e3,
1041
+ text: true,
1042
+ audio: true,
1043
+ cpm: 2.5
1044
+ },
1045
+ output: {
1046
+ tokens: 16384,
1047
+ text: true,
1048
+ audio: true,
1049
+ cpm: 10
1050
+ }
1051
+ }
1052
+ },
1053
+ "gpt-audio": {
1054
+ name: "gpt-audio",
1055
+ provider: Vendor.OpenAI,
1056
+ description: "Audio model with text+audio input/output. 128K context",
1057
+ isActive: true,
1058
+ releaseDate: "2025-06-01",
1059
+ knowledgeCutoff: "2023-10-01",
1060
+ features: {
1061
+ reasoning: false,
1062
+ streaming: true,
1063
+ structuredOutput: false,
1064
+ functionCalling: true,
1065
+ fineTuning: false,
1066
+ predictedOutputs: false,
1067
+ realtime: false,
1068
+ vision: false,
1069
+ audio: true,
1070
+ video: false,
1071
+ batchAPI: false,
1072
+ promptCaching: false,
1073
+ input: {
1074
+ tokens: 128e3,
1075
+ text: true,
1076
+ audio: true,
1077
+ cpm: 2.5
1078
+ },
1079
+ output: {
1080
+ tokens: 16384,
1081
+ text: true,
1082
+ audio: true,
1083
+ cpm: 10
1084
+ }
1085
+ }
1086
+ },
1087
+ "gpt-audio-mini": {
1088
+ name: "gpt-audio-mini",
1089
+ provider: Vendor.OpenAI,
1090
+ description: "Cost-efficient audio model. 128K context",
1091
+ isActive: true,
1092
+ releaseDate: "2025-06-01",
1093
+ knowledgeCutoff: "2023-10-01",
1094
+ features: {
1095
+ reasoning: false,
1096
+ streaming: true,
1097
+ structuredOutput: false,
1098
+ functionCalling: true,
1099
+ fineTuning: false,
1100
+ predictedOutputs: false,
1101
+ realtime: false,
1102
+ vision: false,
1103
+ audio: true,
1104
+ video: false,
1105
+ batchAPI: false,
1106
+ promptCaching: false,
1107
+ input: {
1108
+ tokens: 128e3,
1109
+ text: true,
1110
+ audio: true,
1111
+ cpm: 0.6
1112
+ },
1113
+ output: {
1114
+ tokens: 16384,
1115
+ text: true,
1116
+ audio: true,
1117
+ cpm: 2.4
1118
+ }
1119
+ }
1120
+ },
1121
+ // Realtime Models (New generation - replaces gpt-4o-realtime-*)
1122
+ "gpt-realtime-1.5": {
1123
+ name: "gpt-realtime-1.5",
1124
+ provider: Vendor.OpenAI,
1125
+ description: "Latest realtime model for voice/audio streaming. Text+audio+image input, text+audio output",
1126
+ isActive: true,
1127
+ preferred: true,
1128
+ releaseDate: "2025-12-01",
1129
+ knowledgeCutoff: "2024-09-30",
1130
+ voices: OPENAI_REALTIME_VOICES,
1131
+ features: {
1132
+ reasoning: false,
1133
+ streaming: true,
1134
+ structuredOutput: false,
1135
+ functionCalling: true,
1136
+ fineTuning: false,
1137
+ predictedOutputs: false,
1138
+ realtime: true,
1139
+ vision: true,
1140
+ audio: true,
1141
+ video: false,
1142
+ batchAPI: false,
1143
+ promptCaching: false,
1144
+ input: {
1145
+ tokens: 32e3,
1146
+ text: true,
1147
+ image: true,
1148
+ audio: true,
1149
+ cpm: 4
1150
+ },
1151
+ output: {
1152
+ tokens: 4096,
1153
+ text: true,
1154
+ audio: true,
1155
+ cpm: 16
1156
+ }
1157
+ }
1158
+ },
1159
+ "gpt-realtime": {
1160
+ name: "gpt-realtime",
1161
+ provider: Vendor.OpenAI,
1162
+ description: "Realtime model for voice/audio streaming. Text+audio+image input, text+audio output",
1163
+ isActive: true,
1164
+ releaseDate: "2025-06-01",
1165
+ knowledgeCutoff: "2023-10-01",
1166
+ voices: OPENAI_REALTIME_VOICES,
1167
+ features: {
1168
+ reasoning: false,
1169
+ streaming: true,
1170
+ structuredOutput: false,
1171
+ functionCalling: true,
1172
+ fineTuning: false,
1173
+ predictedOutputs: false,
1174
+ realtime: true,
1175
+ vision: true,
1176
+ audio: true,
1177
+ video: false,
1178
+ batchAPI: false,
1179
+ promptCaching: false,
1180
+ input: {
1181
+ tokens: 32e3,
1182
+ text: true,
1183
+ image: true,
1184
+ audio: true,
1185
+ cpm: 4
1186
+ },
1187
+ output: {
1188
+ tokens: 4096,
1189
+ text: true,
1190
+ audio: true,
1191
+ cpm: 16
1192
+ }
1193
+ }
1194
+ },
1195
+ "gpt-realtime-mini": {
1196
+ name: "gpt-realtime-mini",
1197
+ provider: Vendor.OpenAI,
1198
+ description: "Cost-efficient realtime model for voice/audio streaming",
1199
+ isActive: true,
1200
+ releaseDate: "2025-06-01",
1201
+ knowledgeCutoff: "2023-10-01",
1202
+ voices: OPENAI_REALTIME_VOICES,
1203
+ features: {
1204
+ reasoning: false,
1205
+ streaming: true,
1206
+ structuredOutput: false,
1207
+ functionCalling: true,
1208
+ fineTuning: false,
1209
+ predictedOutputs: false,
1210
+ realtime: true,
1211
+ vision: true,
1212
+ audio: true,
1213
+ video: false,
1214
+ batchAPI: false,
1215
+ promptCaching: false,
1216
+ input: {
1217
+ tokens: 32e3,
1218
+ text: true,
1219
+ image: true,
1220
+ audio: true,
1221
+ cpm: 0.6
1222
+ },
1223
+ output: {
1224
+ tokens: 4096,
1225
+ text: true,
1226
+ audio: true,
1227
+ cpm: 2.4
1228
+ }
1229
+ }
1230
+ },
865
1231
  // Reasoning Models (o-series)
1232
+ "o3": {
1233
+ name: "o3",
1234
+ provider: Vendor.OpenAI,
1235
+ description: "Powerful reasoning model for coding, math, and science. 200K context",
1236
+ isActive: true,
1237
+ preferred: true,
1238
+ releaseDate: "2025-04-01",
1239
+ knowledgeCutoff: "2024-06-01",
1240
+ features: {
1241
+ reasoning: true,
1242
+ streaming: true,
1243
+ structuredOutput: true,
1244
+ functionCalling: true,
1245
+ fineTuning: false,
1246
+ predictedOutputs: false,
1247
+ realtime: false,
1248
+ vision: true,
1249
+ audio: false,
1250
+ video: false,
1251
+ batchAPI: true,
1252
+ promptCaching: true,
1253
+ parameters: {
1254
+ temperature: false,
1255
+ topP: false,
1256
+ frequencyPenalty: false,
1257
+ presencePenalty: false
1258
+ },
1259
+ input: {
1260
+ tokens: 2e5,
1261
+ text: true,
1262
+ image: true,
1263
+ cpm: 2,
1264
+ cpmCached: 0.5
1265
+ },
1266
+ output: {
1267
+ tokens: 1e5,
1268
+ text: true,
1269
+ cpm: 8
1270
+ }
1271
+ }
1272
+ },
1273
+ "o4-mini": {
1274
+ name: "o4-mini",
1275
+ provider: Vendor.OpenAI,
1276
+ description: "Fast, cost-efficient reasoning model. 200K context",
1277
+ isActive: true,
1278
+ releaseDate: "2025-04-01",
1279
+ knowledgeCutoff: "2024-06-01",
1280
+ features: {
1281
+ reasoning: true,
1282
+ streaming: true,
1283
+ structuredOutput: true,
1284
+ functionCalling: true,
1285
+ fineTuning: false,
1286
+ predictedOutputs: false,
1287
+ realtime: false,
1288
+ vision: true,
1289
+ audio: false,
1290
+ video: false,
1291
+ batchAPI: true,
1292
+ promptCaching: true,
1293
+ parameters: {
1294
+ temperature: false,
1295
+ topP: false,
1296
+ frequencyPenalty: false,
1297
+ presencePenalty: false
1298
+ },
1299
+ input: {
1300
+ tokens: 2e5,
1301
+ text: true,
1302
+ image: true,
1303
+ cpm: 1.1,
1304
+ cpmCached: 0.275
1305
+ },
1306
+ output: {
1307
+ tokens: 1e5,
1308
+ text: true,
1309
+ cpm: 4.4
1310
+ }
1311
+ }
1312
+ },
866
1313
  "o3-mini": {
867
1314
  name: "o3-mini",
868
1315
  provider: Vendor.OpenAI,
@@ -942,6 +1389,148 @@ var MODEL_REGISTRY = {
942
1389
  }
943
1390
  }
944
1391
  },
1392
+ // Deep Research Models
1393
+ "o3-deep-research": {
1394
+ name: "o3-deep-research",
1395
+ provider: Vendor.OpenAI,
1396
+ description: "Deep research model for comprehensive web-based research. No function calling",
1397
+ isActive: true,
1398
+ releaseDate: "2025-06-01",
1399
+ knowledgeCutoff: "2024-06-01",
1400
+ features: {
1401
+ reasoning: true,
1402
+ streaming: true,
1403
+ structuredOutput: false,
1404
+ functionCalling: false,
1405
+ fineTuning: false,
1406
+ predictedOutputs: false,
1407
+ realtime: false,
1408
+ vision: false,
1409
+ audio: false,
1410
+ video: false,
1411
+ batchAPI: false,
1412
+ promptCaching: false,
1413
+ parameters: {
1414
+ temperature: false,
1415
+ topP: false,
1416
+ frequencyPenalty: false,
1417
+ presencePenalty: false
1418
+ },
1419
+ input: {
1420
+ tokens: 2e5,
1421
+ text: true,
1422
+ cpm: 10
1423
+ },
1424
+ output: {
1425
+ tokens: 1e5,
1426
+ text: true,
1427
+ cpm: 40
1428
+ }
1429
+ }
1430
+ },
1431
+ "o4-mini-deep-research": {
1432
+ name: "o4-mini-deep-research",
1433
+ provider: Vendor.OpenAI,
1434
+ description: "Cost-efficient deep research model for web-based research. No function calling",
1435
+ isActive: true,
1436
+ releaseDate: "2025-06-01",
1437
+ knowledgeCutoff: "2024-06-01",
1438
+ features: {
1439
+ reasoning: true,
1440
+ streaming: true,
1441
+ structuredOutput: false,
1442
+ functionCalling: false,
1443
+ fineTuning: false,
1444
+ predictedOutputs: false,
1445
+ realtime: false,
1446
+ vision: false,
1447
+ audio: false,
1448
+ video: false,
1449
+ batchAPI: false,
1450
+ promptCaching: false,
1451
+ parameters: {
1452
+ temperature: false,
1453
+ topP: false,
1454
+ frequencyPenalty: false,
1455
+ presencePenalty: false
1456
+ },
1457
+ input: {
1458
+ tokens: 2e5,
1459
+ text: true,
1460
+ cpm: 2
1461
+ },
1462
+ output: {
1463
+ tokens: 1e5,
1464
+ text: true,
1465
+ cpm: 8
1466
+ }
1467
+ }
1468
+ },
1469
+ // Open-Weight Models (Apache 2.0)
1470
+ "gpt-oss-120b": {
1471
+ name: "gpt-oss-120b",
1472
+ provider: Vendor.OpenAI,
1473
+ description: "Open-weight 117B param MoE model (5.1B active). Apache 2.0 license. Runs on single H100",
1474
+ isActive: true,
1475
+ releaseDate: "2025-10-01",
1476
+ knowledgeCutoff: "2024-06-01",
1477
+ features: {
1478
+ reasoning: true,
1479
+ streaming: true,
1480
+ structuredOutput: true,
1481
+ functionCalling: true,
1482
+ fineTuning: true,
1483
+ predictedOutputs: false,
1484
+ realtime: false,
1485
+ vision: false,
1486
+ audio: false,
1487
+ video: false,
1488
+ batchAPI: false,
1489
+ promptCaching: false,
1490
+ input: {
1491
+ tokens: 131072,
1492
+ text: true,
1493
+ cpm: 0
1494
+ },
1495
+ output: {
1496
+ tokens: 131072,
1497
+ text: true,
1498
+ cpm: 0
1499
+ }
1500
+ }
1501
+ },
1502
+ "gpt-oss-20b": {
1503
+ name: "gpt-oss-20b",
1504
+ provider: Vendor.OpenAI,
1505
+ description: "Open-weight 21B param MoE model (3.6B active). Apache 2.0 license",
1506
+ isActive: true,
1507
+ releaseDate: "2025-10-01",
1508
+ knowledgeCutoff: "2024-06-01",
1509
+ features: {
1510
+ reasoning: true,
1511
+ streaming: true,
1512
+ structuredOutput: true,
1513
+ functionCalling: true,
1514
+ fineTuning: true,
1515
+ predictedOutputs: false,
1516
+ realtime: false,
1517
+ vision: false,
1518
+ audio: false,
1519
+ video: false,
1520
+ batchAPI: false,
1521
+ promptCaching: false,
1522
+ input: {
1523
+ tokens: 131072,
1524
+ text: true,
1525
+ cpm: 0
1526
+ },
1527
+ output: {
1528
+ tokens: 131072,
1529
+ text: true,
1530
+ cpm: 0
1531
+ }
1532
+ }
1533
+ },
945
1534
  // ============================================================================
946
1535
  // Anthropic Models (Verified from platform.claude.com - March 2026)
947
1536
  // ============================================================================