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

commonMain.com.xebia.functional.openai.generated.model.RunStepCompletionUsage.kt Maven / Gradle / Ivy

There is a newer version: 0.0.5-alpha.118
Show newest version
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package com.xebia.functional.openai.generated.model




import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*

/**
* Usage statistics related to the run step. This value will be `null` while the run step's status is `in_progress`.
*
    * @param completionTokens Number of completion tokens used over the course of the run step.
    * @param promptTokens Number of prompt tokens used over the course of the run step.
    * @param totalTokens Total number of tokens used (prompt + completion).
*/
@Serializable


data class RunStepCompletionUsage (
        /* Number of completion tokens used over the course of the run step. */
    @SerialName(value = "completion_tokens") val completionTokens: kotlin.Int,
        /* Number of prompt tokens used over the course of the run step. */
    @SerialName(value = "prompt_tokens") val promptTokens: kotlin.Int,
        /* Total number of tokens used (prompt + completion). */
    @SerialName(value = "total_tokens") val totalTokens: kotlin.Int
) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy