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
Use NEW_CHAT command to create new chat sessions for issue commands
- Updated issue.chatSuggestFix to use commands.NEW_CHAT instead of chatCommand()
- Updated issue.chatSummarizeIssue to use commands.NEW_CHAT instead of chatCommand()
- Removed unused chatCommand import from lm/utils
- Each invocation now creates a new chat session instead of reusing existing one
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
commands.executeCommand(chatCommandID,vscode.l10n.t('@githubpr Find a fix for issue {0}/{1}#{2}',issue.remote.owner,issue.remote.repositoryName,issue.number));
552
+
commands.executeCommand(commands.NEW_CHAT,{inputValue: vscode.l10n.t('@githubpr Find a fix for issue {0}/{1}#{2}',issue.remote.owner,issue.remote.repositoryName,issue.number)});
0 commit comments