com.theokanning.openai.OpenAiResponse 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.theokanning.openai;
import lombok.Data;
import java.util.List;
/**
* A wrapper class to fit the OpenAI engine and search endpoints
*/
@Data
public class OpenAiResponse {
/**
* A list containing the actual results
*/
public List data;
/**
* The type of object returned, should be "list"
*/
public String object;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy