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

    Interface WebSearchOptions

    Options for the web search step

    interface WebSearchOptions {
        provider?: SearchProviderConfig | SearchProvider;
        query?: string;
        maxResults?: number;
        language?: string;
        region?: string;
        safeSearch?: "off" | "moderate" | "strict";
        useQueriesFromPlan?: boolean;
        includeRawResults?: boolean;
        includeInResults?: boolean;
        maxRetries?: number;
        requireResults?: boolean;
    }
    Index

    Properties

    provider?: SearchProviderConfig | SearchProvider

    Search provider configured from @plust/search-sdk

    query?: string

    Optional custom query override (if not provided, will use the main research query)

    maxResults?: number

    Maximum number of results to return

    language?: string

    Language code for results (e.g., 'en')

    region?: string

    Country/region code (e.g., 'US')

    safeSearch?: "off" | "moderate" | "strict"

    Content filtering level

    useQueriesFromPlan?: boolean

    Whether to use search queries from the research plan if available

    includeRawResults?: boolean

    Whether to include raw results in the state

    includeInResults?: boolean

    Whether to include search results in the final results

    maxRetries?: number

    Maximum retry attempts for search requests

    requireResults?: boolean

    Whether to require at least one successful search