Skip to content

Commit 3d96350

Browse files
authored
don't enable autopilot in stable (#299877)
1 parent ecba61c commit 3d96350

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/chat/browser/chat.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ configurationRegistry.registerConfiguration({
374374
[ChatConfiguration.AutopilotEnabled]: {
375375
type: 'boolean',
376376
markdownDescription: nls.localize('chat.autopilot.enabled', "Controls whether the Autopilot mode is available in the permissions picker. When enabled, Autopilot auto-approves all tool calls and continues until the task is done."),
377-
default: true,
377+
default: product.quality !== 'stable', // don't enable by default in stable
378378
tags: ['experimental'],
379379
},
380380
[ChatConfiguration.GlobalAutoApprove]: {

0 commit comments

Comments
 (0)