Sent when an eval run has succeeded.

interface EvalRunSucceededWebhookEvent {
    created_at: number;
    data: OpenAIClient.Webhooks.EvalRunSucceededWebhookEvent.Data;
    id: string;
    object?: "event";
    type: "eval.run.succeeded";
}

Properties

created_at: number

The Unix timestamp (in seconds) of when the eval run succeeded.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "eval.run.succeeded"

The type of the event. Always eval.run.succeeded.