import { FilePurpose } from "@mistralai/mistralai/models/components";
let value: FilePurpose = "fine-tune";
This is an open enum. Unrecognized values will be captured as the Unrecognized<string>
branded type.
"fine-tune" | "batch" | Unrecognized<string>