NodeExecutionCompletedContext
data class NodeExecutionCompletedContext(val node: AIAgentNodeBase<*, *>, val context: AIAgentContext, val input: Any?, val output: Any?, val inputType: KType, val outputType: KType) : NodeExecutionEventContext(source)
Represents the context for handling an after node execution event.
Constructors
Link copied to clipboard
constructor(node: AIAgentNodeBase<*, *>, context: AIAgentContext, input: Any?, output: Any?, inputType: KType, outputType: KType)
Properties
Link copied to clipboard
The stage context in which the node was executed.
Link copied to clipboard
Represents the specific type of event handled within the event handler context, categorizing the nature of agent-related or strategy-related events.
Link copied to clipboard
The node that was executed.
Link copied to clipboard