curl --request GET \
--url https://api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}/events \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"object": "fine_tuning.job.event",
"id": "<string>",
"created_at": 123,
"level": "info",
"message": "<string>",
"type": "message",
"data": {}
}
],
"object": "list",
"has_more": true
}
curl --request GET \
--url https://api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}/events \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"object": "fine_tuning.job.event",
"id": "<string>",
"created_at": 123,
"level": "info",
"message": "<string>",
"type": "message",
"data": {}
}
],
"object": "list",
"has_more": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The ID of the fine-tuning job to get events for.
"ft-AF1WoRqd3aJAHsqc9NY7iL8F"
Identifier for the last event from the previous pagination request.
Number of events to retrieve.
OK
The response is of type object
.
Was this page helpful?