generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpdf_handler.py
37 lines (28 loc) · 1.04 KB
/
pdf_handler.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import os
from langchain_community.document_loaders import PyPDFLoader
from langchain_text_splitters import RecursiveCharacterTextSplitter
def process_pdf_into_chunks(filename):
"""
Takes pdf file, and converts it into text chunks of equal length
Parameters
----------
filename : str
The name of the pdf file to be processed
Returns
-------
list
a list of strings that are the chunks of the pdf converted to text
"""
# load pdf
if not os.path.isfile(filename):
raise ValueError("Invalid PDF file path.")
if not filename.endswith(".pdf"):
raise ValueError("File is not a PDF.")
loader = PyPDFLoader(filename)
docs = loader.load()
if not docs:
raise ValueError("Failed to load PDF documents.")
# splits text into chunks including metadata for mapping from chunk to pdf page (splits[0].metadata['page'])
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1500, chunk_overlap=150)
splits = text_splitter.split_documents(docs)
return splits