SubgraphNode
open class SubgraphNode<Input, Output>(name: String) : NodeReference.NamedNode<Input, Output> (source)
Represents a specialized type of node used in the context of AI agent subgraphs. This class extends the functionality of a named node by providing specific behavior to resolve itself as a valid subgraph within the overarching system.
Parameters
Input
The input type that this node expects.
Output
The output type that this node produces.
name
The name of the node, inherited from the parent class, which serves as its identifier within the graph.