Interface AgenticaAssistantMessageHistory

interface AgenticaAssistantMessageHistory {
    created_at: string & Format<"date-time">;
    id: string;
    text: string;
    toJSON: () => IAgenticaHistoryJson.IAssistantMessage;
    type: "assistantMessage";
}

Hierarchy

Properties

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

Creation timestamp of the history.

id: string

Primary key of the history.

text: string
type: "assistantMessage"

Discriminator type.