List Fine-tuning Events
Authorizations
Path parameters
fine_tuning_job_idstringRequiredExample:
The ID of the fine-tuning job to get events for.
ft-AF1WoRqd3aJAHsqc9NY7iL8F
Query parameters
afterstringOptional
Identifier for the last event from the previous pagination request.
limitintegerOptionalDefault:
Number of events to retrieve.
20
Responses
200
OK
application/json
get
curl https://api.portkey.ai/v1/fine_tuning/jobs/ftjob-abc123/events \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-virtual-key: $PORTKEY_PROVIDER_VIRTUAL_KEY"
200
OK
{
"data": [
{
"id": "text",
"created_at": 1,
"level": "info",
"message": "text",
"object": "fine_tuning.job.event"
}
],
"object": "list"
}
Last updated
Was this helpful?