Event of text message.

interface IText {
    role: "assistant" | "user";
    text: string;
    type: "text";
}

Hierarchy

  • IBase<"text">
    • IText

Properties

Properties

role: "assistant" | "user"

Role of the orator.

text: string

The text content.

type: "text"

Discriminator type.