We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694b645 commit 85acb7eCopy full SHA for 85acb7e
packages/core/src/codewhispererChat/controllers/chat/telemetryHelper.ts
@@ -627,7 +627,11 @@ export class CWCTelemetryHelper {
627
cwsprChatActiveEditorImportCount: triggerPayload.codeQuery?.fullyQualifiedNames?.used?.length,
628
cwsprChatResponseCode: responseCode,
629
cwsprChatRequestLength: triggerPayload.message?.length ?? 0,
630
- cwsprChatConversationType: triggerPayload.origin ? 'AgenticChat' : 'Chat',
+ cwsprChatConversationType: triggerPayload.origin
631
+ ? triggerPayload.toolResults
632
+ ? 'AgenticChatWithToolUse'
633
+ : 'AgenticChat'
634
+ : 'Chat',
635
credentialStartUrl: AuthUtil.instance.startUrl,
636
requestId: requestID,
637
reasonDesc: getTelemetryReasonDesc(errorReason),
0 commit comments