Class Event
java.lang.Object
com.google.adk.JsonBaseModel
com.google.adk.events.Event
Represents an event in a session.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionactions()author()The author of the event, it could be the name of the agent or "user" literal.branch()The branch of the event.voidSets the branch for this event.static Event.Builderbuilder()Optional<com.google.genai.types.Content> content()The custom metadata of the event.booleanOptional<com.google.genai.types.FinishReason> final booleanReturns true if this is a final response.Optional<com.google.genai.types.FinishReason> static EventParses an event from a JSON string.final com.google.common.collect.ImmutableList<com.google.genai.types.FunctionCall> Returns all function calls from this event.final com.google.common.collect.ImmutableList<com.google.genai.types.FunctionResponse> Returns all function responses from this event.static StringOptional<com.google.genai.types.GroundingMetadata> The grounding metadata of the event.inthashCode()final booleanReturns whether the event has a trailing code execution result.id()The event id.Id of the invocation that this event belongs to.Set of ids of the long running function calls.The model version used to generate the response.partial()partial is true for incomplete chunks from the LLM streaming response.voidsetActions(EventActions actions) voidvoidsetAvgLogprobs(Double avgLogprobs) voidsetContent(com.google.genai.types.Content content) voidsetCustomMetadata(List<com.google.genai.types.CustomMetadata> customMetadata) voidsetErrorCode(com.google.genai.types.FinishReason errorCode) voidsetErrorMessage(String errorMessage) voidsetFinishReason(com.google.genai.types.FinishReason finishReason) voidsetFinishReason(Optional<com.google.genai.types.FinishReason> finishReason) Deprecated.voidsetGroundingMetadata(com.google.genai.types.GroundingMetadata groundingMetadata) voidvoidsetInterrupted(Boolean interrupted) voidsetInvocationId(String invocationId) voidsetLongRunningToolIds(Set<String> longRunningToolIds) voidsetModelVersion(String modelVersion) voidsetPartial(Boolean partial) voidsetTimestamp(long timestamp) voidsetTurnComplete(Boolean turnComplete) voidsetUsageMetadata(com.google.genai.types.GenerateContentResponseUsageMetadata usageMetadata) final StringConverts the event content into a readable string.longThe timestamp of the event.Creates a builder pre-filled with this event's values.toString()Optional<com.google.genai.types.GenerateContentResponseUsageMetadata> Methods inherited from class JsonBaseModel
fromJsonNode, fromJsonString, getMapper, toJson, toJsonNode, toJsonString
-
Method Details
-
generateEventId
-
id
The event id. -
setId
-
invocationId
Id of the invocation that this event belongs to. -
setInvocationId
-
author
The author of the event, it could be the name of the agent or "user" literal. -
setAuthor
-
content
-
setContent
public void setContent(@Nullable com.google.genai.types.Content content) -
actions
-
setActions
-
longRunningToolIds
-
setLongRunningToolIds
-
partial
-
setPartial
-
turnComplete
-
setTurnComplete
-
errorCode
-
finishReason
-
setErrorCode
public void setErrorCode(@Nullable com.google.genai.types.FinishReason errorCode) -
setFinishReason
Deprecated. -
setFinishReason
public void setFinishReason(@Nullable com.google.genai.types.FinishReason finishReason) -
errorMessage
-
setErrorMessage
-
usageMetadata
-
setUsageMetadata
public void setUsageMetadata(@Nullable com.google.genai.types.GenerateContentResponseUsageMetadata usageMetadata) -
avgLogprobs
-
setAvgLogprobs
-
interrupted
-
setInterrupted
-
branch
-
branch
Sets the branch for this event.Format: agentA.agentB.agentC — shows hierarchy of nested agents.
- Parameters:
branch- Branch identifier.
-
groundingMetadata
The grounding metadata of the event. -
setGroundingMetadata
public void setGroundingMetadata(@Nullable com.google.genai.types.GroundingMetadata groundingMetadata) -
customMetadata
-
setCustomMetadata
-
modelVersion
-
setModelVersion
-
timestamp
public long timestamp()The timestamp of the event. -
setTimestamp
public void setTimestamp(long timestamp) -
functionCalls
public final com.google.common.collect.ImmutableList<com.google.genai.types.FunctionCall> functionCalls()Returns all function calls from this event. -
functionResponses
public final com.google.common.collect.ImmutableList<com.google.genai.types.FunctionResponse> functionResponses()Returns all function responses from this event. -
hasTrailingCodeExecutionResult
public final boolean hasTrailingCodeExecutionResult()Returns whether the event has a trailing code execution result. -
finalResponse
public final boolean finalResponse()Returns true if this is a final response. -
stringifyContent
Converts the event content into a readable string.Includes text, function calls, and responses.
- Returns:
- Stringified content.
-
builder
-
fromJson
-
toBuilder
Creates a builder pre-filled with this event's values. -
equals
-
toString
-
hashCode
-