Member Junction
    Preparing search index...

    Lightweight catalog entry for a registered reranker, returned by BaseReRanker.GetAvailableRerankers(). Designed for UI dropdown population on the SearchScope form (P2D.7) — a single call gives the form everything it needs to render selectable options without separately instantiating each registered class.

    interface RegisteredReRankerInfo {
        DriverClass: string;
        HasCost: boolean;
        Name: string;
        Version: string;
    }
    Index

    Properties

    DriverClass: string

    ClassFactory registration key — what goes into ScopeConfig.reRanker.driverClass

    HasCost: boolean

    Whether this reranker incurs API cost (true) or runs free locally (false)

    Name: string

    Human-friendly label for UI display (BaseReRanker.Name)

    Version: string

    Reranker version (BaseReRanker.Version)