@squidcloud/client
    Preparing search index...

    Interface AiKnowledgeBaseGraphConceptsConfig

    Configuration of the graph's concept layer (Layered KB Graph L3 facets — deterministic trees built from metadata values at rebuild).

    interface AiKnowledgeBaseGraphConceptsConfig {
        facets?: string[] | "auto";
        pathFacets?: AiKnowledgeBaseGraphPathFacetConfig[];
    }
    Index

    Properties

    Properties

    facets?: string[] | "auto"

    Which metadata fields become value facets (flat sets of categorical values). 'auto' (the default) profiles the KB's context metadata and selects the categorical fields; an explicit list overrides auto-selection (fields still subject to the hard cardinality cap); [] disables value facets.

    Explicit path facets — deterministic trees split from a hierarchical path field (e.g. a folder path) rather than LLM-grouped. Independent of facets: a path facet always builds when its field has values, coexists with auto value-facet selection (reserved outside the facet cap), and is exempt from the categorical eligibility gates (a path field is near-unique by leaf). Omitted/[] ⇒ no path facets.