Interface InformationalChatResponseContent

An informational chat response content represents a message that is purely informational and should not be included in the overall representation of the response.

interface InformationalChatResponseContent {
    content: MarkdownString;
    kind: "informational";
    asString?(): undefined | string;
    merge?(nextChatResponseContent): boolean;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

content: MarkdownString
kind: "informational"

Methods