nodeFinish
Represents the "finish" node in the AI agent's subgraph structure. This node indicates the endpoint of the subgraph and acts as a terminal stage where the workflow stops.
The nodeFinish
property is an abstract member that subclasses must define. It is of type FinishAIAgentNodeBase
, which is a specialized node that directly passes its input to its output without modification as part of an identity operation.
This node does not allow outgoing edges and cannot be linked further in the graph. It serves as the final node responsible for receiving and producing data of the defined output type.
Parameters
Output
The type of data processed and produced by this node.