Package version:

Type Alias ExhaustiveKnnAlgorithmConfiguration

ExhaustiveKnnAlgorithmConfiguration: BaseVectorSearchAlgorithmConfiguration & {
    kind: "exhaustiveKnn";
    parameters?: ExhaustiveKnnParameters;
}

Contains configuration options specific to the exhaustive KNN algorithm used during querying, which will perform brute-force search across the entire vector index.

Type declaration

  • kind: "exhaustiveKnn"

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

  • Optionalparameters?: ExhaustiveKnnParameters

    Contains the parameters specific to exhaustive KNN algorithm.