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

    Interface SourcesDisplayProps

    interface SourcesDisplayProps {
        sources: Source[];
        className?: string;
        showRelevanceScores?: boolean;
        showSnippets?: boolean;
        showMetadata?: boolean;
        compactView?: boolean;
        maxSources?: number;
        sortBy?: "relevance" | "title" | "date";
        groupBy?: "type" | "domain";
        enableFiltering?: boolean;
        onSourceClick?: (source: Source, index: number) => void;
        onSourceHover?: (source: Source, index: number) => void;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    sources: Source[]
    className?: string
    showRelevanceScores?: boolean
    showSnippets?: boolean
    showMetadata?: boolean
    compactView?: boolean
    maxSources?: number
    sortBy?: "relevance" | "title" | "date"
    groupBy?: "type" | "domain"
    enableFiltering?: boolean
    onSourceClick?: (source: Source, index: number) => void
    onSourceHover?: (source: Source, index: number) => void