SongGuess
    Preparing search index...

    Interface Ai_Cf_Deepgram_Nova_3_Output

    interface Ai_Cf_Deepgram_Nova_3_Output {
        results?: {
            channels?: {
                alternatives?: {
                    confidence?: number;
                    transcript?: string;
                    words?: { confidence?: ...; end?: ...; start?: ...; word?: ... }[];
                }[];
            }[];
            sentiments?: {
                average?: { sentiment?: string; sentiment_score?: number };
                segments?: {
                    end_word?: number;
                    sentiment?: string;
                    sentiment_score?: number;
                    start_word?: number;
                    text?: string;
                }[];
            };
            summary?: { result?: string; short?: string };
        };
    }
    Index

    Properties

    Properties

    results?: {
        channels?: {
            alternatives?: {
                confidence?: number;
                transcript?: string;
                words?: { confidence?: ...; end?: ...; start?: ...; word?: ... }[];
            }[];
        }[];
        sentiments?: {
            average?: { sentiment?: string; sentiment_score?: number };
            segments?: {
                end_word?: number;
                sentiment?: string;
                sentiment_score?: number;
                start_word?: number;
                text?: string;
            }[];
        };
        summary?: { result?: string; short?: string };
    }