EduTechTeam commited on
Commit
130b6ee
·
verified ·
1 Parent(s): 0bfbc55

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -31,10 +31,12 @@ def load_doc():
31
  path="pdfs"
32
  loaders = []
33
  for file in os.listdir(path):
34
- print(file)
35
- print(type(file))
36
- loader = PyPDFLoader(f"/content/pdfs/{file}")
37
- loaders.append(loader)
 
 
38
 
39
  pages = []
40
  for loader in loaders:
 
31
  path="pdfs"
32
  loaders = []
33
  for file in os.listdir(path):
34
+ file_path = os.path.abspath(os.path.join(path, file))
35
+ print(f"Processing file: {file_path}")
36
+
37
+ if os.path.isfile(file_path):
38
+ loader = PyMuPDFLoader(file_path)
39
+ loaders.append(loader)
40
 
41
  pages = []
42
  for loader in loaders: