Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/extension/prompt/node/chatParticipantTelemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@ export class PanelChatTelemetry extends ChatTelemetry<IDocumentContext | undefin
toolCounts: JSON.stringify(toolCounts),
mode: modeName,
codeBlocks: JSON.stringify(codeBlocks),
vscodeRequestId: this._request.id,
},
{
isAgent: this._intent.id === AgentIntent.ID ? 1 : 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -948,6 +949,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -1187,6 +1189,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -1426,6 +1429,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -1715,6 +1719,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -1954,6 +1959,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -2193,6 +2199,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -2432,6 +2439,7 @@ exports[`defaultIntentRequestHandler > confirms on max tool call iterations, and
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -2753,6 +2761,7 @@ exports[`defaultIntentRequestHandler > makes a successful request with a single
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -3101,6 +3110,7 @@ exports[`defaultIntentRequestHandler > makes a tool call turn 2`] = `
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{"my_func":1}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down Expand Up @@ -3340,6 +3350,7 @@ exports[`defaultIntentRequestHandler > makes a tool call turn 2`] = `
"requestId": "turn-id-0",
"responseType": "success",
"toolCounts": "{}",
"vscodeRequestId": "some-uuid",
},
},
{
Expand Down
Loading