From 43d5dbf1741fb81d5fa34b1e34146930115c6702 Mon Sep 17 00:00:00 2001 From: Sreenivasan R S <101383058+sreeniSudharsan@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:42:31 +0530 Subject: [PATCH] examples: fix missing import introduction (#1584) --- examples/introduction.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index 3d0287d05..52cd1018b 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -1504,7 +1504,7 @@ "from langgraph.checkpoint.memory import MemorySaver\n", "from langgraph.graph import StateGraph\n", "from langgraph.graph.message import add_messages\n", - "from langgraph.prebuilt import ToolNode\n", + "from langgraph.prebuilt import ToolNode, tools_condition\n", "\n", "\n", "class State(TypedDict):\n",