export type CreateFileRequest = { /** * The file object (not file name) to be uploaded. * * If the `purpose` is set to "fine-tune", the file will be used for fine-tuning. * */ file: Blob; /** * The intended purpose of the uploaded file. * * Use "fine-tune" for [fine-tuning](/docs/api-reference/fine-tuning). This allows us to validate the format of the uploaded file is correct for fine-tuning. * */ purpose: string; };