com.launchableinc.openai.messages.content.FilePath 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;
/**
* A URL for the file that's generated when the assistant used the code_interpreter tool to generate
* a file.
*
* https://platform.openai.com/docs/api-reference/messages/object
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class FilePath {
/**
* The ID of the file that was generated
*/
@JsonProperty("file_id")
String fileId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy