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

    Interface ActionItemsPanelProps

    Props for ActionItemsPanel component

    interface ActionItemsPanelProps {
        autoExtract?: boolean;
        labels?: Partial<ActionItemsLabels>;
        onExtracted?: (items: IntelligenceActionItem[]) => void;
        onItemComplete?: (item: IntelligenceActionItem) => void;
        roomId?: string;
        sx?: SxProps<Theme>;
        transcript?: string;
        useLiveContext?: boolean;
        userId?: string;
    }
    Index

    Properties

    autoExtract?: boolean

    Auto-extract on mount

    labels?: Partial<ActionItemsLabels>

    Custom labels

    onExtracted?: (items: IntelligenceActionItem[]) => void

    Callback when items are extracted

    onItemComplete?: (item: IntelligenceActionItem) => void

    Callback when item is completed

    roomId?: string

    Room ID for live context

    sx?: SxProps<Theme>

    MUI sx props

    transcript?: string

    Transcript to extract action items from

    useLiveContext?: boolean

    Use live context

    userId?: string

    User ID for API requests (required for cloud operations)