genai-stack icon indicating copy to clipboard operation
genai-stack copied to clipboard

Is it possible to support multiple PDF files in App3 Question / Answer with a local PDF?

Open sense1024 opened this issue 2 years ago • 2 comments

Is it possible to support multiple PDF files in App3 Question / Answer with a local PDF?

sense1024 avatar Jan 15 '24 07:01 sense1024

@tomasonjo I think it should work with a multi-select or and then iterate over the files?

jexp avatar Jan 24 '24 16:01 jexp

We have tried this. I think that streamlit supports multiple files. You need to set pdf = st.file_uploader("Upload your PDF", type="pdf", accept_multiple_files=True) and then generate a single list with the text chunks from all PDFs and pass it to Neo4jVector index using from_texts method.

tomasonjo avatar Jan 24 '24 17:01 tomasonjo