com.launchableinc.openai.messages.content.ImageFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Basic java objects for the OpenAI GPT APIs
package com.launchableinc.openai.messages.content;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* References an image File int eh content of a message.
*
* /https://platform.openai.com/docs/api-reference/messages/object
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class ImageFile {
/**
* The File ID of the image in the message content.
*/
@JsonProperty("file_id")
String fileId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy