fix: Remove DevChat install commands

- Removed DevChat.InstallCommandPython from package.json commands array
- Commented out DevChat.InstallCommandPython execution in statusBarView.ts
- No longer triggers Python command installation in statusBarItem creation
This commit is contained in:
bobo.yang 2024-05-07 18:04:23 +08:00
parent 48ddd6aead
commit 470beacf89
2 changed files with 1 additions and 6 deletions

View File

@ -691,11 +691,6 @@
"title": "Update Chat Models",
"category": "DevChat"
},
{
"command": "DevChat.InstallCommandPython",
"title": "Install Python for Commands",
"category": "DevChat"
},
{
"command": "DevChat.Chat",
"title": "Chat with DevChat",

View File

@ -52,7 +52,7 @@ export function createStatusBarItem(context: vscode.ExtensionContext): vscode.St
if (!hasInstallCommands) {
hasInstallCommands = true;
await vscode.commands.executeCommand('DevChat.InstallCommands');
vscode.commands.executeCommand('DevChat.InstallCommandPython');
// vscode.commands.executeCommand('DevChat.InstallCommandPython');
}
clearInterval(timer);