Sent when a fine-tuning job has succeeded.

interface FineTuningJobSucceededWebhookEvent {
    created_at: number;
    data: OpenAIClient.Webhooks.FineTuningJobSucceededWebhookEvent.Data;
    id: string;
    object?: "event";
    type: "fine_tuning.job.succeeded";
}

Properties

created_at: number

The Unix timestamp (in seconds) of when the fine-tuning job succeeded.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "fine_tuning.job.succeeded"

The type of the event. Always fine_tuning.job.succeeded.