com.github.tjake.jlama.net.openai.model.Model Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlama-net Show documentation
Show all versions of jlama-net Show documentation
Jlama: A modern LLM inference engine for Java
/*
* OpenAI API
* The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
*
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.github.tjake.jlama.net.openai.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import jakarta.validation.constraints.*;
import jakarta.validation.Valid;
import org.hibernate.validator.constraints.*;
import com.github.tjake.jlama.net.openai.JSON;
/**
* Describes an OpenAI model offering that can be used with the API.
*/
@JsonPropertyOrder({
Model.JSON_PROPERTY_ID,
Model.JSON_PROPERTY_CREATED,
Model.JSON_PROPERTY_OBJECT,
Model.JSON_PROPERTY_OWNED_BY
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Model {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_CREATED = "created";
private Integer created;
/**
* The object type, which is always \"model\".
*/
public enum ObjectEnum {
MODEL("model");
private String value;
ObjectEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static ObjectEnum fromValue(String value) {
for (ObjectEnum b : ObjectEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_OBJECT = "object";
private ObjectEnum _object;
public static final String JSON_PROPERTY_OWNED_BY = "owned_by";
private String ownedBy;
public Model() {
}
public Model id(String id) {
this.id = id;
return this;
}
/**
* The model identifier, which can be referenced in the API endpoints.
* @return id
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public Model created(Integer created) {
this.created = created;
return this;
}
/**
* The Unix timestamp (in seconds) when the model was created.
* @return created
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getCreated() {
return created;
}
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreated(Integer created) {
this.created = created;
}
public Model _object(ObjectEnum _object) {
this._object = _object;
return this;
}
/**
* The object type, which is always \"model\".
* @return _object
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ObjectEnum getObject() {
return _object;
}
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setObject(ObjectEnum _object) {
this._object = _object;
}
public Model ownedBy(String ownedBy) {
this.ownedBy = ownedBy;
return this;
}
/**
* The organization that owns the model.
* @return ownedBy
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_OWNED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getOwnedBy() {
return ownedBy;
}
@JsonProperty(JSON_PROPERTY_OWNED_BY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setOwnedBy(String ownedBy) {
this.ownedBy = ownedBy;
}
/**
* Return true if this Model object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Model model = (Model) o;
return Objects.equals(this.id, model.id) &&
Objects.equals(this.created, model.created) &&
Objects.equals(this._object, model._object) &&
Objects.equals(this.ownedBy, model.ownedBy);
}
@Override
public int hashCode() {
return Objects.hash(id, created, _object, ownedBy);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Model {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" ownedBy: ").append(toIndentedString(ownedBy)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}