QdrantMemoryStore.RemoveWithPointIdAsync 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 pointId.
public System.Threading.Tasks.Task RemoveWithPointIdAsync (string collectionName, string pointId, System.Threading.CancellationToken cancellationToken = default);
member this.RemoveWithPointIdAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function RemoveWithPointIdAsync (collectionName As String, pointId As String, Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- collectionName
- String
The name associated with a collection of embeddings.
- pointId
- String
The unique indexed ID associated with the Qdrant vector record to remove.
- cancellationToken
- CancellationToken
The CancellationToken to monitor for cancellation requests. The default is None.