NodeExecutionFailedEvent
data class NodeExecutionFailedEvent(val runId: String, val nodeName: String, val input: JsonElement?, val error: AIAgentError, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)
Represents an event that signifies the occurrence of an error during the execution of a specific node within an AI agent's process.
Constructors
Link copied to clipboard
constructor(runId: String, nodeName: String, error: AIAgentError, timestamp: Long = Clock.System.now().toEpochMilliseconds())
Creates an instance of NodeExecutionFailedEvent.
constructor(runId: String, nodeName: String, input: JsonElement?, error: AIAgentError, timestamp: Long = Clock.System.now().toEpochMilliseconds())