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.

graph.ts
1const graph = new StateGraph(State);
2 
3// Step 1: Add the start node
4graph.addNode("start", startFn);