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.void
Sets the branch for this event.void
static Event.Builder
builder()
Optional
<com.google.genai.types.Content> content()
boolean
Optional
<com.google.genai.types.FinishReason> final boolean
Returns true if this is a final response.static Event
Parses 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 String
Optional
<com.google.genai.types.GroundingMetadata> The grounding metadata of the event.int
hashCode()
id()
The event id.Id of the invocation that this event belongs to.Set of ids of the long running function calls.partial()
partial is true for incomplete chunks from the LLM streaming response.void
setActions
(EventActions actions) void
void
setContent
(Optional<com.google.genai.types.Content> content) void
setErrorCode
(Optional<com.google.genai.types.FinishReason> errorCode) void
setErrorMessage
(Optional<String> errorMessage) void
setGroundingMetadata
(Optional<com.google.genai.types.GroundingMetadata> groundingMetadata) void
void
setInterrupted
(Optional<Boolean> interrupted) void
setInvocationId
(String invocationId) void
setLongRunningToolIds
(Optional<Set<String>> longRunningToolIds) void
setPartial
(Optional<Boolean> partial) void
setTimestamp
(long timestamp) void
setTurnComplete
(Optional<Boolean> turnComplete) final String
Converts the event content into a readable string.long
The timestamp of the event.Creates a builder pre-filled with this event's values.toString()
Methods inherited from class com.google.adk.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
-
actions
-
setActions
-
longRunningToolIds
-
setLongRunningToolIds
-
partial
-
setPartial
-
turnComplete
-
setTurnComplete
-
errorCode
-
setErrorCode
-
errorMessage
-
setErrorMessage
-
interrupted
-
setInterrupted
-
branch
-
branch
Sets the branch for this event.Format: agentA.agentB.agentC — shows hierarchy of nested agents.
- Parameters:
branch
- Branch identifier.
-
branch
-
groundingMetadata
The grounding metadata of the event. -
setGroundingMetadata
public void setGroundingMetadata(Optional<com.google.genai.types.GroundingMetadata> groundingMetadata) -
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. -
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
-