Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def main():
|
|
87 |
|
88 |
with st.sidebar:
|
89 |
st.title("Menu:")
|
90 |
-
pdf_docs = st.file_uploader("Upload your PDF Files and Click on the Submit & Process Button", accept_multiple_files=True)
|
91 |
if st.button("Submit & Process"):
|
92 |
with st.spinner("Processing..."):
|
93 |
raw_text = get_pdf_text(pdf_docs)
|
|
|
87 |
|
88 |
with st.sidebar:
|
89 |
st.title("Menu:")
|
90 |
+
pdf_docs = st.file_uploader("Upload your PDF Files and Click on the Submit & Process Button", accept_multiple_files=True, type=["pdf"])
|
91 |
if st.button("Submit & Process"):
|
92 |
with st.spinner("Processing..."):
|
93 |
raw_text = get_pdf_text(pdf_docs)
|