JSONL export for self-managed fine-tuning is available on all plans. Managed fine-tuning job submission is an Enterprise feature.
Export a dataset for fine-tuning
Export any dataset in JSONL format using its dataset ID:messages structure that OpenAI’s fine-tuning endpoint expects. You can submit it to OpenAI, Anthropic, or any other provider that accepts JSONL fine-tuning datasets.
Managed fine-tuning (Enterprise)
Enterprise customers can submit a fine-tuning job to OpenAI directly from FlexOrch. FlexOrch handles the upload, job submission, and status tracking on your behalf.Submit a fine-tuning job
Request body
The ID of the FlexOrch dataset to use as training data. The dataset must be in a
ready state before you can submit a fine-tuning job.The base model to fine-tune. Must be a model that supports fine-tuning via the OpenAI API, such as
gpt-4o-mini-2024-07-18 or gpt-3.5-turbo.A short label appended to the fine-tuned model name to help you identify it. For example,
invoice-extractor produces a model name like ft:gpt-4o-mini:your-org:invoice-extractor:abc123.Track job status
After submitting, use the returnedjob_id to poll the status of your fine-tuning run:
status (queued, running, succeeded, or failed), estimated completion time, and — once the job succeeds — the fine-tuned model ID you can use in your BYO LLM configuration.