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