import { ... } from "@langchain/langgraph/channels";Stores the last value received, assumes that if multiple values are received, they are all equal.
Note: Unlike 'LastValue' if multiple nodes write to this channel in a single step, the values will be continuously overwritten.
A channel that switches between two states
Stores the value received in the step immediately preceding, clears after.
A channel that waits until all named values are received before making the value available.
This ensures that if node N and node M both write to channel C, the value of C will not be updated until N and M have completed updating.
A configurable PubSub Topic.