@@ -50,6 +50,43 @@ export const openAiNativeModels = {
5050 ] ,
5151 description : "GPT-5.4: Our most capable model for professional work" ,
5252 } ,
53+ "gpt-5.4-mini" : {
54+ maxTokens : 128000 ,
55+ contextWindow : 400000 ,
56+ includedTools : [ "apply_patch" ] ,
57+ excludedTools : [ "apply_diff" , "write_to_file" ] ,
58+ supportsImages : true ,
59+ supportsPromptCache : true ,
60+ supportsReasoningEffort : [ "none" , "low" , "medium" , "high" , "xhigh" ] ,
61+ reasoningEffort : "none" ,
62+ inputPrice : 0.75 ,
63+ outputPrice : 4.5 ,
64+ cacheReadsPrice : 0.075 ,
65+ supportsVerbosity : true ,
66+ supportsTemperature : false ,
67+ tiers : [
68+ { name : "flex" , contextWindow : 400000 , inputPrice : 0.375 , outputPrice : 2.25 , cacheReadsPrice : 0.0375 } ,
69+ { name : "priority" , contextWindow : 400000 , inputPrice : 1.5 , outputPrice : 9.0 , cacheReadsPrice : 0.15 } ,
70+ ] ,
71+ description : "GPT-5.4 Mini: A faster, lower-cost GPT-5.4 model for coding and agentic workflows" ,
72+ } ,
73+ "gpt-5.4-nano" : {
74+ maxTokens : 128000 ,
75+ contextWindow : 400000 ,
76+ includedTools : [ "apply_patch" ] ,
77+ excludedTools : [ "apply_diff" , "write_to_file" ] ,
78+ supportsImages : true ,
79+ supportsPromptCache : true ,
80+ supportsReasoningEffort : [ "none" , "low" , "medium" , "high" , "xhigh" ] ,
81+ reasoningEffort : "none" ,
82+ inputPrice : 0.2 ,
83+ outputPrice : 1.25 ,
84+ cacheReadsPrice : 0.02 ,
85+ supportsVerbosity : true ,
86+ supportsTemperature : false ,
87+ tiers : [ { name : "flex" , contextWindow : 400000 , inputPrice : 0.1 , outputPrice : 0.625 , cacheReadsPrice : 0.01 } ] ,
88+ description : "GPT-5.4 Nano: The smallest GPT-5.4 model for high-volume, low-latency tasks" ,
89+ } ,
5390 "gpt-5.2" : {
5491 maxTokens : 128000 ,
5592 contextWindow : 400000 ,
0 commit comments