Skip to main content
GET
/
fine-tunes
/
{id}
/
checkpoints
# Docs for v1 can be found by changing the above selector ^ from together import Together import os client = Together( api_key=os.environ.get("TOGETHER_API_KEY"), ) checkpoints = client.fine_tuning.list_checkpoints(id="ft-id") print(checkpoints)
{
  "data": [
    {
      "step": 123,
      "created_at": "<string>",
      "path": "<string>",
      "checkpoint_type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the fine-tune job to list checkpoints for

Response

200 - application/json

List of fine-tune checkpoints

data
object[]
required