@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphResolutionSweep

    One incremental entity-resolution sweep's bounds and counters, as persisted at its start (counters zero) and again at its end.

    interface KnowledgeBaseGraphResolutionSweep {
        adjudicationCachedCalls?: number;
        adjudicationCalls?: number;
        adjudicationConcurrency: number;
        dirtyBatch: number;
        examined: number;
        maxPairsPerRound: number;
        maxPasses: number;
        maxRounds: number;
        pairsAdjudicated: number;
        pairsConfirmed: number;
        proposalConcurrency: number;
        rounds: number;
        sampledAt: number;
        visibilityWaits?: number;
    }
    Index
    adjudicationCachedCalls?: number

    Of those, calls the provider served the instruction prefix from its prompt cache; absent with them.

    adjudicationCalls?: number

    Adjudication calls the sweep made; absent on a reading from a sweep that did not record calls.

    adjudicationConcurrency: number

    Adjudication calls the sweep kept in flight.

    dirtyBatch: number

    Dirty entities one pass of the sweep examined at most.

    examined: number

    Dirty entities the sweep examined.

    maxPairsPerRound: number

    Candidate pairs one drain round of the sweep adjudicated at most.

    maxPasses: number

    Resolution passes one drain round of the sweep ran at most.

    maxRounds: number

    Drain rounds the sweep ran at most.

    pairsAdjudicated: number

    Candidate pairs the sweep sent to adjudication.

    pairsConfirmed: number

    Candidate pairs adjudication confirmed as the same entity.

    proposalConcurrency: number

    Dirty entities one pass of the sweep searched candidates for at once.

    rounds: number

    Drain rounds the sweep ran.

    sampledAt: number

    When this reading was written (epoch millis).

    visibilityWaits?: number

    Index-visibility wait tokens the sweep spent: a count of waits, not a duration. Absent on a reading from a sweep that did not record waits.