Class VectorSearch
Contains configuration options related to vector search.
Inheritance
System.Object
VectorSearch
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public class VectorSearch
Constructors
VectorSearch()
Initializes a new instance of VectorSearch.
Declaration
public VectorSearch ();
Properties
AlgorithmConfigurations
Contains configuration options specific to the algorithm used during indexing time. 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 HnswVectorSearchAlgorithmConfiguration.
Declaration
public System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.VectorSearchAlgorithmConfiguration> AlgorithmConfigurations { get; }
Property Value
System.Collections.Generic.IList<VectorSearchAlgorithmConfiguration>
|