type property

String? type
getter/setter pair

The type of the text message. Possible string values are:

  • "TYPE_UNSPECIFIED" : The default text type.
  • "THOUGHT" : The text is a thinking plan generated by the thinking tool.
  • "FINAL_RESPONSE" : The text is a final response to the user question.
  • "PROGRESS" : The text is an informational message about the agent's progress, such as a tool being invoked. This is distinct from the agent's internal thought process (THOUGHT) and the final answer to the user (FINAL_RESPONSE). These messages provide insight into the agent's actions.

Implementation

core.String? type;