Skip to content

Commit 142f3fb

Browse files
feat(openai-codex): add GPT-5.5 model (#12170)
1 parent c4547d2 commit 142f3fb

21 files changed

Lines changed: 17 additions & 73 deletions

File tree

packages/types/src/providers/openai-codex.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,21 @@ export const openAiCodexModels = {
172172
supportsTemperature: false,
173173
description: "GPT-5.1 Codex Mini: Faster version for coding tasks via ChatGPT subscription",
174174
},
175+
"gpt-5.5": {
176+
maxTokens: 128000,
177+
contextWindow: 1_050_000,
178+
includedTools: ["apply_patch"],
179+
excludedTools: ["apply_diff", "write_to_file"],
180+
supportsImages: true,
181+
supportsPromptCache: true,
182+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
183+
reasoningEffort: "none",
184+
inputPrice: 0,
185+
outputPrice: 0,
186+
supportsVerbosity: true,
187+
supportsTemperature: false,
188+
description: "GPT-5.5: Most capable model via ChatGPT subscription",
189+
},
175190
"gpt-5.4": {
176191
maxTokens: 128000,
177192
contextWindow: 1_050_000,
@@ -185,7 +200,7 @@ export const openAiCodexModels = {
185200
outputPrice: 0,
186201
supportsVerbosity: true,
187202
supportsTemperature: false,
188-
description: "GPT-5.4: Most capable model via ChatGPT subscription",
203+
description: "GPT-5.4: Formerly most capable model via ChatGPT subscription",
189204
},
190205
"gpt-5.4-mini": {
191206
maxTokens: 128000,

webview-ui/src/components/settings/About.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { HTMLAttributes } from "react"
22
import { useAppTranslation } from "@/i18n/TranslationContext"
33
import { Trans } from "react-i18next"
4-
import { Download, Upload, TriangleAlert, Bug, Lightbulb, Shield, MessageCircle, MessagesSquare } from "lucide-react"
4+
import { Download, Upload, TriangleAlert, Bug, Lightbulb, Shield, MessagesSquare } from "lucide-react"
55
import { VSCodeCheckbox, VSCodeLink } from "@vscode/webview-ui-toolkit/react"
66

77
import type { TelemetrySetting } from "@roo-code/types"
@@ -89,13 +89,6 @@ export const About = ({ telemetrySetting, setTelemetrySetting, debug, setDebug,
8989
</VSCodeLink>
9090
</span>
9191
</div>
92-
<div className="flex items-start gap-2">
93-
<MessageCircle className="size-4 text-vscode-descriptionForeground shrink-0" />
94-
<span>
95-
{t("settings:about.contact.label")}{" "}
96-
<VSCodeLink href="mailto:support@roocode.com">support@roocode.com</VSCodeLink>
97-
</span>
98-
</div>
9992
<div className="flex items-start gap-2">
10093
<MessagesSquare className="size-4 text-vscode-descriptionForeground shrink-0" />
10194
<span>

webview-ui/src/components/settings/__tests__/About.spec.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,6 @@ describe("About", () => {
8383
expect(screen.getByText("settings:about.securityIssue.link")).toBeInTheDocument()
8484
})
8585

86-
it("renders the contact section with label and email", () => {
87-
render(
88-
<TranslationProvider>
89-
<About {...defaultProps} />
90-
</TranslationProvider>,
91-
)
92-
expect(screen.getByText("settings:about.contact.label")).toBeInTheDocument()
93-
expect(screen.getByText("support@roocode.com")).toBeInTheDocument()
94-
})
95-
9686
it("renders export, import, and reset buttons", () => {
9787
render(
9888
<TranslationProvider>

webview-ui/src/i18n/locales/ca/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/settings.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@
5656
"label": "Discovered a vulnerability?",
5757
"link": "Follow our disclosure process"
5858
},
59-
"contact": {
60-
"label": "Need to talk to us? Write"
61-
},
6259
"community": "Want tips or to just hang out with other Roo Code users? Join <redditLink>reddit.com/r/RooCode</redditLink> or <discordLink>discord.gg/roocode</discordLink>",
6360
"contactAndCommunity": "Contact & Community",
6461
"manageSettings": "Manage Settings",

webview-ui/src/i18n/locales/es/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/fr/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/hi/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/id/settings.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)