/** * This file was auto-generated by Fern from our API Definition. */ /** * A reranker can be used in query or chat endpoints to reorder the search results. */ export interface Reranker { /** The ID of the reranker. */ id?: string; /** The name of the reranker. */ name?: string; /** The description of the reranker. */ description?: string; /** Whether the reranker is enabled. */ enabled?: boolean; }