Theia API Documentation v1.66.0
    Preparing search index...

    Interface ChatFollowupProvider

    Will be invoked once after each request to get suggested followup questions to show the user. The user can click the followup to send it to the chat.

    interface ChatFollowupProvider {
        provideFollowups(
            result: ChatResult,
            context: ChatContext,
            token: CancellationToken,
        ): ProviderResult<ChatFollowup[]>;
    }
    Index

    Methods