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 eecd171 commit 335ff5dCopy full SHA for 335ff5d
src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.ts
@@ -662,10 +662,10 @@ export class CreateRemoteAgentJobAction extends Action2 {
662
userPrompt,
663
summary: summary || userPrompt,
664
followup,
665
- _version: 2,
+ _version: 2, // Signal that we support the new response format
666
});
667
668
- if (result && typeof result === 'object' /* _version === 2 */) {
+ if (result && typeof result === 'object') { /* _version === 2 */
669
chatModel.acceptResponseProgress(addedRequest, { kind: 'pullRequest', ...result });
670
} else if (typeof result === 'string') {
671
chatModel.acceptResponseProgress(addedRequest, {
0 commit comments