From cac0cd5522b7c1d7a3c38b6402b96f1e56b6e5de Mon Sep 17 00:00:00 2001 From: Chris G Date: Mon, 7 Jul 2025 02:35:37 +0200 Subject: [PATCH] docs: update name of CompiledGraph CompiledStateGraph (#5348) The name (and type) has changed. See: https://langchain-ai.github.io/langgraph/reference/graphs/#langgraph.graph.state.StateGraph.compile --- docs/docs/tutorials/get-started/1-build-basic-chatbot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/get-started/1-build-basic-chatbot.md b/docs/docs/tutorials/get-started/1-build-basic-chatbot.md index 9235fa65f..3304822c6 100644 --- a/docs/docs/tutorials/get-started/1-build-basic-chatbot.md +++ b/docs/docs/tutorials/get-started/1-build-basic-chatbot.md @@ -112,7 +112,7 @@ This tells the graph to terminate after running the chatbot node. ## 6. Compile the graph Before running the graph, we'll need to compile it. We can do so by calling `compile()` -on the graph builder. This creates a `CompiledGraph` we can invoke on our state. +on the graph builder. This creates a `CompiledStateGraph` we can invoke on our state. ```python graph = graph_builder.compile()