You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/chat/common/chatServiceImpl.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,7 @@ type ChatProviderInvokedEvent = {
50
50
requestType: 'string'|'followup'|'slashCommand';
51
51
chatSessionId: string;
52
52
agent: string;
53
+
agentExtensionId: string|undefined;
53
54
slashCommand: string|undefined;
54
55
location: ChatAgentLocation;
55
56
citations: number;
@@ -62,6 +63,7 @@ type ChatProviderInvokedClassification = {
62
63
requestType: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The type of request that the user made.'};
63
64
chatSessionId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'A random ID for the session.'};
64
65
agent: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The type of agent used.'};
66
+
agentExtensionId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The extension that contributed the agent.'};
65
67
slashCommand?: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The type of slashCommand used.'};
66
68
location: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The location at which chat request was made.'};
67
69
citations: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The number of public code citations that were returned with the response.'};
0 commit comments