From 8d41c44e735743f30e4f2e1614ec905787f90cd5 Mon Sep 17 00:00:00 2001 From: vbarda Date: Tue, 11 Jun 2024 15:37:19 -0400 Subject: [PATCH] remove an extra pregel reference --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8fb2414d2..e63722cfc 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,6 @@ final_state["messages"][-1].content - When we compile the graph, we turn it into a LangChain [Runnable](https://python.langchain.com/v0.2/docs/concepts/#runnable-interface), which automatically enables calling `.invoke()`, `.stream()` and `.batch()` with your inputs - We can also optionally pass checkpointer object for persisting state between graph runs, and enabling memory, human-in-the-loop workflows, time travel and more. In our case we use `MemorySaver` - a simple in-memory checkpointer - - Compiling graph translates it to low-level [Pregel](https://research.google/pubs/pregel-a-system-for-large-scale-graph-processing/) operations 6.
Execute the graph.