SearchModelFactory.VectorSearchProfile(String, String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a combination of configurations to use with vector search.
public static Azure.Search.Documents.Indexes.Models.VectorSearchProfile VectorSearchProfile(string name = default, string algorithmConfigurationName = default, string vectorizerName = default, string compressionName = default);
static member VectorSearchProfile : string * string * string * string -> Azure.Search.Documents.Indexes.Models.VectorSearchProfile
Public Shared Function VectorSearchProfile (Optional name As String = Nothing, Optional algorithmConfigurationName As String = Nothing, Optional vectorizerName As String = Nothing, Optional compressionName As String = Nothing) As VectorSearchProfile
Parameters
- name
- String
The name to associate with this particular vector search profile.
- algorithmConfigurationName
- String
The name of the vector search algorithm configuration that specifies the algorithm and optional parameters.
- vectorizerName
- String
The name of the vectorization being configured for use with vector search.
- compressionName
- String
The name of the compression method configuration that specifies the compression method and optional parameters.
Returns
A new VectorSearchProfile instance for mocking.