Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
200 - application/json
List of fine-tune checkpoints
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>"
    }
  ]
}List the checkpoints for a single fine-tuning job.
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>"
    }
  ]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of fine-tune checkpoints
Show child attributes
Was this page helpful?