Assistant message.

interface IAssistantMessage {
    created_at: string & Format<"date-time">;
    id: string;
    text: string;
    type: "assistantMessage";
}

Hierarchy

  • IBase<"assistantMessage">
    • IAssistantMessage

Properties

Properties

created_at: string & Format<"date-time">

Creation timestamp of the history.

id: string

Primary key of the history.

text: string

The text content.

type: "assistantMessage"

Discriminator type.