Get status updates for a fine-tuning job.

GET /fine_tuning/jobs/{fine_tuning_job_id}/events

Path parameters

  • fine_tuning_job_id string Required

    The ID of the fine-tuning job to get events for.

Query parameters

  • after string

    Identifier for the last event from the previous pagination request.

  • limit integer

    Number of events to retrieve.

    Default value is 20.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • data array[object] Required

      Fine-tuning job event object

      Hide data attributes Show data attributes object
      • object string Required

        The object type, which is always "fine_tuning.job.event".

        Value is fine_tuning.job.event.

      • id string Required

        The object identifier.

      • created_at integer Required

        The Unix timestamp (in seconds) for when the fine-tuning job was created.

      • level string Required

        The log level of the event.

        Values are info, warn, or error.

      • message string Required

        The message of the event.

      • type string

        The type of event.

        Values are message or metrics.

      • data object

        The data associated with the event.

    • object string Required

      Value is list.

    • has_more boolean Required
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
}