mratanusarkar's picture
add: hacky impl of img extraction with pdfplumber
4fd52cf
raw
history blame
407 Bytes
from .image_loader import MarkerImageLoader, PDF2ImageLoader, PDFPlumberImageLoader
from .text_loader import (
MarkerTextLoader,
PDFPlumberTextLoader,
PyMuPDF4LLMTextLoader,
PyPDF2TextLoader,
)
__all__ = [
"PyMuPDF4LLMTextLoader",
"PyPDF2TextLoader",
"PDFPlumberTextLoader",
"MarkerTextLoader",
"PDF2ImageLoader",
"MarkerImageLoader",
"PDFPlumberImageLoader",
]