FineTuningJobEvent

@Serializable
data class FineTuningJobEvent(val id: String, val createdAt: Int, val level: Level, val message: String)

Data class representing a fine-tuning job event.

Constructors

Link copied to clipboard
constructor(id: String, createdAt: Int, level: Level, message: String)

Properties

Link copied to clipboard

The Unix timestamp (in seconds) for when the event was created.

Link copied to clipboard
val id: String

The identifier of the fine-tuning job event.

Link copied to clipboard

The severity level of the event, which can be either "info", "warn", or "error".

Link copied to clipboard

A human-readable message providing more details about the event.