Interface TopicEntry

A topic extracted from a query or document for routing and filtering. Used by the TopicExtractor to guide retrieval strategy.

interface TopicEntry {
    name: string;
    source: string;
}

Properties

Properties

name: string

The topic name or phrase (e.g., "authentication", "database migrations").

source: string

Where this topic was derived from.

Example

'query', 'document', 'graph-entity'