Skip to content

Commit fa6a59f

Browse files
authored
[Feat] Add gpt-5.5 to openai provider models
1 parent d63e7bd commit fa6a59f

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

packages/types/src/providers/openai.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,32 @@ export const openAiNativeModels = {
2424
description:
2525
"GPT-5.1 Codex Max: Our most intelligent coding model optimized for long-horizon, agentic coding tasks",
2626
},
27+
"gpt-5.5": {
28+
maxTokens: 128000,
29+
contextWindow: 1_050_000,
30+
includedTools: ["apply_patch"],
31+
excludedTools: ["apply_diff", "write_to_file"],
32+
supportsImages: true,
33+
supportsPromptCache: true,
34+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
35+
reasoningEffort: "none",
36+
inputPrice: 5.0,
37+
outputPrice: 30.0,
38+
cacheReadsPrice: 0.5,
39+
longContextPricing: {
40+
thresholdTokens: 272_000,
41+
inputPriceMultiplier: 2,
42+
outputPriceMultiplier: 1.5,
43+
appliesToServiceTiers: ["default", "flex"],
44+
},
45+
supportsVerbosity: true,
46+
supportsTemperature: false,
47+
tiers: [
48+
{ name: "flex", contextWindow: 1_050_000, inputPrice: 2.5, outputPrice: 15.0, cacheReadsPrice: 0.25 },
49+
{ name: "priority", contextWindow: 1_050_000, inputPrice: 12.5, outputPrice: 75.0, cacheReadsPrice: 1.25 },
50+
],
51+
description: "GPT-5.5: A new class of intelligence for coding and professional work",
52+
},
2753
"gpt-5.4": {
2854
maxTokens: 128000,
2955
contextWindow: 1_050_000,

0 commit comments

Comments
 (0)