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.

Stubbed

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

Methods