File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,14 @@ export const geminiModels = {
404404export type OpenAiNativeModelId = keyof typeof openAiNativeModels
405405export const openAiNativeDefaultModelId : OpenAiNativeModelId = "gpt-4o"
406406export const openAiNativeModels = {
407+ "gpt-4.5-preview" : {
408+ maxTokens : 16_384 ,
409+ contextWindow : 128_000 ,
410+ supportsImages : true ,
411+ supportsPromptCache : false ,
412+ inputPrice : 75 ,
413+ outputPrice : 150 ,
414+ } ,
407415 "o3-mini" : {
408416 maxTokens : 100_000 ,
409417 contextWindow : 200_000 ,
@@ -453,14 +461,6 @@ export const openAiNativeModels = {
453461 inputPrice : 0.15 ,
454462 outputPrice : 0.6 ,
455463 } ,
456- "gpt-4.5-preview" : {
457- maxTokens : 16_384 ,
458- contextWindow : 128_000 ,
459- supportsImages : true ,
460- supportsPromptCache : false ,
461- inputPrice : 75 ,
462- outputPrice : 150 ,
463- } ,
464464} as const satisfies Record < string , ModelInfo >
465465
466466// Azure OpenAI
You can’t perform that action at this time.
0 commit comments