GET
/fine_tuning/jobs/{fine_tuning_job_id}/events
curl \
--request GET 'https://api.openai.com/v1/fine_tuning/jobs/ft-AF1WoRqd3aJAHsqc9NY7iL8F/events' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"object": "fine_tuning.job.event",
"id": "string",
"created_at": 42,
"level": "info",
"message": "string",
"type": "message",
"data": {}
}
],
"object": "list",
"has_more": true
}