You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
? localize('agentHostAutoApprove.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. This includes terminal commands, file edits, and external tool calls. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.")
193
-
: localize('agentHostAutoApprove.bypass.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls.")),
"{0}\n\nTo make this the starting permission level for new chat sessions, change the [{1}](command:workbench.action.openSettings?%5B%22{1}%22%5D) setting.",
195
+
isAutopilot
196
+
? localize('agentHostAutoApprove.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. This includes terminal commands, file edits, and external tool calls. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.")
197
+
: localize('agentHostAutoApprove.bypass.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls."),
@@ -220,7 +229,10 @@ export class PermissionPicker extends Disposable {
220
229
custom: {
221
230
icon: Codicon.warning,
222
231
markdownDetails: [{
223
-
markdown: newMarkdownString(localize('permissions.autoApprove.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls.")),
232
+
markdown: newMarkdownString(
233
+
localize('permissions.autoApprove.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls.\n\nTo make this the starting permission level for new chat sessions, change the [{0}](command:workbench.action.openSettings?%5B%22{0}%22%5D) setting.",ChatConfiguration.DefaultPermissionLevel),
@@ -247,7 +259,10 @@ export class PermissionPicker extends Disposable {
247
259
custom: {
248
260
icon: Codicon.rocket,
249
261
markdownDetails: [{
250
-
markdown: newMarkdownString(localize('permissions.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.")),
262
+
markdown: newMarkdownString(
263
+
localize('permissions.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.\n\nTo make this the starting permission level for new chat sessions, change the [{0}](command:workbench.action.openSettings?%5B%22{0}%22%5D) setting.",ChatConfiguration.DefaultPermissionLevel),
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/chat/browser/widget/input/permissionPickerActionItem.ts
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,10 @@ export class PermissionPickerActionItem extends ChatInputPickerActionViewItem {
115
115
custom: {
116
116
icon: Codicon.warning,
117
117
markdownDetails: [{
118
-
markdown: newMarkdownString(localize('permissions.autoApprove.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls.")),
118
+
markdown: newMarkdownString(
119
+
localize('permissions.autoApprove.warning.detail',"Bypass Approvals will auto-approve all tool calls without asking for confirmation. This includes file edits, terminal commands, and external tool calls.\n\nTo make this the starting permission level for new chat sessions, change the [{0}](command:workbench.action.openSettings?%5B%22{0}%22%5D) setting.",ChatConfiguration.DefaultPermissionLevel),
@@ -164,7 +167,10 @@ export class PermissionPickerActionItem extends ChatInputPickerActionViewItem {
164
167
custom: {
165
168
icon: Codicon.rocket,
166
169
markdownDetails: [{
167
-
markdown: newMarkdownString(localize('permissions.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. This includes terminal commands, file edits, and external tool calls. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.")),
170
+
markdown: newMarkdownString(
171
+
localize('permissions.autopilot.warning.detail',"Autopilot will auto-approve all tool calls and continue working autonomously until the task is complete. This includes terminal commands, file edits, and external tool calls. The agent will make decisions on your behalf without asking for confirmation.\n\nYou can stop the agent at any time by clicking the stop button. This applies to the current session only.\n\nTo make this the starting permission level for new chat sessions, change the [{0}](command:workbench.action.openSettings?%5B%22{0}%22%5D) setting.",ChatConfiguration.DefaultPermissionLevel),
0 commit comments