Result from a vector search

interface VectorSearchResult {
    document: Document;
    score: number;
}

Properties

Properties

document: Document

The matched document

score: number

Similarity score (0-1, where 1 is perfect match)