From 13c8c6504f70cd81191add92e436d7e82204d3d5 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Thu, 1 Aug 2024 15:47:19 -0500 Subject: [PATCH] Fix pip install --- notebooks/hybrid-search/notebook.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/hybrid-search/notebook.ipynb b/notebooks/hybrid-search/notebook.ipynb index a6fa9feb..04997b35 100644 --- a/notebooks/hybrid-search/notebook.ipynb +++ b/notebooks/hybrid-search/notebook.ipynb @@ -56,7 +56,7 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install wget openai==1.3.3 pydantic==1.10.17 jinja2==3.0.3 --quiet" + "%pip install wget openai==1.3.3 --quiet" ] }, { @@ -80,7 +80,7 @@ "outputs": [], "source": [ "# Import the library for vectorizing the data (Up to 2 minutes)\n", - "!pip install sentence-transformers --quiet\n", + "%pip install sentence-transformers --quiet\n", "\n", "from sentence_transformers import SentenceTransformer\n", "\n",