Create
To start a new fine-tuning job:--model (to start from a base model) or --from-checkpoint (to resume from a previous job). Before the job is submitted, the CLI prints an estimated price and asks for confirmation. Pass --confirm (or -y) to skip the prompt in scripts and CI.
If
--training-file (or --validation-file) is a local path, the CLI uploads the file to the Files API automatically before kicking off the job.Parameters
Weights & Biases
LoRA
Preference fine-tuning (DPO, RPO, SimPO)
List
To list past and running fine-tune jobs:Retrieve
To retrieve metadata for a job, including its current status:List events
To list events of a past or running job:Cancel
To cancel a running job:Preview
To preview how a training file will be tokenized before you start a job:
Pass
--json to print the full API response instead of the table.
Parameters
Model limits
To check a model’s fine-tuning limits before you configure a job:Supports Full Training: False. Pass --json for the raw response.
See Supported models for the list of models available for fine-tuning.
List checkpoints
To list saved checkpoints of a job:tg fine-tuning download: intermediate checkpoints use FT_ID:STEP, and the final checkpoint uses the job ID alone.
When the job uploaded the artifact to the Together model registry, the Registry Artifact column shows object_name when available (for example, acme-corp/my-model-abc123-100). It falls back to object_id@object_revision_id (for example, ml_…@rv_…) when the name is unavailable. The CLI also prints a copyable Registry artifacts block below the table.
Pass --json to get the full response body instead. Each checkpoint includes step, path, created_at, checkpoint_type, and checkpoint (the download selector: model or adapter). When the job uploaded the artifact to the Together model registry, the entry also includes object_id, object_revision_id (for example, ml_… and rv_…), and object_name (the qualified <project_slug>/<model_name> name for that checkpoint, with -<step> or -adapter suffixes as appropriate). See Model registry object IDs for how these relate to the job-level model_object_id / adapter_object_id fields.
Download model weights
To download the weights of a fine-tuned model, run:.zst) weights. To extract them, run tar -xf filename.
Parameters
Download tokenized dataset
To download the tokenized dataset a job trained on:[FT_ID]_tokenized_datasets.tar.zst to the output directory (default: the current working directory). To extract it, run tar -xf filename. Use it to audit exactly what the model was trained on, for example to inspect the tokenization and loss masking of a finished job.