Skip to content

Commit 8a2a0ec

Browse files
committed
Disable responsesApiContextManagement by default
1 parent 0836ed0 commit 8a2a0ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3798,7 +3798,7 @@
37983798
},
37993799
"github.copilot.chat.responsesApiContextManagement.enabled": {
38003800
"type": "boolean",
3801-
"default": true,
3801+
"default": false,
38023802
"markdownDescription": "%github.copilot.config.responsesApiContextManagement.enabled%",
38033803
"tags": [
38043804
"experimental",

src/platform/configuration/common/configurationService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ export namespace ConfigKey {
894894
/** Configure reasoning summary style sent to Responses API */
895895
export const ResponsesApiReasoningSummary = defineSetting<'off' | 'detailed'>('chat.responsesApiReasoningSummary', ConfigType.ExperimentBased, 'detailed');
896896
/** Enable context_management sent to Responses API */
897-
export const ResponsesApiContextManagementEnabled = defineSetting<boolean>('chat.responsesApiContextManagement.enabled', ConfigType.ExperimentBased, true);
897+
export const ResponsesApiContextManagementEnabled = defineSetting<boolean>('chat.responsesApiContextManagement.enabled', ConfigType.ExperimentBased, false);
898898
export const EnableChatImageUpload = defineSetting<boolean>('chat.imageUpload.enabled', ConfigType.ExperimentBased, true);
899899
/** Thinking token budget for Anthropic extended thinking. If set, enables extended thinking. */
900900
export const AnthropicThinkingBudget = defineSetting<number>('chat.anthropic.thinking.budgetTokens', ConfigType.ExperimentBased, 16000);

0 commit comments

Comments
 (0)