/*--------------------------------------------------------------------------------------------- * 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; } export interface ChatSummarizer { provideChatSummary(context: ChatContext, token: CancellationToken): ProviderResult; } 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; } }