diff --git a/09-VectorStore/99-Master-Template.ipynb b/09-VectorStore/99-Master-Template.ipynb index bd54df77e..1fe051821 100644 --- a/09-VectorStore/99-Master-Template.ipynb +++ b/09-VectorStore/99-Master-Template.ipynb @@ -146,6 +146,8 @@ "id": "6890920d", "metadata": {}, "source": [ + "## What is {vectordb}?\n", + "\n", "Please write down what you need to set up the Vectorstore here." ] }, @@ -263,7 +265,7 @@ "outputs": [], "source": [ "# Load the entire text file\n", - "with open(\"the_little_prince.txt\", \"r\", encoding=\"utf-8\") as f:\n", + "with open(\"./data/the_little_prince.txt\", \"r\", encoding=\"utf-8\") as f:\n", " content = f.read()\n", "\n", "# Preprocessing Data\n",