io.github.sashirestela.openai.domain.image.Size Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-openai Show documentation
Show all versions of simple-openai Show documentation
A Java library to use the OpenAI API in the simplest possible way.
package io.github.sashirestela.openai.domain.image;
import com.fasterxml.jackson.annotation.JsonProperty;
public enum Size {
@JsonProperty("256x256")
X256,
@JsonProperty("512x512")
X512,
@JsonProperty("1024x1024")
X1024,
@JsonProperty("1792x1024")
X1792X,
@JsonProperty("1024x1792")
X1024X;
}