Type alias IAIConversationMessageEvent

IAIConversationMessageEvent: {
    method: "ai_conversation";
    params: AIConversationParams;
    voice_sdk_id?: string;
}

Event payload emitted on SwEvent.AIConversationMessage. Represents an inbound ai_conversation JSON-RPC message from the backend.

Type declaration

  • method: "ai_conversation"

    The method of the JSON-RPC message (always "ai_conversation").

  • params: AIConversationParams

    The params of the ai_conversation message.

  • Optional voice_sdk_id?: string

    Voice SDK ID for correlation, if present.