/** * This file was auto-generated by Fern from our API Definition. */ import * as OctoAI from "../../../../index"; /** * @example * { * details: { * tuneType: "text_to_speech_latent_tune", * assetIds: ["details"] * }, * name: "name" * } */ export interface CreateTuneRequest { /** Continue fine-tuning if any asset was rejected. */ continueOnRejection?: boolean; /** Description for the tune. */ description?: string; /** Details of the tune. */ details: OctoAI.fineTuning.Details; /** The name of the tune. */ name: string; }