Skip to content

Commit 744d989

Browse files
committed
fix(models): mark GPT-5.3 Codex pricing as official
1 parent 13e7e92 commit 744d989

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/models.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ static MODEL_INDEX: phf::Map<&'static str, ModelInfo> = phf_map! {
266266
},
267267
is_estimated: false,
268268
},
269-
// GPT-5.1 Codex models (estimated pricing - API not yet published)
269+
// GPT-5.1 Codex models
270270
"gpt-5.1-codex" => ModelInfo {
271271
pricing: PricingStructure::Flat {
272272
input_per_1m: 1.25,
@@ -325,7 +325,7 @@ static MODEL_INDEX: phf::Map<&'static str, ModelInfo> = phf_map! {
325325
},
326326
is_estimated: false,
327327
},
328-
// GPT-5.3 Codex (estimated pricing - API not yet published)
328+
// GPT-5.3 Codex
329329
"gpt-5.3-codex" => ModelInfo {
330330
pricing: PricingStructure::Flat {
331331
input_per_1m: 1.75,
@@ -334,7 +334,7 @@ static MODEL_INDEX: phf::Map<&'static str, ModelInfo> = phf_map! {
334334
caching: CachingSupport::OpenAI {
335335
cached_input_per_1m: 0.175,
336336
},
337-
is_estimated: true,
337+
is_estimated: false,
338338
},
339339
"gpt-5-pro" => ModelInfo {
340340
pricing: PricingStructure::Flat {

0 commit comments

Comments
 (0)