proposit-core
    Preparing search index...

    Type Alias TPipelineResult<TOutput>

    type TPipelineResult<TOutput> = {
        failures: TProcessingFailure[];
        output: TOutput | null;
        stageOutcomes: Record<string, TStageStatus>;
        tokenUsage?: TLlmTokenUsage;
    }

    Type Parameters

    • TOutput
    Index

    Properties

    failures: TProcessingFailure[]
    output: TOutput | null
    stageOutcomes: Record<string, TStageStatus>
    tokenUsage?: TLlmTokenUsage