CountTokensResponse
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
public struct CountTokensResponse : Sendableextension CountTokensResponse: DecodableThe model’s response to a count tokens request.
-
The total number of tokens in the input given to the model as a prompt.
Declaration
Swift
public let totalTokens: Int -
The breakdown, by modality, of how many tokens are consumed by the prompt.
Declaration
Swift
public let promptTokensDetails: [ModalityTokenCount]
-
Declaration
Swift
public init(from decoder: any Decoder) throws