I am using llama_index package to index some of our own documents and query them using GPT. It works fairly well with individual PDFs. However we have a large anout of PDFs which I would like to load in a single run as using its SimpleDirectoryReader. But I am getting the following error when the following commands were run.
from llama_index import download_loader
SimpleDirectoryReader = download_loader("SimpleDirectoryReader")
FileNotFoundError: [Errno 2] No such file or directory: C:\\Users\\XXXXX\\AppData\\Local\\Programs\\Python\\Python38\\lib\\site-packages\\gpt_index\\readers\\llamahub_modules/file/base.py'
The readers\llamahub_modules\file folder only has a folder called 'pdf'. It doesn't have a base.py file. How
I tried uninstalling and re-installing llama_index python module but there was no impact. My python version is 3.8.2
How can I get it working?