mirror of
https://github.com/patriceckhart/zot.git
synced 2026-06-26 21:36:31 +02:00
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:
parent
b245be02e5
commit
dcc9ba05fc
1 changed files with 12 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue