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

    Interface ClassifyOptions

    Options for entity classification

    interface ClassifyOptions {
        classifyEntities?: boolean;
        clusterEntities?: boolean;
        confidenceThreshold?: number;
        customEntityTypes?: string[];
        maxEntities?: number;
        maxClusters?: number;
        clusteringInstructions?: string;
        retry?: { maxRetries?: number; baseDelay?: number };
    }
    Index

    Properties

    classifyEntities?: boolean

    Whether to identify and classify entities in the research data

    clusterEntities?: boolean

    Whether to cluster identified entities by relationship

    confidenceThreshold?: number

    Minimum confidence threshold for entity classification (0-1)

    customEntityTypes?: string[]

    Custom entity types to identify (in addition to standard types)

    maxEntities?: number

    Maximum number of entities to extract

    maxClusters?: number

    Maximum number of clusters to generate

    clusteringInstructions?: string

    Custom instructions for entity clustering algorithm

    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