← Home
Lab 6: Your First LangGraph
Lab 7 →
1
2
3
4
5
6
Step 1: Add START
Every graph begins with a START node - the entry point.
START
Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.
graph.ts
1
const graph = new StateGraph(State);
2
3
// Step 1: Add the start node
4
graph.addNode("start", startFn);
Start Building →