Expand description
Node definition for LangGraph
Nodes are the execution units in a graph. Each node receives the current state and returns a state update.
Structs§
- Async
Node - AsyncNode - Simple async node wrapper
- Function
Node - Function-based node implementation
- Node
Config - Node configuration
- Sentinel
Node - Placeholder node for entry/exit points
- Sync
Node - Simple sync node wrapper
Traits§
Type Aliases§
- Async
Node Fn - Async node function type (boxed future)
- Node
Result - Node execution result (alias for clarity)