Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a16cafb
change to settings.json to trigger search subagent with proxy
24anisha Feb 3, 2026
901f445
same as main
24anisha Feb 4, 2026
a03ce45
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 5, 2026
0be3ec5
update settings json
24anisha Feb 10, 2026
1fde0d3
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 11, 2026
d13be99
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 12, 2026
8ce21ef
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 13, 2026
cd4b1f9
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 14, 2026
a748042
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 17, 2026
0c74297
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 19, 2026
a60e910
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 23, 2026
46ba463
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 25, 2026
5af8ec8
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Feb 26, 2026
dd730e5
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 3, 2026
4820758
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 3, 2026
d01039e
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 4, 2026
756d5de
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 5, 2026
569f9db
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 10, 2026
79f151e
add conversation id for telemetry
24anisha Mar 10, 2026
a7d5ff3
Merge branch 'main' of https://github.com/microsoft/vscode-copilot-chat
24anisha Mar 10, 2026
de97b66
Merge branch 'main' into anisha/search_convid
24anisha Mar 10, 2026
40540a4
Merge branch 'main' into anisha/search_convid
24anisha Mar 10, 2026
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
3 changes: 2 additions & 1 deletion src/extension/prompt/node/searchSubagentToolCallingLoop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ export class SearchSubagentToolCallingLoop extends ToolCallingLoop<ISearchSubage
telemetryProperties: {
messageId: randomUUID(),
messageSource: 'chat.editAgent',
subType: 'subagent/search'
subType: 'subagent/search',
conversationId: this.options.conversation.sessionId
},
requestKindOptions: { kind: 'subagent' }
}, token);
Expand Down