@squidcloud/client
    Preparing search index...

    Interface AiKnowledgeBaseGraphConfig

    Per-knowledge-base GraphRAG configuration. Opt-in and mutable (unlike embeddingModel/vectorDbType); only honored for vectorDbType:'mongoAtlas' KBs. Enabling it on a KB that already has content requires a graph backfill (the rebuildGraph endpoint).

    interface AiKnowledgeBaseGraphConfig {
        concepts?: AiKnowledgeBaseGraphConceptsConfig;
        enabled: boolean;
        entityTypes?: string[];
        extractionModel?: AiChatModelSelection;
    }
    Index

    Properties

    Concept-layer (facet taxonomy) configuration. Omitted ⇒ facets: 'auto'.

    enabled: boolean

    When true, ingestion extracts an entity/relationship graph and searchMode:'graph' becomes available.

    entityTypes?: string[]

    Optional domain taxonomy hint (entity types) injected into the extraction prompt.

    extractionModel?: AiChatModelSelection

    Chat model used for per-chunk entity/relationship extraction. Defaults to the server's graph model.