Skip to content

Commit ddf9e89

Browse files
authored
Merge pull request #76 from logan-markewich/logan/update_paths
Update data path in RAG LlamaIndex Notebook
2 parents a2d4bcc + f59499a commit ddf9e89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

notebooks/en/rag_llamaindex_librarian.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@
100100
"metadata": {},
101101
"outputs": [],
102102
"source": [
103-
"!mkdir -p \".test/library/jane-austen\"\n",
104-
"!mkdir -p \".test/library/victor-hugo\"\n",
105-
"!wget https://www.gutenberg.org/ebooks/1342.epub.noimages -O \".test/library/jane-austen/pride-and-prejudice.epub\"\n",
106-
"!wget https://www.gutenberg.org/ebooks/135.epub.noimages -O \".test/library/victor-hugo/les-miserables.epub\""
103+
"!mkdir -p \"./test/library/jane-austen\"\n",
104+
"!mkdir -p \"./test/library/victor-hugo\"\n",
105+
"!wget https://www.gutenberg.org/ebooks/1342.epub.noimages -O \"./test/library/jane-austen/pride-and-prejudice.epub\"\n",
106+
"!wget https://www.gutenberg.org/ebooks/135.epub.noimages -O \"./test/library/victor-hugo/les-miserables.epub\""
107107
]
108108
},
109109
{
@@ -150,7 +150,7 @@
150150
"from llama_index.core import SimpleDirectoryReader\n",
151151
"\n",
152152
"loader = SimpleDirectoryReader(\n",
153-
" input_dir=\"./.test/\",\n",
153+
" input_dir=\"./test/\",\n",
154154
" recursive=True,\n",
155155
" required_exts=[\".epub\"],\n",
156156
")\n",

0 commit comments

Comments
 (0)