Table of Contents

Method UpsertAsync

Namespace
LMKit.Data.Storage
Assembly
LM-Kit.NET.dll

UpsertAsync(string, string, float[], MetadataCollection, CancellationToken)

Asynchronously inserts a new vector entry or updates an existing one in the specified collection, along with its associated metadata.

Task UpsertAsync(string collectionIdentifier, string id, float[] vectors, MetadataCollection metadata, CancellationToken cancellationToken = default)

Parameters

collectionIdentifier string

The name of the collection in which the vector will be stored.

id string

A unique identifier for the vector entry.

vectors float[]

An array of floats representing the vector data. The length of the array must match the vector size defined for the collection.

metadata MetadataCollection

A collection of metadata associated with the vector entry.

cancellationToken CancellationToken

An optional cancellation token to cancel the asynchronous upsert operation.

Returns

Task

A task representing the asynchronous upsert operation.