From 7e15f3bb83bf5756a34764cfd92db48cc0ec9198 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Sun, 7 Jan 2024 20:27:45 -0800 Subject: [PATCH] cr --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 72a2b4fe9..35e47d591 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ def should_continue(data): We can now put it alltogether and define the graph! ```python -from permchain.langgraph import Graph, END +from langgraph.graph import END, Graph workflow = Graph() @@ -180,7 +180,7 @@ There are only a few new APIs to use. The main new class is `Graph`. ```python -from permchain.langgraph import Graph +from langgraph.graph import Graph ``` This class is responsible for constructing the graph. @@ -260,7 +260,7 @@ Note: This does not need to be called if at any point you previously created an ### `END` ```python -from permchain.langgraph import END +from langgraph.graph import END ``` This is a special node representing the end of the graph.