File tree 1 file changed +19
-0
lines changed
src/renderer/packages/models
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,15 @@ export const openaiModelConfigs = {
184
184
maxContextTokens : 128_000 ,
185
185
} ,
186
186
187
+ // https://platform.openai.com/docs/models#o1
188
+ 'o1' : {
189
+ maxTokens : 100_000 ,
190
+ maxContextTokens : 200_000 ,
191
+ } ,
192
+ 'o1-2024-12-17' : {
193
+ maxTokens : 100_000 ,
194
+ maxContextTokens : 200_000 ,
195
+ } ,
187
196
'o1-preview' : {
188
197
maxTokens : 32_768 ,
189
198
maxContextTokens : 128_000 ,
@@ -201,6 +210,16 @@ export const openaiModelConfigs = {
201
210
maxContextTokens : 128_000 ,
202
211
} ,
203
212
213
+ // https://platform.openai.com/docs/models#o3-mini
214
+ 'o3-mini' : {
215
+ maxTokens : 100_000 ,
216
+ maxContextTokens : 200_000 ,
217
+ } ,
218
+ 'o3-mini-2025-01-31' : {
219
+ maxTokens : 100_000 ,
220
+ maxContextTokens : 200_000 ,
221
+ } ,
222
+
204
223
'gpt-4' : {
205
224
maxTokens : 4_096 ,
206
225
maxContextTokens : 8_192 ,
You can’t perform that action at this time.
0 commit comments