Skip to content

Commit b73fd94

Browse files
author
Nitin Kanukolanu
committed
Add prerequisites and exclude migration notebooks from CI/CD tests
- Add sentence-transformers and numpy as explicit prerequisites in both migration notebooks - Add migration notebooks to .github/ignore-notebooks.txt to skip CI/CD testing - These notebooks require additional dependencies (sentence-transformers, numpy) not available in test environment - Notebooks are designed for interactive use with proper dependency installation
1 parent 5c0c4bf commit b73fd94

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/ignore-notebooks.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@
77
02_semantic_cache_optimization
88
spring_ai_redis_rag.ipynb
99
00_litellm_proxy_redis.ipynb
10-
04_redisvl_benchmarking_basics.ipynb
10+
04_redisvl_benchmarking_basics.ipynb
11+
06_hnsw_to_svs_vamana_migration.ipynb
12+
07_flat_to_svs_vamana_migration.ipynb

python-recipes/vector-search/06_hnsw_to_svs_vamana_migration.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
"\n",
5353
"**Requirements:**\n",
5454
"- Redis Stack 8.2.0+ with RediSearch 2.8.10+\n",
55-
"- sentence-transformers\n",
55+
"- sentence-transformers (for generating embeddings)\n",
56+
"- numpy (for vector operations)\n",
5657
"- redisvl (should be available in your environment)\n",
5758
"\n",
5859
"**🐳 Docker Setup (Required):**\n",

python-recipes/vector-search/07_flat_to_svs_vamana_migration.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
"\n",
3939
"**Requirements:**\n",
4040
"- Redis Stack 8.2.0+ with RediSearch 2.8.10+\n",
41-
"- sentence-transformers\n",
41+
"- sentence-transformers (for generating embeddings)\n",
42+
"- numpy (for vector operations)\n",
4243
"- redisvl (should be available in your environment)\n",
4344
"\n",
4445
"**🐳 Docker Setup (Required):**\n",
@@ -684,7 +685,7 @@
684685
"source": [
685686
"## Step 6: Compare Memory Usage\n",
686687
"\n",
687-
"Let's analyze the memory savings achieved through compression. This is just an example on the small sample data. Use a larger dataset for "
688+
"Let's analyze the memory savings achieved through compression. This is just an example on the small sample data. Use a larger dataset before deciding."
688689
]
689690
},
690691
{

0 commit comments

Comments
 (0)