/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface ListGenerationPresetsRequest { /** * Filter presets by the LLM name. */ llmName?: string; /** * The maximum number of results to return in the list. */ limit?: number; /** * Used to retrieve the next page of generation presets after the limit has been reached. * This parameter is not needed for the first page of results. */ pageKey?: string; /** * The API will make a best effort to complete the request in the specified seconds or time out. */ requestTimeout?: number; /** * The API will make a best effort to complete the request in the specified milliseconds or time out. */ requestTimeoutMillis?: number; }