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

    Interface MoodAnalysisMoodState

    Mood state for a single participant.

    This represents the current emotional state of a participant as detected by the sentiment analyzer.

    interface MoodAnalysisMoodState {
        confidence: number;
        emotion: MoodEmotionType;
        enabled: boolean;
        engagement: number;
        gracePeriod: boolean;
        offFrame: boolean;
        timestamp: number;
    }
    Index

    Properties

    confidence: number

    Confidence score for the emotion detection (0-1).

    The dominant emotion detected.

    enabled: boolean

    Whether mood analysis is enabled for this participant.

    engagement: number

    Engagement level (0-1). Higher values indicate more engagement (eye contact, attention).

    gracePeriod: boolean

    Whether we're in the grace period after face left frame.

    offFrame: boolean

    Whether the participant's face is currently off-frame.

    timestamp: number

    Timestamp of the last update.