SubgraphExecutionFailedEvent
data class SubgraphExecutionFailedEvent(val eventId: String, val executionInfo: AgentExecutionInfo, val runId: String, val subgraphName: String, val input: JSONElement?, val error: AIAgentError, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)
Represents an event triggered when the execution of a specific subgraph fails.
Constructors
Link copied to clipboard
constructor(eventId: String, executionInfo: AgentExecutionInfo, runId: String, subgraphName: String, input: JSONElement?, error: AIAgentError, timestamp: Long = Clock.System.now().toEpochMilliseconds())
constructor(runId: String, subgraphName: String, input: JSONElement?, error: AIAgentError, timestamp: Long = Clock.System.now().toEpochMilliseconds())
Properties
Link copied to clipboard
The error that occurred during the subgraph execution;
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.
Link copied to clipboard
The name of the subgraph being executed;