From a08c76a6b2788a1e4088d5fb0594b613f2d9b56b Mon Sep 17 00:00:00 2001 From: Ahmad Elmalah Date: Fri, 20 Dec 2024 19:08:19 +0200 Subject: [PATCH] Docs: Add langgraph to installation section for Rag tutorial (#28849) **Issue**: This tutorial depends on langgraph, however Langgraph is not mentioned on the installation section for the tutorial, which raises an error when copying and pasting the code snippets as following: ![image](https://github.com/user-attachments/assets/829c9118-fcf8-4f17-9abb-32e005ebae07) **Solution**: Just adding langgraph package to installation section, for both pip and Conda tabs as this tutorial requires it. --- docs/docs/tutorials/rag.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorials/rag.ipynb b/docs/docs/tutorials/rag.ipynb index 88232ceaa8b19..37f8cebf1d2b0 100644 --- a/docs/docs/tutorials/rag.ipynb +++ b/docs/docs/tutorials/rag.ipynb @@ -78,7 +78,7 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install --quiet --upgrade langchain-text-splitters langchain-community" + "%pip install --quiet --upgrade langchain-text-splitters langchain-community langgraph" ] }, { @@ -88,7 +88,7 @@ "source": [ " \n", " \n", - " conda install langchain-text-splitters langchain-community -c conda-forge\n", + " conda install langchain-text-splitters langchain-community langgraph -c conda-forge\n", " \n", "\n", "\n",