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

com.theokanning.openai.OpenAiResponse Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
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