@pouchy_ai/companion-sdk - v0.63.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. attachments is present only when the turn produced files (0.54.0).

    interface MessagePayload {
        attachments?: MessageAttachment[];
        replyTo?: string;
        text: string;
    }
    Index
    attachments?: MessageAttachment[]
    replyTo?: string
    text: string