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 478d1bf commit 0e542f3Copy full SHA for 0e542f3
src/vs/workbench/contrib/chat/common/chatAgents.ts
@@ -445,7 +445,7 @@ export class ChatAgentService implements IChatAgentService {
445
const participants = this.getAgents().reduce<IChatParticipantMetadata[]>((acc, a) => {
446
acc.push({ participant: a.id, disambiguation: a.disambiguation ?? [] });
447
for (const command of a.slashCommands) {
448
- acc.push({ participant: a.id, command: command.name, disambiguation: [] });
+ acc.push({ participant: a.id, command: command.name, disambiguation: command.disambiguation ?? [] });
449
}
450
return acc;
451
}, []);
0 commit comments