From 9754602a56ffc2ef0ca4a7d783fd574b03857fcf Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Mon, 20 May 2024 12:51:57 -0700 Subject: [PATCH] Fix typo (#505) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f76223fc..aa26115e8 100644 --- a/README.md +++ b/README.md @@ -370,7 +370,7 @@ workflow.add_conditional_edges( # We now add a normal edge from `tools` to `agent`. # This means that after `tools` is called, `agent` node is called next. -workflow.add_edge('tool', 'agent') +workflow.add_edge("tools", 'agent') # Finally, we compile it! # This compiles it into a LangChain Runnable,