From dcc9ba05fc340f0f0c0600a8ec5177a7c987063d Mon Sep 17 00:00:00 2001 From: patriceckhart Date: Fri, 24 Apr 2026 08:01:00 +0200 Subject: [PATCH] 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. --- internal/provider/models.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/internal/provider/models.go b/internal/provider/models.go index af6cec9..0a3cf28 100644 --- a/internal/provider/models.go +++ b/internal/provider/models.go @@ -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.