Skip to content

Commit 5f47a20

Browse files
authored
Pin numpy<2.4 in tutorial 35 (#422)
1 parent 5655269 commit 5f47a20

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

index.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ notebook = "35_Evaluating_RAG_Pipelines.ipynb"
110110
aliases = ["35_model_based_evaluation_of_rag_pipelines"]
111111
completion_time = "15 min"
112112
created_at = 2024-02-12
113-
dependencies = ["datasets>=2.6.1", "sentence-transformers"]
113+
dependencies = ["datasets>=2.6.1", "sentence-transformers", "numpy>2, <2.4"]
114114

115115
[[tutorial]]
116116
title = "Building an Agentic RAG with Fallback to Websearch"

tutorials/35_Evaluating_RAG_Pipelines.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
"\n",
9292
"pip install haystack-ai\n",
9393
"pip install \"datasets>=2.6.1\"\n",
94-
"pip install \"sentence-transformers>=4.1.0\""
94+
"pip install \"sentence-transformers>=4.1.0\"\n",
95+
"pip install \"numpy>2, <2.4\""
9596
]
9697
},
9798
{
@@ -1609,4 +1610,4 @@
16091610
},
16101611
"nbformat": 4,
16111612
"nbformat_minor": 4
1612-
}
1613+
}

0 commit comments

Comments
 (0)