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

    Interface AnalyzeOptions

    Options for the analysis step

    interface AnalyzeOptions {
        focus: string;
        llm?: LanguageModelV1;
        temperature?: number;
        depth?: "basic" | "detailed" | "comprehensive";
        includeEvidence?: boolean;
        includeRecommendations?: boolean;
        includeInResults?: boolean;
        customPrompt?: string;
        allowEmptyContent?: boolean;
        maxContentSize?: number;
        retry?: { maxRetries?: number; baseDelay?: number };
    }
    Index

    Properties

    focus: string

    Focus area for analysis (e.g., 'market-trends', 'technical-details')

    llm?: LanguageModelV1

    Model to use for analysis (from the AI SDK)

    temperature?: number

    Temperature for the LLM (0.0 to 1.0)

    depth?: "basic" | "detailed" | "comprehensive"

    Depth of analysis ('basic', 'detailed', 'comprehensive')

    includeEvidence?: boolean

    Whether to include supporting evidence in the analysis

    includeRecommendations?: boolean

    Whether to include recommendations in the analysis

    includeInResults?: boolean

    Whether to add the analysis to the final results

    customPrompt?: string

    Custom prompt for analysis

    allowEmptyContent?: boolean

    Whether to proceed if no content is available

    maxContentSize?: number

    Maximum content size for analysis (in characters)

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

    Retry configuration for LLM calls

    Type declaration

    • OptionalmaxRetries?: number

      Maximum number of retries

    • OptionalbaseDelay?: number

      Base delay between retries in ms