FirebaseVertexAI Framework Reference

CountTokensResponse

@available(iOS 15.0, macOS 11.0, *)
public struct CountTokensResponse
extension CountTokensResponse: Decodable

The 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 total number of billable characters in the text input given to the model as a prompt.

    Important

    This does not include billable image, video or other non-text input. See Vertex AI pricing for details.

    Declaration

    Swift

    public let totalBillableCharacters: Int
  • Declaration

    Swift

    public init(from decoder: any Decoder) throws