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

    Configuration options for Intelligence mode.

    These options control what features are enabled when Intelligence mode is started. They can be configured via the settings panel and are passed to onIntelligenceStart.

    const intelligenceConfig: IntelligenceConfig = {
    autoCompose: true,
    transcribe: true,
    postMeetingSummary: true,
    useContext: true,
    autoStartMood: true,
    };
    interface IntelligenceConfig {
        autoCompose: boolean;
        autoStartMood: boolean;
        postMeetingSummary: boolean;
        transcribe: boolean;
        useContext: boolean;
    }
    Index

    Properties

    autoCompose: boolean

    Auto-compose individual tracks into a single video file after recording.

    true
    
    autoStartMood: boolean

    Automatically start mood analysis when Intelligence mode starts.

    true
    
    postMeetingSummary: boolean

    Generate an AI-powered meeting summary after recording ends. Requires transcribe to be true.

    true
    
    transcribe: boolean

    Enable real-time transcription during recording.

    true
    
    useContext: boolean

    Push transcriptions to AI for query access during the meeting. Requires transcribe to be true.

    true