feat(models): add gpt-5.5 and gpt-5.5-mini to catalog

Speculative entries for the next OpenAI GPT-5.5 family. Will activate automatically once OpenAI ships them.
This commit is contained in:
patriceckhart 2026-04-24 08:01:00 +02:00
parent b245be02e5
commit dcc9ba05fc

View file

@ -226,6 +226,18 @@ var Catalog = []Model{
PriceInput: 0.75, PriceOutput: 4.50, PriceCacheRead: 0.075,
Speculative: true,
},
{
Provider: "openai", ID: "gpt-5.5", DisplayName: "GPT-5.5",
ContextWindow: 400000, MaxOutput: 128000, Reasoning: true,
PriceInput: 2.50, PriceOutput: 15.00, PriceCacheRead: 0.25,
Speculative: true,
},
{
Provider: "openai", ID: "gpt-5.5-mini", DisplayName: "GPT-5.5 mini",
ContextWindow: 400000, MaxOutput: 128000, Reasoning: true,
PriceInput: 0.75, PriceOutput: 4.50, PriceCacheRead: 0.075,
Speculative: true,
},
}
// DefaultModel is used when the user does not specify one.