Skip to content

Commit f16f0e4

Browse files
authored
1 parent e5e93e3 commit f16f0e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/common/copilot.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import { EventType, TimelineEvent } from './timelineEvent';
77

88
export const COPILOT_SWE_AGENT = 'copilot-swe-agent';
9+
export const COPILOT_CLOUD_AGENT = 'copilot-cloud-agent';
910
export const COPILOT_REVIEWER = 'copilot-pull-request-reviewer';
1011
export const COPILOT_REVIEWER_ID = 'BOT_kgDOCnlnWA';
1112

src/github/copilotRemoteAgent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { parseSessionLogs, parseToolCallDetails, StrReplaceEditorToolData } from
1414
import { GitApiImpl } from '../api/api1';
1515
import { COPILOT_ACCOUNTS } from '../common/comment';
1616
import { CopilotRemoteAgentConfig } from '../common/config';
17-
import { COPILOT_LOGINS, COPILOT_SWE_AGENT } from '../common/copilot';
17+
import { COPILOT_CLOUD_AGENT, COPILOT_LOGINS, COPILOT_SWE_AGENT } from '../common/copilot';
1818
import { commands } from '../common/executeCommands';
1919
import { Disposable } from '../common/lifecycle';
2020
import Logger from '../common/logger';
@@ -60,7 +60,7 @@ export namespace SessionIdForPr {
6060

6161
export function getResource(prNumber: number, sessionIndex: number): vscode.Uri {
6262
return vscode.Uri.from({
63-
scheme: COPILOT_SWE_AGENT, path: `/${prefix}-${prNumber}-${sessionIndex}`,
63+
scheme: COPILOT_CLOUD_AGENT, path: `/${prefix}-${prNumber}-${sessionIndex}`,
6464
});
6565
}
6666

0 commit comments

Comments
 (0)