All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.launchableinc.openai.fine_tuning.FineTuningEvent Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.fine_tuning;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

/**
 * An object representing an event in the lifecycle of a fine-tuning job
 * 

* https://platform.openai.com/docs/api-reference/fine-tuning/list-events */ @Data public class FineTuningEvent { /** * The type of object returned, should be "fine-tuneing.job.event". */ String object; /** * The ID of the fine-tuning event. */ String id; /** * The creation time in epoch seconds. */ @JsonProperty("created_at") Long createdAt; /** * The log level of this message. */ String level; /** * The event message. */ String message; /** * The type of event, i.e. "message" */ String type; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy