Spaces:
Running
Running
File size: 254 Bytes
74d8f71 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from langchain_community.document_loaders import PDFPlumberLoader
from langchain_community.document_loaders import PyMuPDFLoader
# Load the PDF
def load_data(document):
loader = PDFPlumberLoader(document)
docs = loader.load()
return docs |