QdrantVectorDbClient.UpsertVectorsAsync 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.
Upsert a group of vectors into a collection.
public System.Threading.Tasks.Task UpsertVectorsAsync (string collectionName, System.Collections.Generic.IEnumerable<Microsoft.SemanticKernel.Connectors.Qdrant.QdrantVectorRecord> vectorData, System.Threading.CancellationToken cancellationToken = default);
abstract member UpsertVectorsAsync : string * seq<Microsoft.SemanticKernel.Connectors.Qdrant.QdrantVectorRecord> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.UpsertVectorsAsync : string * seq<Microsoft.SemanticKernel.Connectors.Qdrant.QdrantVectorRecord> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function UpsertVectorsAsync (collectionName As String, vectorData As IEnumerable(Of QdrantVectorRecord), Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- collectionName
- String
The name assigned to a collection of vectors.
- vectorData
- IEnumerable<QdrantVectorRecord>
The Qdrant vector records to upsert.
- cancellationToken
- CancellationToken
The CancellationToken to monitor for cancellation requests. The default is None.