Class NodeOutput<State extends AgentState>

java.lang.Object
org.bsc.langgraph4j.NodeOutput<State>
Type Parameters:
State - the type of the state associated with the node output
Direct Known Subclasses:
StateSnapshot, StreamingOutput

public class NodeOutput<State extends AgentState> extends Object
Represents the output of a node in a graph.
  • Constructor Details

    • NodeOutput

      protected NodeOutput(String node, State state)
  • Method Details

    • of

      public static <State extends AgentState> NodeOutput<State> of(String node, State state)
    • setSubGraph

      protected void setSubGraph(boolean subgraph)
    • isSubGraph

      public boolean isSubGraph()
      Returns:
      boolean if the output is from a subgraph
    • node

      public String node()
    • state

      public State state()
    • getState

      @Deprecated public State getState()
      Deprecated.
      Use state() instead.
    • toString

      public String toString()
      Overrides:
      toString in class Object