mohith96 commited on
Commit
1b66e28
·
verified ·
1 Parent(s): bb00089

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ uploaded_files = st.file_uploader("Upload PDF files", type=["pdf"], accept_multiple_files=True)
4
+
5
+ retriever = None
6
+ if uploaded_files:
7
+ st.info("Processing uploaded PDFs...")