Class: Aws::BedrockRuntime::Types::TokenUsage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb

Overview

The tokens used in a message API inference call.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#input_tokensInteger

The number of tokens sent in the request to the model.

Returns:

  • (Integer)


1996
1997
1998
1999
2000
2001
2002
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1996

class TokenUsage < Struct.new(
  :input_tokens,
  :output_tokens,
  :total_tokens)
  SENSITIVE = []
  include Aws::Structure
end

#output_tokensInteger

The number of tokens that the model generated for the request.

Returns:

  • (Integer)


1996
1997
1998
1999
2000
2001
2002
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1996

class TokenUsage < Struct.new(
  :input_tokens,
  :output_tokens,
  :total_tokens)
  SENSITIVE = []
  include Aws::Structure
end

#total_tokensInteger

The total of input tokens and tokens generated by the model.

Returns:

  • (Integer)


1996
1997
1998
1999
2000
2001
2002
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1996

class TokenUsage < Struct.new(
  :input_tokens,
  :output_tokens,
  :total_tokens)
  SENSITIVE = []
  include Aws::Structure
end