SongGuess
    Preparing search index...

    Interface Ai_Cf_Deepgram_Flux_Output

    Output will be returned as websocket messages.

    interface Ai_Cf_Deepgram_Flux_Output {
        audio_window_end?: number;
        audio_window_start?: number;
        end_of_turn_confidence?: number;
        event?:
            | "Update"
            | "StartOfTurn"
            | "EagerEndOfTurn"
            | "TurnResumed"
            | "EndOfTurn";
        request_id?: string;
        sequence_id?: number;
        transcript?: string;
        turn_index?: number;
        words?: { confidence: number; word: string }[];
    }
    Index

    Properties

    audio_window_end?: number

    End time in seconds of the audio range that was transcribed

    audio_window_start?: number

    Start time in seconds of the audio range that was transcribed

    end_of_turn_confidence?: number

    Confidence that no more speech is coming in this turn

    event?:
        | "Update"
        | "StartOfTurn"
        | "EagerEndOfTurn"
        | "TurnResumed"
        | "EndOfTurn"

    The type of event being reported.

    request_id?: string

    The unique identifier of the request (uuid)

    sequence_id?: number

    Starts at 0 and increments for each message the server sends to the client.

    transcript?: string

    Text that was said over the course of the current turn

    turn_index?: number

    The index of the current turn

    words?: { confidence: number; word: string }[]

    The words in the transcript

    Type Declaration

    • confidence: number

      Confidence that this word was transcribed correctly

    • word: string

      The individual punctuated, properly-cased word from the transcript