Skip to content

VectorQueryResult

Result of a vector similarity query.

optional document?: string;

Original text content, if stored and requested.


id: string;

The vector entry’s unique identifier.


optional metadata?: Record<string, unknown>;

Metadata associated with the vector entry.


score: number;

Similarity score. Higher values indicate greater similarity.


optional vector?: readonly number[];

The raw vector, if includeVectors was true.