com.github.tjake.jlama.net.openai.model.ChatCompletionRequestMessageContentPartImageImageUrl 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.net.URI;
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;
/**
* ChatCompletionRequestMessageContentPartImageImageUrl
*/
@JsonPropertyOrder({
ChatCompletionRequestMessageContentPartImageImageUrl.JSON_PROPERTY_URL,
ChatCompletionRequestMessageContentPartImageImageUrl.JSON_PROPERTY_DETAIL
})
@JsonTypeName("ChatCompletionRequestMessageContentPartImage_image_url")
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ChatCompletionRequestMessageContentPartImageImageUrl {
public static final String JSON_PROPERTY_URL = "url";
private URI url;
/**
* Specifies the detail level of the image. Learn more in the [Vision guide](/docs/guides/vision/low-or-high-fidelity-image-understanding).
*/
public enum DetailEnum {
AUTO("auto"),
LOW("low"),
HIGH("high");
private String value;
DetailEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static DetailEnum fromValue(String value) {
for (DetailEnum b : DetailEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_DETAIL = "detail";
private DetailEnum detail = DetailEnum.AUTO;
public ChatCompletionRequestMessageContentPartImageImageUrl() {
}
public ChatCompletionRequestMessageContentPartImageImageUrl url(URI url) {
this.url = url;
return this;
}
/**
* Either a URL of the image or the base64 encoded image data.
* @return url
*/
@jakarta.annotation.Nonnull
@NotNull
@Valid
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public URI getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUrl(URI url) {
this.url = url;
}
public ChatCompletionRequestMessageContentPartImageImageUrl detail(DetailEnum detail) {
this.detail = detail;
return this;
}
/**
* Specifies the detail level of the image. Learn more in the [Vision guide](/docs/guides/vision/low-or-high-fidelity-image-understanding).
* @return detail
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DETAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DetailEnum getDetail() {
return detail;
}
@JsonProperty(JSON_PROPERTY_DETAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDetail(DetailEnum detail) {
this.detail = detail;
}
/**
* Return true if this ChatCompletionRequestMessageContentPartImage_image_url object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChatCompletionRequestMessageContentPartImageImageUrl chatCompletionRequestMessageContentPartImageImageUrl = (ChatCompletionRequestMessageContentPartImageImageUrl) o;
return Objects.equals(this.url, chatCompletionRequestMessageContentPartImageImageUrl.url) &&
Objects.equals(this.detail, chatCompletionRequestMessageContentPartImageImageUrl.detail);
}
@Override
public int hashCode() {
return Objects.hash(url, detail);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChatCompletionRequestMessageContentPartImageImageUrl {\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append(" detail: ").append(toIndentedString(detail)).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 ");
}
}