File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments