Make GPT-5.5 large prompt default#322166
Draft
jukasper wants to merge 3 commits into
Draft
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR makes GPT-5.5’s “large prompt sections” the default by inlining those sections directly into the shared Gpt55PromptBase, and removes the now-obsolete experiment/config plumbing that previously toggled them. The only remaining GPT-5.5 prompt variant is the economical search-and-edit experiment, now layered on top of the default large-prompt baseline.
Changes:
- Removed the
github.copilot.chat.gpt55LargePromptSections.enabledexperiment setting and related capability helper (isGpt55LargePromptSectionsExp) + config key wiring. - Deleted the unused GPT-5.5 large-prompt prompt variants (
gpt55LargePrompt.tsx) and simplified the GPT-5.5 prompt resolver accordingly. - Updated
Gpt55PromptBaseto always include the previously-gated “large prompt sections”, while keeping the economical search-and-edit variant behind its experiment.
Show a summary per file
| File | Description |
|---|---|
| extensions/copilot/src/platform/endpoint/common/chatModelCapabilities.ts | Removes the now-unused GPT-5.5 large-prompt experiment capability helper. |
| extensions/copilot/src/platform/configuration/common/configurationService.ts | Removes the EnableGpt55LargePromptSections experiment-based config key. |
| extensions/copilot/src/extension/prompts/node/agent/openai/gpt55Prompt.tsx | Simplifies prompt selection to default base prompt vs. economical search/edit variant only. |
| extensions/copilot/src/extension/prompts/node/agent/openai/gpt55LargePrompt.tsx | Deletes obsolete large-prompt experiment prompt variants. |
| extensions/copilot/src/extension/prompts/node/agent/openai/gpt55BasePrompt.tsx | Makes the previously large-prompt-only sections part of the default GPT-5.5 base prompt. |
| extensions/copilot/package.nls.json | Removes the localized description string for the removed configuration key. |
| extensions/copilot/package.json | Removes the configuration contribution for the removed experiment setting. |
Copilot's findings
- Files reviewed: 7/7 changed files
- Comments generated: 0
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
github.copilot.chat.gpt55LargePromptSections.enabledandgithub.copilot.chat.gpt55EconomicalSearchAndEdit.enabledexperiment settings, config keys, and capability helpers.Gpt55PromptResolveralways resolves toGpt55Promptfor GPT-5.5 models.Testing
npm run precommitNote:
cd extensions/copilot && npm run typecheckpassed earlier on this branch, but rerunning the full Copilot typecheck after the final cleanup was blocked locally by disk-space limits while reinstalling Copilot dependencies.