Required entry and exit points for agent execution flow
__start__
): Marks the entry point for all agent executions. When an agent is invoked (via message, webhook, or test), execution always begins here. The Start node has no prompt and exists solely to define where the graph begins processing.
End Node (__end__
): Immediately terminates agent execution when reached. No further processing occurs after hitting an End node. The final state of the conversation is preserved at the point of termination.
__start__
(system-defined, cannot be changed)__end__
(system-defined, cannot be changed)START
constant from LangGraphEND
constant from LangGraph