Type alias NodeExecutionMode

NodeExecutionMode: "single_turn" | "react_bounded" | "planner_controlled"

Controls how many LLM turns a node may consume per invocation.

  • single_turn — exactly one prompt/response pair; deterministic cost.
  • react_bounded — ReAct-style tool-use loop capped by maxInternalIterations.
  • planner_controlled — the orchestrating planner decides when the node is "done".