TotalTokens

@Serializable
data class TotalTokens(val totalTokens: Int)

Represents the total count of tokens, typically used to summarize the amount of processed or generated content in terms of tokens.

Constructors

Link copied to clipboard
constructor(totalTokens: Int)

Properties

Link copied to clipboard
val totalTokens: Int

An integer value indicating the total number of tokens. This can be used for tracking, limiting, or assessing the size of content based on its token count.