Member Junction
    Preparing search index...

    Interface DuplicateDetectionProgress

    Progress information emitted during long-running duplicate detection operations.

    interface DuplicateDetectionProgress {
        CurrentRecordID?: string;
        ElapsedMs: number;
        MatchesFound: number;
        Phase:
            | "Vectorizing"
            | "Loading"
            | "Embedding"
            | "Querying"
            | "Matching"
            | "Merging";
        ProcessedRecords: number;
        TotalRecords: number;
    }
    Index

    Properties

    CurrentRecordID?: string
    ElapsedMs: number
    MatchesFound: number
    Phase:
        | "Vectorizing"
        | "Loading"
        | "Embedding"
        | "Querying"
        | "Matching"
        | "Merging"
    ProcessedRecords: number
    TotalRecords: number