@plust/datasleuth - v0.2.0
    Preparing search index...

    Interface PipelineConfig

    Configuration for the research pipeline

    interface PipelineConfig {
        steps: ResearchStep[];
        errorHandling?: "stop" | "continue" | "rollback";
        maxRetries?: number;
        retryDelay?: number;
        backoffFactor?: number;
        continueOnError?: boolean;
        timeout?: number;
        logLevel?: LogLevel;
    }
    Index

    Properties

    steps: ResearchStep[]
    errorHandling?: "stop" | "continue" | "rollback"

    How to handle errors in the pipeline

    maxRetries?: number

    Maximum number of retry attempts for retryable steps

    retryDelay?: number

    Initial delay between retries in milliseconds

    backoffFactor?: number

    Factor by which to increase the delay on each subsequent retry

    continueOnError?: boolean

    Whether to continue with the next step even if the current step fails

    timeout?: number

    Maximum execution time in milliseconds before timeout

    logLevel?: LogLevel

    Minimum log level to display