Table of Contents

Enum VectorRetrievalOptions

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

Specifies which parts of a stored point are materialized when retrieving or searching vectors in an IVectorStore. The flags can be combined with the bitwise OR operator to request several parts at once.

[Flags]
public enum VectorRetrievalOptions

Fields

None = 0

Return only the point identifier. Neither the vector data nor the metadata are included.

IncludeVector = 1

Include the vector data of each matching point in the result.

IncludeMetadata = 2

Include the metadata of each matching point in the result.

All = IncludeVector | IncludeMetadata

Include both the vector data and the metadata of each matching point in the result.

Share