@pouchy_ai/companion-sdk - v0.1.0
    Preparing search index...

    Interface CompanionTranscriptEntry

    One rendered line of the conversation, in arrival order. 'assistant' matches the industry role vocabulary and this package's own voice-call transcript + @pouchy_ai/react's ChatMessage (0.33.0 — was 'companion').

    interface CompanionTranscriptEntry {
        at: number;
        role: "user" | "assistant";
        text: string;
    }
    Index
    at: number

    Client wall-clock ms when the entry was appended.

    role: "user" | "assistant"
    text: string