Member Junction
    Preparing search index...

    Interface PipelineExecutionResult

    Outcome of executing a whole pipeline.

    interface PipelineExecutionResult {
        contextBytesSaved: number;
        diagnostic?: string;
        error?: string;
        failedStepIndex?: number;
        finalOutput: PipeValue;
        steps: PipelineStepRecord[];
        success: boolean;
    }
    Index

    Properties

    contextBytesSaved: number

    Sum of intermediate output byte sizes that never reached the LLM.

    diagnostic?: string

    Self-correction hint when the pipeline succeeded but a stage zeroed out a non-empty array.

    error?: string

    Agent-facing error message when the pipeline failed (never includes a piped value).

    failedStepIndex?: number

    0-based index of the failing top-level stage; steps[failedStepIndex] is its record.

    finalOutput: PipeValue

    The final stage's value — the ONLY thing returned to the LLM. Null when the pipeline failed.

    success: boolean