From 3fbe416dc378efa4fcde89e5cf72086661c01109 Mon Sep 17 00:00:00 2001 From: Bohyun Jung Date: Sun, 6 Jul 2025 17:31:20 +0900 Subject: [PATCH] Update vector-search-lab.ipynb Update book cover images URL. Related commit: 4b50ed6 --- notebooks/vector-search-lab.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/vector-search-lab.ipynb b/notebooks/vector-search-lab.ipynb index 240e265..92785a4 100644 --- a/notebooks/vector-search-lab.ipynb +++ b/notebooks/vector-search-lab.ipynb @@ -159,7 +159,7 @@ "metadata": {}, "outputs": [], "source": [ - "image_url = \"https://images.isbndb.com/covers/77/44/9780789467744.jpg\"\n", + "image_url = \"https://images.isbndb.com/covers/4318463482198.jpg\"\n", "# Load the image from the URL above\n", "image = Image.open(requests.get(image_url, stream=True).raw)\n", "# Embed the `image` using the `embedding_model` instantiated above and return the embedding as a list\n", @@ -454,7 +454,7 @@ "outputs": [], "source": [ "# Test the vector search with an image query\n", - "vector_search(\"https://images.isbndb.com/covers/26/12/9780385412612.jpg\", \"image\")\n", + "vector_search(\"https://images.isbndb.com/covers/10835953482746.jpg\", \"image\")\n", "\n", "# Also try these image queries:\n", "# - https://mongodb-developer.github.io/vector-search-lab/img/query-sample/1.png\n",