We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe9dbe7 commit d348797Copy full SHA for d348797
2 files changed
src/github/copilotApi.ts
@@ -21,6 +21,7 @@ const PREMIUM_REQUESTS_URL = 'https://docs.github.com/en/copilot/concepts/copilo
21
22
export interface RemoteAgentJobPayload {
23
problem_statement: string;
24
+ event_type: string;
25
pull_request?: {
26
title?: string;
27
body_placeholder?: string;
src/github/copilotRemoteAgent.ts
@@ -616,6 +616,7 @@ export class CopilotRemoteAgentManager extends Disposable {
616
const problemStatement: string = `${prompt} ${problemContext ? `: ${problemContext}` : ''}`;
617
const payload: RemoteAgentJobPayload = {
618
problem_statement: problemStatement,
619
+ event_type: 'visual_studio_code_remote_agent_tool_invoked',
620
pull_request: {
621
title,
622
body_placeholder: formatBodyPlaceholder(problemContext),
0 commit comments