Package version:

Interface BaseVectorSearchAlgorithmConfiguration

Contains configuration options specific to the algorithm used during indexing and/or querying.

interface BaseVectorSearchAlgorithmConfiguration {
    kind: "hnsw" | "exhaustiveKnn";
    name: string;
}

Properties

Properties

kind: "hnsw" | "exhaustiveKnn"

Polymorphic discriminator, which specifies the different types this object can be

name: string

The name to associate with this particular configuration.