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";
    asDisplayString?(): undefined | string;
    asString?(): undefined | string;
    merge?(nextChatResponseContent): boolean;
    toLanguageModelMessage?(): LanguageModelMessage | LanguageModelMessage[];
}

Hierarchy (view full)

Implemented by

Properties

content: MarkdownString
kind: "informational"

Methods