/** * An input file to a LoRA tune with its caption. */ export type LoraTuneFile = { /** * The caption used when the LoRA tune was requested. */ caption?: string | null; /** * The ID of the file on asset lake. */ file_id: string; };