com.launchableinc.openai.edit.EditResult 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
The newest version!
package com.launchableinc.openai.edit;
import com.launchableinc.openai.Usage;
import lombok.Data;
import java.util.List;
/**
* A list of edits generated by OpenAI
*
* https://beta.openai.com/docs/api-reference/edits/create
*/
@Data
public class EditResult {
/**
* The type of object returned, should be "edit"
*/
public String object;
/**
* The creation time in epoch milliseconds.
*/
public long created;
/**
* A list of generated edits.
*/
public List choices;
/**
* The API usage for this request
*/
public Usage usage;
}