Member Junction
    Preparing search index...

    The runner's result — counts + (ephemeral) predictions or write-back confirmation.

    interface ScoreRecordSetResult {
        failedCount: number;
        predictions?: EphemeralPrediction[];
        scoredCount: number;
        skippedCount: number;
        wroteBack: boolean;
    }
    Index

    Properties

    failedCount: number

    Number of records that failed to score.

    predictions?: EphemeralPrediction[]

    Ephemeral predictions (present when write-back was NOT requested).

    scoredCount: number

    Number of records successfully scored.

    skippedCount: number

    Number of records the processor skipped (e.g. ineligible / filtered out).

    wroteBack: boolean

    True when the runner applied a write-back instead of returning predictions.