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

    Interface IntelligencePanelProps

    Props for IntelligencePanel component

    interface IntelligencePanelProps {
        colors?: Partial<IntelligenceColors>;
        labels?: Partial<IntelligenceLabels>;
        liveContext?: boolean;
        onActionItemsGenerated?: (items: IntelligenceActionItem[]) => void;
        onSummaryGenerated?: (summary: string) => void;
        roomId?: string;
        showActionItems?: boolean;
        showQuery?: boolean;
        showSummary?: boolean;
        sx?: SxProps<Theme>;
        transcript?: string;
    }
    Index

    Properties

    colors?: Partial<IntelligenceColors>

    Custom colors

    labels?: Partial<IntelligenceLabels>

    Custom labels

    liveContext?: boolean

    Enable live context mode

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

    Callback when action items are extracted

    onSummaryGenerated?: (summary: string) => void

    Callback when summary is generated

    roomId?: string

    Room ID for live context

    showActionItems?: boolean

    Show action items section

    showQuery?: boolean

    Show query input

    showSummary?: boolean

    Show summary section

    sx?: SxProps<Theme>

    MUI sx props

    transcript?: string

    Transcript data for non-live mode