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

xyz.felh.openai.model.Model Maven / Gradle / Ivy

There is a newer version: 4.0.2024102501
Show newest version
package xyz.felh.openai.model;

import com.alibaba.fastjson2.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import xyz.felh.openai.OpenAiApiObjectWithId;

/**
 * List and describe the various models available in the API.
 * You can refer to the Models documentation to understand what models are available and the differences between them.
 * 

* See document */ @EqualsAndHashCode(callSuper = true) @Data public class Model extends OpenAiApiObjectWithId { public static String OBJECT = "model"; /** * The Unix timestamp (in seconds) when the model was created. */ @JSONField(name = "created") @JsonProperty("created") public Long created; /** * The organization that owns the model. */ @JSONField(name = "owned_by") @JsonProperty("owned_by") private String ownedBy; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy