Member Junction
    Preparing search index...

    A parsed inbound websocket frame. The protocol multiplexes on type.

    interface ElevenLabsServerEvent {
        agent_response_correction_event?: {
            corrected_agent_response?: string;
            original_agent_response?: string;
        };
        agent_response_event?: { agent_response?: string };
        audio_event?: { audio_base_64?: string; event_id?: number };
        client_tool_call?: {
            parameters?: JSONObject;
            tool_call_id?: string;
            tool_name?: string;
        };
        conversation_initiation_metadata_event?: {
            agent_output_audio_format?: string;
            conversation_id?: string;
            user_input_audio_format?: string;
        };
        interruption_event?: { event_id?: number };
        ping_event?: { event_id?: number; ping_ms?: number };
        type?: string;
        user_transcription_event?: { user_transcript?: string };
        vad_score_event?: { vad_score?: number };
    }
    Index

    Properties

    agent_response_correction_event?: {
        corrected_agent_response?: string;
        original_agent_response?: string;
    }
    agent_response_event?: { agent_response?: string }
    audio_event?: { audio_base_64?: string; event_id?: number }
    client_tool_call?: {
        parameters?: JSONObject;
        tool_call_id?: string;
        tool_name?: string;
    }
    conversation_initiation_metadata_event?: {
        agent_output_audio_format?: string;
        conversation_id?: string;
        user_input_audio_format?: string;
    }
    interruption_event?: { event_id?: number }
    ping_event?: { event_id?: number; ping_ms?: number }
    type?: string
    user_transcription_event?: { user_transcript?: string }
    vad_score_event?: { vad_score?: number }