NodeAfterExecuteContext

data class NodeAfterExecuteContext(val context: AIAgentContextBase, val node: AIAgentNodeBase<*, *>, val input: Any?, val output: Any?, val inputType: KType, val outputType: KType) : NodeEventHandlerContext(source)

Represents the context for handling an after node execution event.

Constructors

Link copied to clipboard
constructor(context: AIAgentContextBase, node: AIAgentNodeBase<*, *>, 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
val input: Any?

The input data that was provided to the node.

Link copied to clipboard

KType representing the type of the input.

Link copied to clipboard

The node that was executed.

Link copied to clipboard
val output: Any?

The output data produced by the node execution.

Link copied to clipboard

KType representing the type of the output.