From 6dca2157842cbdf003e86e386d8c3a3d975de7fd Mon Sep 17 00:00:00 2001 From: Jeff Tang Date: Tue, 26 Nov 2024 14:43:33 -0800 Subject: [PATCH] path fix --- .../multimodal_RAG_with_nvidia_investor_slide_deck.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/3p_integrations/togetherai/multimodal_RAG_with_nvidia_investor_slide_deck.ipynb b/recipes/3p_integrations/togetherai/multimodal_RAG_with_nvidia_investor_slide_deck.ipynb index a5218546b..20dd82152 100644 --- a/recipes/3p_integrations/togetherai/multimodal_RAG_with_nvidia_investor_slide_deck.ipynb +++ b/recipes/3p_integrations/togetherai/multimodal_RAG_with_nvidia_investor_slide_deck.ipynb @@ -723,7 +723,7 @@ "source": [ "# Use ColQwen2 to index and store the presentation\n", "index_name = \"nvidia_index\"\n", - "model.index(input_path=Path(\"/content/nvidia_presentation.pdf\"),\n", + "model.index(input_path=Path(\"nvidia_presentation.pdf\"),\n", " index_name=index_name,\n", " store_collection_with_index=True, # Stores base64 images along with the vectors\n", " overwrite=True\n",