File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ const PREMIUM_REQUESTS_URL = 'https://docs.github.com/en/copilot/concepts/copilo
21
21
22
22
export interface RemoteAgentJobPayload {
23
23
problem_statement : string ;
24
+ event_type : string ;
24
25
pull_request ?: {
25
26
title ?: string ;
26
27
body_placeholder ?: string ;
Original file line number Diff line number Diff line change @@ -616,6 +616,7 @@ export class CopilotRemoteAgentManager extends Disposable {
616
616
const problemStatement : string = `${ prompt } ${ problemContext ? `: ${ problemContext } ` : '' } ` ;
617
617
const payload : RemoteAgentJobPayload = {
618
618
problem_statement : problemStatement ,
619
+ event_type : 'visual_studio_code_remote_agent_tool_invoked' ,
619
620
pull_request : {
620
621
title,
621
622
body_placeholder : formatBodyPlaceholder ( problemContext ) ,
You can’t perform that action at this time.
0 commit comments