/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface FineTuningResponse { /** Whether the user is allowed to fine-tune the voice. */ is_allowed_to_fine_tune?: boolean; /** The state of the fine-tuning process for each model. */ state?: Record; /** List of verification failures in the fine-tuning process. */ verification_failures?: string[]; /** The number of verification attempts in the fine-tuning process. */ verification_attempts_count?: number; /** Whether a manual verification was requested for the fine-tuning process. */ manual_verification_requested?: boolean; /** The language of the fine-tuning process. */ language?: string; /** The progress of the fine-tuning process. */ progress?: Record; /** The message of the fine-tuning process. */ message?: Record; /** The duration of the dataset in seconds. */ dataset_duration_seconds?: number; /** The number of verification attempts. */ verification_attempts?: ElevenLabs.VerificationAttemptResponse[]; /** List of slice IDs. */ slice_ids?: string[]; /** The manual verification of the fine-tuning process. */ manual_verification?: ElevenLabs.ManualVerificationResponse; /** The maximum number of verification attempts. */ max_verification_attempts?: number; /** The next maximum verification attempts reset time in Unix milliseconds. */ next_max_verification_attempts_reset_unix_ms?: number; finetuning_state?: unknown; }