File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -563,6 +563,28 @@ fn populate_defaults(
563563 false
564564 ) ;
565565
566+ add_model ! (
567+ "gpt-5.5" ,
568+ PricingStructure :: Flat {
569+ input_per_1m: 5.0 ,
570+ output_per_1m: 30.0
571+ } ,
572+ CachingSupport :: OpenAI {
573+ cached_input_per_1m: 0.50
574+ } ,
575+ false
576+ ) ;
577+
578+ add_model ! (
579+ "gpt-5.5-pro" ,
580+ PricingStructure :: Flat {
581+ input_per_1m: 30.0 ,
582+ output_per_1m: 180.0
583+ } ,
584+ CachingSupport :: None ,
585+ false
586+ ) ;
587+
566588 add_model ! (
567589 "gpt-5.4-mini" ,
568590 PricingStructure :: Flat {
@@ -1262,6 +1284,12 @@ fn populate_defaults(
12621284 add_alias ! ( "gpt-5.2-codex" , "gpt-5.2-codex" ) ;
12631285 add_alias ! ( "gpt-5.3-codex" , "gpt-5.3-codex" ) ;
12641286 add_alias ! ( "gpt-5-pro" , "gpt-5-pro" ) ;
1287+ add_alias ! ( "gpt-5.4" , "gpt-5.4" ) ;
1288+ add_alias ! ( "gpt-5.4-pro" , "gpt-5.4-pro" ) ;
1289+ add_alias ! ( "gpt-5.4-mini" , "gpt-5.4-mini" ) ;
1290+ add_alias ! ( "gpt-5.4-nano" , "gpt-5.4-nano" ) ;
1291+ add_alias ! ( "gpt-5.5" , "gpt-5.5" ) ;
1292+ add_alias ! ( "gpt-5.5-pro" , "gpt-5.5-pro" ) ;
12651293
12661294 // Anthropic aliases
12671295 add_alias ! ( "claude-opus-4.7" , "claude-opus-4-7" ) ;
You can’t perform that action at this time.
0 commit comments