From b18c6ab9ad6f62249c4771f1daa2687a14153164 Mon Sep 17 00:00:00 2001 From: Kartheek Yakkala Date: Thu, 8 Feb 2024 19:19:47 -0600 Subject: [PATCH] docs: Added LangGraph in framework parts of readme file (#17279) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40ac6d9a476..a9490035ac8 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ This framework consists of several parts. - **[LangChain Templates](templates)**: A collection of easily deployable reference architectures for a wide variety of tasks. - **[LangServe](https://github.com/langchain-ai/langserve)**: A library for deploying LangChain chains as a REST API. - **[LangSmith](https://smith.langchain.com)**: A developer platform that lets you debug, test, evaluate, and monitor chains built on any LLM framework and seamlessly integrates with LangChain. +- **[LangGraph](https://python.langchain.com/docs/langgraph)**: LangGraph is a library for building stateful, multi-actor applications with LLMs, built on top of (and intended to be used with) LangChain. It extends the LangChain Expression Language with the ability to coordinate multiple chains (or actors) across multiple steps of computation in a cyclic manner. The LangChain libraries themselves are made up of several different packages. - **[`langchain-core`](libs/core)**: Base abstractions and LangChain Expression Language.