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

com.launchableinc.openai.image.Image Maven / Gradle / Ivy

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

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

/**
 * An object containing either a URL or a base 64 encoded image.
 * 

* https://beta.openai.com/docs/api-reference/images */ @Data public class Image { /** * The URL where the image can be accessed. */ String url; /** * Base64 encoded image string. */ @JsonProperty("b64_json") String b64Json; /** * The prompt that was used to generate the image, if there was any revision to the prompt. */ @JsonProperty("revised_prompt") String revisedPrompt; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy