We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fee715 commit b5f1185Copy full SHA for b5f1185
src/standalone/chat/installPackageTool.ts
@@ -66,7 +66,8 @@ export class InstallPackagesTool implements vscode.LanguageModelTool<IInstallPac
66
_token: vscode.CancellationToken
67
): vscode.ProviderResult<vscode.PreparedToolInvocation> {
68
const packageInstallationPrompt = vscode.l10n.t(
69
- `Install packages into notebook kernel: ${options.input.packageList.join(', ')}`
+ 'Install packages into notebook kernel: {0}',
70
+ options.input.packageList.join(', ')
71
);
72
const confirmationMessages = {
73
title: vscode.l10n.t(`Install Packages`),
0 commit comments