Genkit JS API reference
    Preparing search index...

    Interface RerankerReference<CustomOptions>

    A reference to a reranker, including its name, optional config schema, and info.

    interface RerankerReference<CustomOptions extends z.ZodTypeAny> {
        configSchema?: CustomOptions;
        info?: { label?: string; supports?: { media?: boolean } };
        name: string;
    }

    Type Parameters

    Index

    Properties

    configSchema?: CustomOptions
    info?: { label?: string; supports?: { media?: boolean } }
    name: string