Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion 09-VectorStore/99-Master-Template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
Expand Down Expand Up @@ -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",
Expand Down
Loading