From 92f85e4869099ff99bab76f759585588492cf5c9 Mon Sep 17 00:00:00 2001 From: Yashwanth Date: Thu, 26 Dec 2024 10:47:04 +0530 Subject: [PATCH] Maintaining consistency between text, code cell and full code. The text talks about entry and finish points, the full code reflects that, but the code cell creates an edge. --- docs/docs/tutorials/introduction.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorials/introduction.ipynb b/docs/docs/tutorials/introduction.ipynb index c7bf12940..a128b528f 100644 --- a/docs/docs/tutorials/introduction.ipynb +++ b/docs/docs/tutorials/introduction.ipynb @@ -175,7 +175,7 @@ "metadata": {}, "outputs": [], "source": [ - "graph_builder.add_edge(START, \"chatbot\")" + "graph_builder.set_entry_point("chatbot")" ] }, { @@ -193,7 +193,7 @@ "metadata": {}, "outputs": [], "source": [ - "graph_builder.add_edge(\"chatbot\", END)" + "graph_builder.set_finish_point("chatbot")" ] }, {