Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/vs/workbench/contrib/chat/browser/chatWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2095,7 +2095,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
type CancelRequestEventEditClassification = {
owner: 'justschen';
editRequestType: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'Current entry point for editing a request.' };
editCanceled: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'Indicates whether the edit was canceled.' };
editCanceled: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; isMeasurement: true; comment: 'Indicates whether the edit was canceled.' };
comment: 'Event used to gain insights into when edits are being canceled.';
};

Expand Down Expand Up @@ -2672,8 +2672,8 @@ export class ChatWidget extends Disposable implements IChatWidget {
type ChatEditingWorkingSetClassification = {
owner: 'joyceerhl';
comment: 'Information about the working set size in a chat editing request';
originalSize: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'The number of files that the user tried to attach in their editing request.' };
actualSize: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'The number of files that were actually sent in their editing request.' };
originalSize: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; isMeasurement: true; comment: 'The number of files that the user tried to attach in their editing request.' };
actualSize: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; isMeasurement: true; comment: 'The number of files that were actually sent in their editing request.' };
};
type ChatEditingWorkingSetEvent = {
originalSize: number;
Expand Down
Loading