Member Junction
    Preparing search index...

    Per-stage record emitted by the executor; persisted in the pipeline Tool run-step's OutputData.

    interface PipelineStepRecord {
        diagnostic?: string;
        durationMs: number;
        error?: string;
        index: number;
        inputSize: number;
        logRef: PipelineStepLogRef;
        outputSize: number;
        providerKind: PipelineProviderKind;
        success: boolean;
        toolName: string;
    }
    Index

    Properties

    diagnostic?: string

    Non-fatal hint surfaced to the agent (e.g. a stage that filtered a non-empty array to empty).

    durationMs: number
    error?: string
    index: number
    inputSize: number
    outputSize: number
    providerKind: PipelineProviderKind
    success: boolean
    toolName: string