Skip to content

Commit 12ead11

Browse files
fix dependencies
1 parent 9dd7428 commit 12ead11

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

python-recipes/RAG/01_redisvl.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
}
104104
],
105105
"source": [
106-
"%pip install -q redis redisvl langchain_community pypdf sentence-transformers langchain openai"
106+
"%pip install -q redis redisvl langchain-community pypdf sentence-transformers langchain openai pandas"
107107
]
108108
},
109109
{

python-recipes/RAG/02_langchain.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@
7070
},
7171
"outputs": [],
7272
"source": [
73-
"%pip install -q redis \"unstructured[pdf]\" sentence-transformers langchain langchain-redis langchain-huggingface"
73+
"%pip install -q redis \"unstructured[pdf]\" sentence-transformers langchain \n",
74+
"%pip install -q langchain-community langchain-redis langchain-huggingface"
7475
]
7576
},
7677
{

python-recipes/agents/00_langgraph_redis_agentic_rag.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"outputs": [],
4747
"source": [
48-
"%pip install -q langchain-community tiktoken langchain-openai langchainhub langchain-redis langchain langgraph langchain-text-splitters"
48+
"%pip install -q langchain-community tiktoken langchain-openai langchainhub langchain-redis langchain langgraph langchain-text-splitters bs4"
4949
]
5050
},
5151
{

python-recipes/agents/01_crewai_langgraph_redis.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
}
115115
],
116116
"source": [
117+
"# NBVAL_SKIP\n",
117118
"%%sh\n",
118119
"curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg\n",
119120
"echo \"deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main\" | sudo tee /etc/apt/sources.list.d/redis.list\n",
@@ -177,7 +178,6 @@
177178
}
178179
],
179180
"source": [
180-
"import os\n",
181181
"import re\n",
182182
"import random\n",
183183
"import pandas as pd\n",

python-recipes/llm-session-manager/00_llm_session_manager.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"metadata": {},
3232
"outputs": [],
3333
"source": [
34-
"%pip install cohere redisvl"
34+
"%pip install cohere redisvl sentence-transformers"
3535
]
3636
},
3737
{

python-recipes/llm-session-manager/01_multiple_sessions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"metadata": {},
2929
"outputs": [],
3030
"source": [
31-
"%pip install cohere redisvl"
31+
"%pip install cohere redisvl sentence-transformers"
3232
]
3333
},
3434
{

python-recipes/recommendation-systems/01_collaborative_filtering.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"metadata": {},
3939
"outputs": [],
4040
"source": [
41-
"%pip install -q scikit-surprise redis redisvl pandas"
41+
"%pip install -q scikit-surprise redis redisvl pandas requests"
4242
]
4343
},
4444
{

python-recipes/recommendation-systems/02_two_towers.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"metadata": {},
4545
"outputs": [],
4646
"source": [
47-
"%pip install -q redis redisvl pandas torch"
47+
"%pip install -q redis redisvl pandas torch requests"
4848
]
4949
},
5050
{

0 commit comments

Comments
 (0)