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

com.theokanning.openai.engine.Engine Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.theokanning.openai.engine;

import lombok.Data;

/**
 * GPT-3 engine details
 *
 * https://beta.openai.com/docs/api-reference/retrieve-engine
 */
@Deprecated
@Data
public class Engine {
    /**
     * An identifier for this engine, used to specify an engine for completions or searching.
     */
    public String id;

    /**
     * The type of object returned, should be "engine"
     */
    public String object;

    /**
     * The owner of the GPT-3 engine, typically "openai"
     */
    public String owner;

    /**
     * Whether the engine is ready to process requests or not
     */
    public boolean ready;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy