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