User message.

User message about the user's input.

interface IUserMessage {
    contents: AgenticaUserMessageContent[];
    created_at: string & Format<"date-time">;
    id: string;
    type: "userMessage";
}

Hierarchy

  • IBase<"userMessage">
    • IUserMessage

Properties

User input.

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

Creation timestamp of the history.

id: string

Primary key of the history.

type: "userMessage"

Discriminator type.