com.theokanning.openai.edit.EditChoice Maven / Gradle / Ivy
package com.theokanning.openai.edit;
import lombok.Data;
/**
* An edit generated by OpenAi
*
* https://beta.openai.com/docs/api-reference/edits/create
*/
@Data
public class EditChoice {
/**
* The edited text.
*/
String text;
/**
* This index of this completion in the returned list.
*/
Integer index;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy