@vivantel/virage-core
    Preparing search index...

    Interface DatabaseSpec

    interface DatabaseSpec {
        chunkers?: Record<string, string>;
        description?: string;
        embedder?: { options?: Record<string, unknown>; package: string };
        pluginVersions?: Record<string, string>;
        sha256?: string;
        url: string;
        vectorStore?: { options?: Record<string, unknown>; package: string };
    }
    Index
    chunkers?: Record<string, string>

    Per-fileset chunker strategy overrides (partial, merges with suite.chunkers)

    description?: string
    embedder?: { options?: Record<string, unknown>; package: string }

    Embedder package and options used when building this database

    pluginVersions?: Record<string, string>

    Plugin versions captured at build time for cache-key stability

    sha256?: string

    SHA-256 hex digest for integrity verification

    url: string

    HTTPS URL to a .tar.gz archive of the LanceDB directory

    vectorStore?: { options?: Record<string, unknown>; package: string }

    Vector store package and options used when building this database