From 19144ff29103061da8f7a402e56ba7675c7e7bfb Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 6 Feb 2024 09:50:00 -0500 Subject: [PATCH] README.md: Add absolute link to langgraph repo This helps make sure that there's a clickable link from the langgraph page from langchain main python docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5dd53ac2..173831445 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Overview -LangGraph is a library for building stateful, multi-actor applications with LLMs, built on top of (and intended to be used with) [LangChain](https://github.com/langchain-ai/langchain). +[LangGraph](https://github.com/langchain-ai/langgraph) is a library for building stateful, multi-actor applications with LLMs, built on top of (and intended to be used with) [LangChain](https://github.com/langchain-ai/langchain). It extends the [LangChain Expression Language](https://python.langchain.com/docs/expression_language/) with the ability to coordinate multiple chains (or actors) across multiple steps of computation in a cyclic manner. It is inspired by [Pregel](https://research.google/pubs/pub37252/) and [Apache Beam](https://beam.apache.org/). The current interface exposed is one inspired by [NetworkX](https://networkx.org/documentation/latest/).