/** * This file was auto-generated by Fern from our API Definition. */ import * as fs from "fs"; /** * @example * {} */ export interface BodyGetSimilarLibraryVoicesV1SimilarVoicesPost { audio_file?: File | fs.ReadStream | Blob | undefined; /** Threshold for voice similarity between provided sample and library voices. Values range from 0 to 2. The smaller the value the more similar voices will be returned. */ similarity_threshold?: number; /** Number of most similar voices to return. If similarity_threshold is provided, less than this number of voices may be returned. Values range from 1 to 100. */ top_k?: number; }