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

    Interface VoiceInjectPayload

    Payload of a companion.voice_inject event — a voiceRelevant world-state line the companion should say aloud DURING a live call (the app pushed the moment via sendWorldState; the server decided it's worth voicing). speak is the host's cue to route text to the active voice session. A text-only host can ignore it — the moment still shaped the next turn's context.

    interface VoiceInjectPayload {
        speak: boolean;
        text: string;
    }
    Index
    speak: boolean
    text: string