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
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ type ChatProviderInvokedEvent = {
52
52
agent: string;
53
53
slashCommand: string|undefined;
54
54
location: ChatAgentLocation;
55
+
citations: number;
55
56
};
56
57
57
58
typeChatProviderInvokedClassification={
@@ -62,7 +63,8 @@ type ChatProviderInvokedClassification = {
62
63
chatSessionId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'A random ID for the session.'};
63
64
agent: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The type of agent used.'};
64
65
slashCommand?: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The type of slashCommand used.'};
65
-
location?: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The location at which chat request was made.'};
66
+
location: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The location at which chat request was made.'};
67
+
citations: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The number of public code citations that were returned with the response.'};
66
68
owner: 'roblourens';
67
69
comment: 'Provides insight into the performance of Chat agents.';
0 commit comments