@cavell/kit API
    Preparing search index...

    Interface Message

    Kit view-model types — mirrors the shapes of the legacy ai-companion store/types.ts so the ported components keep working, re-keyed to AG-UI identities (tool calls by toolCallId).

    interface Message {
        content: string;
        id: string;
        sentAt?: string;
        timestamp: number;
        type: "user" | "assistant" | "system";
    }
    Index
    content: string
    id: string
    sentAt?: string

    Server-minted UTC ISO time (timestamp above is the ordinal, not a clock).

    timestamp: number
    type: "user" | "assistant" | "system"