/** * This file was auto-generated by Fern from our API Definition. */ import * as OctoAI from "../../../../index"; /** * @example * {} */ export interface ListRequest { /** * Offset into the results. */ offset?: number; /** * The max number of results to be shown (limit 100). */ limit?: number; /** * The name of the tune to filter on. */ name?: string; /** * The type of the tune to filter on. */ tuneType?: OctoAI.fineTuning.TuneType; /** * The base checkpoint ID for the LoRA tune. */ baseCheckpointId?: string; /** * The trigger words to filter on. */ triggerWords?: string | string[]; /** * The engine type. */ engine?: string; }