Python
Together AI SDK (Python)
from together import Togetherimport osclient = 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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of fine-tune checkpoints
The response is of type object.
object
Was this page helpful?