Member Junction
    Preparing search index...

    Result of a pipeline execution.

    interface PipelineResult {
        ElapsedMs: number;
        Errors: PipelineError[];
        RecordsAutotagged: number;
        RecordsVectorized: number;
        Success: boolean;
        TotalRecordsProcessed: number;
    }
    Index

    Properties

    ElapsedMs: number

    Total execution time in milliseconds

    Errors: PipelineError[]

    Error messages for any failed records

    RecordsAutotagged: number

    Records that were autotagged

    RecordsVectorized: number

    Records that were vectorized

    Success: boolean

    Whether the pipeline completed successfully

    TotalRecordsProcessed: number

    Total records processed