I have a pdf file that is questionnaire. There is text that cannot be changed which are the questions and then text boxes with the answers. When I run this simple code:
from langchain.document_loaders import PyPDFLoader
loader = PyPDFLoader("files/blo-file.pdf")
pages = loader.load_and_split()
pages
It doesn't include any of the information that was filled out. It only has the questions. How can I also get the answers to the questions? Thanks.