AgentExecutionFailedEvent
data class AgentExecutionFailedEvent(val eventId: String, val executionInfo: AgentExecutionInfo, val agentId: String, val runId: String, val error: AIAgentError?, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)
Represents an event triggered when an AI agent run encounters an error.
This event is used to capture error information during the execution of an AI agent strategy, including details of the strategy and the encountered error.
Constructors
Link copied to clipboard
constructor(eventId: String, executionInfo: AgentExecutionInfo, agentId: String, runId: String, error: AIAgentError?, timestamp: Long = Clock.System.now().toEpochMilliseconds())
Properties
Link copied to clipboard
The AIAgentError instance encapsulating details about the encountered error, such as its message, stack trace, and cause;
Link copied to clipboard
Provides contextual information about the execution associated with this event.
Link copied to clipboard
Specifies the type of the feature message for this event.