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

com.launchableinc.openai.messages.content.ImageFile Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy