Share via


VectorSearch Class

Definition

Contains configuration options related to vector search.

public class VectorSearch
type VectorSearch = class
Public Class VectorSearch
Inheritance
VectorSearch

Constructors

VectorSearch()

Initializes a new instance of VectorSearch.

Properties

Algorithms

Contains configuration options specific to the algorithm used during indexing or querying. Please note VectorSearchAlgorithmConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include ExhaustiveKnnAlgorithmConfiguration and HnswAlgorithmConfiguration.

Compressions

Contains configuration options specific to the compression method used during indexing or querying. Please note VectorSearchCompressionConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include ScalarQuantizationCompressionConfiguration.

Profiles

Defines combinations of configurations to use with vector search.

Vectorizers

Contains configuration options on how to vectorize text vector queries. Please note VectorSearchVectorizer is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AIServicesVisionVectorizer, AzureMachineLearningVectorizer, AzureOpenAIVectorizer and CustomVectorizer.

Applies to