Enum VectorRetrievalOptions
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 = 0Return only the point identifier. Neither the vector data nor the metadata are included.
IncludeVector = 1Include the vector data of each matching point in the result.
IncludeMetadata = 2Include the metadata of each matching point in the result.
All = IncludeVector | IncludeMetadataInclude both the vector data and the metadata of each matching point in the result.