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

    Interface CompanionTurn

    One exchange from a session's conversation log (see history). user is the end-user's message, assistant the companion's reply; either may be '' for a paused / assistant-only row. ts is epoch ms.

    interface CompanionTurn {
        assistant: string;
        ts: number;
        user: string;
    }
    Index
    assistant: string
    ts: number
    user: string