Skip to content

Commit 6b273fc

Browse files
authored
call it the coding agent (#7051)
1 parent bbdfce4 commit 6b273fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/github/copilotApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class CopilotApi {
4949
});
5050
if (!response.ok) {
5151
const text = await response.text();
52-
throw new Error(`Remote agent API error: ${response.status} ${text}`);
52+
throw new Error(`Coding agent API error: ${response.status} ${text}`);
5353
}
5454
const data = await response.json();
5555
this.validateRemoteAgentJobResponse(data);

src/github/copilotRemoteAgent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class CopilotRemoteAgentManager extends Disposable {
143143
cancellable: false
144144
},
145145
async (progress) => {
146-
progress.report({ message: vscode.l10n.t('Starting remote agent...') });
146+
progress.report({ message: vscode.l10n.t('Initializing coding agent...') });
147147
const result = await this.invokeRemoteAgent(vscode.l10n.t('Continuing from VS Code'), body, autoPushAndCommit);
148148
if (result.state === 'error') {
149149
vscode.window.showErrorMessage(result.error);
@@ -153,7 +153,7 @@ export class CopilotRemoteAgentManager extends Disposable {
153153
const openLink = vscode.l10n.t('View');
154154
vscode.window.showInformationMessage(
155155
// allow-any-unicode-next-line
156-
vscode.l10n.t('🚀 Remote agent started! Track progress at {0}', link),
156+
vscode.l10n.t('🚀 Coding agent started! Track progress at {0}', link),
157157
openLink
158158
).then(selection => {
159159
if (selection === openLink) {

0 commit comments

Comments
 (0)