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

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

The newest version!
package com.launchableinc.openai.edit;

import lombok.Data;

/**
 * An object containing the API usage for an edit request
 * 

* Deprecated, use {@link com.launchableinc.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 - 2024 Weber Informatics LLC | Privacy Policy