Files
vscode/src/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts
Logan Ramos 13b1a4e793 Remove requester info from API (#277233)
* Remove requester info from API

* Update snapshots
2025-11-13 20:10:20 +00:00

43 lines
1.4 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// version: 4
declare module 'vscode' {
export interface ChatWelcomeMessageContent {
icon: ThemeIcon;
title: string;
message: MarkdownString;
}
export interface ChatTitleProvider {
/**
* TODO@API Should this take a ChatResult like the followup provider, or just take a new ChatContext that includes the current message as history?
*/
provideChatTitle(context: ChatContext, token: CancellationToken): ProviderResult<string>;
}
export interface ChatSummarizer {
provideChatSummary(context: ChatContext, token: CancellationToken): ProviderResult<string>;
}
export interface ChatParticipant {
/**
* A string that will be added before the listing of chat participants in `/help`.
*/
helpTextPrefix?: string | MarkdownString;
/**
* A string that will be appended after the listing of chat participants in `/help`.
*/
helpTextPostfix?: string | MarkdownString;
additionalWelcomeMessage?: string | MarkdownString;
titleProvider?: ChatTitleProvider;
summarizer?: ChatSummarizer;
}
}