Interface BM25Result

A single BM25 search result with relevance score.

Interface

BM25Result

interface BM25Result {
    id: string;
    score: number;
    metadata?: Record<string, unknown>;
}

Properties

Properties

id: string

Document identifier.

score: number

BM25 relevance score (higher = more relevant).

metadata?: Record<string, unknown>

Document metadata if available.