Package com.google.genai.types
Class GenerateContentResponseUsageMetadata
java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.GenerateContentResponseUsageMetadata
Usage metadata about the content generation request and response. This message provides a
detailed breakdown of token usage and other relevant metrics. This data type is not supported in
Gemini API.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for GenerateContentResponseUsageMetadata. -
Field Summary
Fields inherited from class com.google.genai.JsonSerializable
MAX_READ_LENGTH_PROPERTY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Instantiates a builder for GenerateContentResponseUsageMetadata.Output only.abstract Optional<List<ModalityTokenCount>>Output only.The total number of tokens in the generated candidates.abstract Optional<List<ModalityTokenCount>>Output only.Deserializes a JSON string to a GenerateContentResponseUsageMetadata object.The total number of tokens in the prompt.abstract Optional<List<ModalityTokenCount>>Output only.Output only.Creates a builder with the same values as this instance.Output only.abstract Optional<List<ModalityTokenCount>>Output only.The total number of tokens for the entire request.abstract Optional<TrafficType>Output only.Methods inherited from class com.google.genai.JsonSerializable
setMaxReadLength, stringToJsonNode, toJson
-
Constructor Details
-
GenerateContentResponseUsageMetadata
public GenerateContentResponseUsageMetadata()
-
-
Method Details
-
cacheTokensDetails
Output only. A detailed breakdown of the token count for each modality in the cached content. -
cachedContentTokenCount
Output only. The number of tokens in the cached content that was used for this request. -
candidatesTokenCount
The total number of tokens in the generated candidates. -
candidatesTokensDetails
Output only. A detailed breakdown of the token count for each modality in the generated candidates. -
promptTokenCount
The total number of tokens in the prompt. This includes any text, images, or other media provided in the request. When `cached_content` is set, this also includes the number of tokens in the cached content. -
promptTokensDetails
Output only. A detailed breakdown of the token count for each modality in the prompt. -
thoughtsTokenCount
Output only. The number of tokens that were part of the model's generated "thoughts" output, if applicable. -
toolUsePromptTokenCount
Output only. The number of tokens in the results from tool executions, which are provided back to the model as input, if applicable. -
toolUsePromptTokensDetails
Output only. A detailed breakdown by modality of the token counts from the results of tool executions, which are provided back to the model as input. -
totalTokenCount
The total number of tokens for the entire request. This is the sum of `prompt_token_count`, `candidates_token_count`, `tool_use_prompt_token_count`, and `thoughts_token_count`. -
trafficType
Output only. The traffic type for this request. -
builder
Instantiates a builder for GenerateContentResponseUsageMetadata. -
toBuilder
Creates a builder with the same values as this instance. -
fromJson
Deserializes a JSON string to a GenerateContentResponseUsageMetadata object.
-