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

    Interface MessagePayload

    Payload of a companion.message event — the companion's text reply. When the turn was started by this client with sendText, replyTo echoes the request's turnId (0.28.0) so a reply can be correlated to its turn; proactive messages (world-state reactions, confirm outcomes) carry none.

    interface MessagePayload {
        replyTo?: string;
        text: string;
    }
    Index
    replyTo?: string
    text: string