/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; export interface SearchRequestOptionsRequest { /** The maximum number of results to return. */ limit?: number | null; /** The weights to use for the search. Must add up to 1.0. */ weights?: Vellum.SearchWeightsRequest | null; /** The configuration for merging results. */ resultMerging?: Vellum.SearchResultMergingRequest | null; /** The filters to apply to the search. */ filters?: Vellum.SearchFiltersRequest | null; }