Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on May 15, 2026. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 3.4k
feat: Add GPT-5 Pro with background mode auto-resume and polling#8608
Closed
Uh oh!
There was an error while loading. Please reload this page.
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
84f58cd
feat(models): add per-model timeout disable to avoid global override …
hannesrudolph 9ecd7bb
feat(openai-models): add gpt-5-pro-2025-10-06 with timeout disabled a…
hannesrudolph d73bdf3
revert: per-model disableTimeout implementation; remove flag from gpt…
hannesrudolph 3949621
feat(openai-native): background mode + auto-resume and poll fallback
hannesrudolph f3b654d
chore: remove TEMP_OPENAI_BACKGROUND_TASK_DOCS.DM and ignore temp docs
hannesrudolph cb975a2
feat(openai-models): update maxTokens for gpt-5-pro-2025-10-06 from 2…
hannesrudolph c6b7681
feat(chat): enhance background status handling and UI updates for ter…
hannesrudolph e118846
fix: Address PR review feedback - fix stale resume IDs, update model …
hannesrudolph 7cff4db
fix(webview): define chevron icon via codicon and add missing isExpan…
hannesrudolph d552cce
fix(openai): update reasoning effort default to high and improve mode…
hannesrudolph 49f90b9
webview-ui: use standard API Request icons for background mode; keep …
hannesrudolph 50242b4
fix(openai-native): add logging for background resume and polling; cl…
hannesrudolph 9803d43
fix(types/openai): correct GPT-5 Pro description typos/grammar; perf(…
hannesrudolph f988dee
fix: use hyphen instead of em dash in GPT-5 Pro description, remove u…
hannesrudolph f138361
fix: fix type errors - add metadata to ClineMessage, fix getResponseI…
hannesrudolph 8f5e2ed
fix: track currentRequestResponseId in SSE fallback path for backgrou…
hannesrudolph 706138e
Handle terminal failures in background resume/poll
hannesrudolph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -47,6 +47,21 @@ export const openAiNativeModels = { | ||
| ], | ||
| description: "GPT-5.1: The best model for coding and agentic tasks across domains", | ||
| }, | ||
| "gpt-5-pro-2025-10-06": { | ||
| maxTokens: 128000, | ||
| contextWindow: 400000, | ||
| supportsImages: true, | ||
| supportsPromptCache: false, | ||
| supportsReasoningEffort: false, // This is set to false to prevent the ui from displaying the reasoning effort selector | ||
hannesrudolph marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| reasoningEffort: "high", // Pro model uses high reasoning effort by default and must be specified | ||
| inputPrice: 15.0, | ||
| outputPrice: 120.0, | ||
hannesrudolph marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. hannesrudolph marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| description: | ||
| "GPT-5 Pro: A slow, reasoning-focused model for complex problems. Uses background mode with resilient streaming - requests may take some time and will automatically reconnect if they time out.", | ||
| supportsVerbosity: true, | ||
hannesrudolph marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| supportsTemperature: false, | ||
| backgroundMode: true, | ||
| }, | ||
| "gpt-5.1-codex": { | ||
| maxTokens: 128000, | ||
| contextWindow: 400000, | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.