From ecb2cce3ed5e0be917727637b81c72dc739d98eb Mon Sep 17 00:00:00 2001 From: Debbie Matthews Date: Mon, 29 Jul 2024 09:47:04 -0700 Subject: [PATCH] Update langchain app dependencies (#1126) --- content/develop/tutorials/llms/llm-quickstart.md | 4 ++-- python/tutorial-source/llm-18-lines-of-code/requirements.txt | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/content/develop/tutorials/llms/llm-quickstart.md b/content/develop/tutorials/llms/llm-quickstart.md index d76cfd187..0c561481c 100644 --- a/content/develop/tutorials/llms/llm-quickstart.md +++ b/content/develop/tutorials/llms/llm-quickstart.md @@ -33,10 +33,10 @@ Bonus: Deploy the app on Streamlit Community Cloud! ## Setup coding environment -In your IDE (integrated coding environment), open the terminal and install the following three Python libraries: +In your IDE (integrated coding environment), open the terminal and install the following two Python libraries: ```python -pip install streamlit openai langchain langchain-community langchain-openai +pip install streamlit langchain-openai ``` Create a `requirements.txt` file located in the root of your working directory and save these dependencies. This is necessary for deploying the app to the Streamlit Community Cloud later. diff --git a/python/tutorial-source/llm-18-lines-of-code/requirements.txt b/python/tutorial-source/llm-18-lines-of-code/requirements.txt index 9ff083e81..1e43abd31 100644 --- a/python/tutorial-source/llm-18-lines-of-code/requirements.txt +++ b/python/tutorial-source/llm-18-lines-of-code/requirements.txt @@ -1,3 +1,2 @@ streamlit>=1.37.0 -openai -langchain +langchain-openai