Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,6 @@ export class DelegationSessionPickerActionItem extends SessionTypePickerActionIt
return { label: localize('continueInThirdParty', "Continue In (Third Party)"), order: 2, showHeader: false };
}

protected override _getSessionDescription(sessionTypeItem: ISessionTypeItem): string | undefined {
const allContributions = this.chatSessionsService.getAllChatSessionContributions();
const contribution = allContributions.find(contribution => getAgentSessionProvider(contribution.type) === sessionTypeItem.type);

return contribution?.name ? `@${contribution.name}` : undefined;
}

protected override _getLearnMore(): IAction {
const learnMoreUrl = 'https://aka.ms/vscode-continue-chat-in';
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ class AgentCompletions extends Disposable {

const justAgents: CompletionItem[] = agents
.filter(a => !a.isDefault)
.filter(a => !chatSessionAgentIds.has(a.id))
.map(agent => {
const { label: agentLabel, isDupe } = this.getAgentCompletionDetails(agent);
const detail = agent.description;
Expand Down
Loading