@conciergus/chat - v0.3.1
    Preparing search index...

    Interface SourcesDisplayProps

    Sources display component props

    interface SourcesDisplayProps {
        sources: Source[];
        mode?: "compact" | "list" | "grid" | "inline";
        showRelevance?: boolean;
        groupByType?: boolean;
        maxSources?: number;
        className?: string;
        onSourceClick?: (source: Source) => void;
    }
    Index

    Properties

    sources: Source[]

    Source citations

    mode?: "compact" | "list" | "grid" | "inline"

    Display mode

    showRelevance?: boolean

    Show relevance scores

    groupByType?: boolean

    Enable grouping by type

    maxSources?: number

    Maximum sources to display

    className?: string

    Additional CSS classes

    onSourceClick?: (source: Source) => void

    Source click handler