GET
/
finetune
/
download
Download model
curl --request GET \
  --url https://api.together.xyz/v1/finetune/download \
  --header 'Authorization: <api-key>'
{
  "object": "<any>",
  "id": "<string>",
  "checkpoint_step": 123,
  "filename": "<string>",
  "size": 123
}

Authorizations

Authorization
string
header
default:default
required

Query Parameters

ft_id
string
required

Fine-tune ID to download. A string that starts with ft-.

checkpoint_step
integer

Specifies step number for checkpoint to download.

output
string

Specifies output file name for downloaded model. Defaults to $PWD/{model_name}.{extension}.

Response

200
application/json

Successfully downloaded the fine-tuned model or checkpoint.

The response is of type object.