Skip to content

Commit

Permalink
Maintaining consistency between text, code cell and full code.
Browse files Browse the repository at this point in the history
The text talks about entry and finish points, the full code reflects that, but the code cell creates an edge.
  • Loading branch information
asrjy authored Dec 26, 2024
1 parent 0fb65f6 commit 92f85e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/tutorials/introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"metadata": {},
"outputs": [],
"source": [
"graph_builder.add_edge(START, \"chatbot\")"
"graph_builder.set_entry_point("chatbot")"
]
},
{
Expand All @@ -193,7 +193,7 @@
"metadata": {},
"outputs": [],
"source": [
"graph_builder.add_edge(\"chatbot\", END)"
"graph_builder.set_finish_point("chatbot")"
]
},
{
Expand Down

0 comments on commit 92f85e4

Please sign in to comment.