Hiyve Components - v1.0.0
    Preparing search index...

    Interface TranscriptionMoodData

    Mood data to attach to transcription entries.

    Used with enrichTranscription() to attach real-time mood analysis results to recent transcription entries. This enables displaying sentiment indicators alongside transcribed speech.

    TranscriptionEntry for the enriched transcription type

    interface TranscriptionMoodData {
        confidence?: number;
        emotion?: string;
        engagement?: number;
        sentiment: "positive" | "negative" | "neutral";
    }
    Index

    Properties

    confidence?: number

    Confidence of the mood detection from 0 to 1

    emotion?: string

    Emotion string (e.g., 'happy', 'sad', 'neutral')

    engagement?: number

    Engagement level from 0 to 1

    sentiment: "positive" | "negative" | "neutral"

    Sentiment classification