QdrantMemoryStore.RemoveWithPointIdBatchAsync 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.
Remove a MemoryRecord from the Qdrant Vector database by a group of pointIds.
public System.Threading.Tasks.Task RemoveWithPointIdBatchAsync (string collectionName, System.Collections.Generic.IEnumerable<string> pointIds, System.Threading.CancellationToken cancellationToken = default);
member this.RemoveWithPointIdBatchAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function RemoveWithPointIdBatchAsync (collectionName As String, pointIds As IEnumerable(Of String), Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- collectionName
- String
The name associated with a collection of embeddings.
- pointIds
- IEnumerable<String>
The unique indexed IDs associated with the Qdrant vector records to remove.
- cancellationToken
- CancellationToken
The CancellationToken to monitor for cancellation requests. The default is None.