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

org.devlive.sdk.openai.response.DefaultResponse Maven / Gradle / Ivy

Go to download

Provides an easy-to-use SDK for Java developers to interact with the APIs of open AI models.

There is a newer version: 2024.01.3
Show newest version
package org.devlive.sdk.openai.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;

import java.io.Serializable;
import java.util.List;

@Data
@ToString
@NoArgsConstructor
@AllArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
@SuppressFBWarnings(value = {"SE_BAD_FIELD"})
public class DefaultResponse implements Serializable
{
    private List result;
    private ErrorResponse error;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy