Package version:

Interface VectorSearchProfile

Defines a combination of configurations to use with vector search.

interface VectorSearchProfile {
    algorithmConfigurationName: string;
    compressionName?: string;
    name: string;
    vectorizerName?: string;
}

Properties

algorithmConfigurationName: string

The name of the vector search algorithm configuration that specifies the algorithm and optional parameters.

compressionName?: string

The name of the compression method configuration that specifies the compression method and optional parameters.

name: string

The name to associate with this particular vector search profile.

vectorizerName?: string

The name of the vectorization being configured for use with vector search.