Hiyve Components - v1.0.0
    Preparing search index...

    A conversation session containing messages

    interface AgentConversation {
        createdAt: Date;
        id: string;
        messages: AgentAssistantMessage[];
        pendingAction?: Record<string, unknown> | null;
        title: string;
        updatedAt: Date;
    }
    Index

    Properties

    createdAt: Date

    When the conversation was created

    id: string

    Session identifier

    Messages in this conversation

    pendingAction?: Record<string, unknown> | null

    Pending action context for multi-step operations

    title: string

    Conversation title (auto-generated from first query)

    updatedAt: Date

    When the conversation was last updated