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

com.theokanning.openai.edit.EditUsage Maven / Gradle / Ivy

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

import lombok.Data;

/**
 * An object containing the API usage for an edit request
 *
 * Deprecated, use {@link com.theokanning.openai.Usage} instead
 *
 * https://beta.openai.com/docs/api-reference/edits/create
 */
@Data
@Deprecated
public class EditUsage {

    /**
     * The number of prompt tokens consumed.
     */
    String promptTokens;

    /**
     * The number of completion tokens consumed.
     */
    String completionTokens;

    /**
     * The number of total tokens consumed.
     */
    String totalTokens;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy