Skip to content

Commit

Permalink
remove user consent for chat (#204698)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Feb 8, 2024
1 parent 768c8e3 commit 3a00525
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
3 changes: 1 addition & 2 deletions src/vs/workbench/contrib/chat/browser/chat.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,7 @@ Registry.as<IExtensionFeaturesRegistry>(ExtensionFeaturesExtensions.ExtensionFea
label: nls.localize('chat', "Chat"),
description: nls.localize('chatFeatureDescription', "Allows the extension to make requests to the Large Language Model (LLM)."),
access: {
canToggle: true,
requireUserConsent: true,
canToggle: false,
},
renderer: new SyncDescriptor(ChatFeatureMarkdowneRenderer),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,19 +104,20 @@ class ExtensionFeaturesManagementService extends Disposable implements IExtensio
}

if (featureState.disabled === undefined) {
const extensionDescription = this.extensionService.extensions.find(e => ExtensionIdentifier.equals(e.identifier, extension));
const confirmationResult = await this.dialogService.confirm({
title: localize('accessExtensionFeature', "Access '{0}' Feature", feature.label),
message: localize('accessExtensionFeatureMessage', "'{0}' extension would like to access the '{1}' feature.", extensionDescription?.displayName ?? extension.value, feature.label),
detail: justification ?? feature.description,
custom: true,
primaryButton: localize('allow', "Allow"),
cancelButton: localize('disallow', "Don't Allow"),
});
this.setEnablement(extension, featureId, confirmationResult.confirmed);
if (!confirmationResult.confirmed) {
return false;
let enabled = true;
if (feature.access.requireUserConsent) {
const extensionDescription = this.extensionService.extensions.find(e => ExtensionIdentifier.equals(e.identifier, extension));
const confirmationResult = await this.dialogService.confirm({
title: localize('accessExtensionFeature', "Access '{0}' Feature", feature.label),
message: localize('accessExtensionFeatureMessage', "'{0}' extension would like to access the '{1}' feature.", extensionDescription?.displayName ?? extension.value, feature.label),
detail: justification ?? feature.description,
custom: true,
primaryButton: localize('allow', "Allow"),
cancelButton: localize('disallow', "Don't Allow"),
});
enabled = confirmationResult.confirmed;
}
this.setEnablement(extension, featureId, enabled);
}

featureState.accessData.current = {
Expand Down

0 comments on commit 3a00525

Please sign in to comment.