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

    Interface TrackOptions

    Options for creating a research track

    interface TrackOptions {
        name: string;
        steps: ResearchStep[];
        isolate?: boolean;
        includeInResults?: boolean;
        description?: string;
        metadata?: Record<string, any>;
        continueOnError?: boolean;
        retry?: { maxRetries?: number; baseDelay?: number };
    }
    Index

    Properties

    name: string

    The name of this research track (used for identification in results)

    steps: ResearchStep[]

    Steps to execute in this track

    isolate?: boolean

    Whether to keep the track's data isolated from other tracks

    includeInResults?: boolean

    Whether to include this track's results in the final results object

    description?: string

    Optional description of this track's purpose

    metadata?: Record<string, any>

    Optional metadata to associate with this track

    continueOnError?: boolean

    Whether to continue execution if a step fails

    retry?: { maxRetries?: number; baseDelay?: number }

    Retry configuration for the entire track

    Type declaration

    • OptionalmaxRetries?: number

      Maximum number of retries

    • OptionalbaseDelay?: number

      Base delay between retries in ms