import type { LoraTune_Input } from "./LoraTune_Input"; import type { NullTune } from "./NullTune"; /** * The create tune request. */ export type CreateTuneRequest = { /** * Continue fine-tuning if any asset was rejected. */ continue_on_rejection?: boolean | null; /** * Description for the tune. */ description?: string | null; /** * Details of the tune. */ details: LoraTune_Input | NullTune; /** * The name of the tune. */ name: string; };