ParallelNodeExecutionResult

data class ParallelNodeExecutionResult<Output>(val output: Output, val context: AIAgentContextBase)(source)

Represents the result of a parallel node execution, containing both the output value and the execution context.

This class is used to capture the complete state of a node's execution, including both the produced output value and the context in which it was executed. This allows for both the result and any side effects or state changes to be preserved and utilized in subsequent operations.

Parameters

Output

The type of the output value produced by the node execution.

Constructors

Link copied to clipboard
constructor(output: Output, context: AIAgentContextBase)

Properties

Link copied to clipboard

The agent context in which the node was executed, containing any state changes.

Link copied to clipboard

The output value produced by the node execution.