Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -143,11 +143,10 @@ def main():
|
|
143 |
with st.sidebar:
|
144 |
st.subheader("Your documents")
|
145 |
pdf_docs = st.file_uploader(
|
146 |
-
"Upload your PDFs here and click on 'Process'", accept_multiple_files=True
|
147 |
-
|
148 |
if st.button("Process"):
|
149 |
-
with st.spinner("Processing")
|
150 |
-
st.write(pdf_docs)
|
151 |
# get pdf text
|
152 |
raw_text = get_pdf_text(pdf_docs)
|
153 |
|
|
|
143 |
with st.sidebar:
|
144 |
st.subheader("Your documents")
|
145 |
pdf_docs = st.file_uploader(
|
146 |
+
"Upload your PDFs here and click on 'Process'", accept_multiple_files=True)
|
147 |
+
|
148 |
if st.button("Process"):
|
149 |
+
with st.spinner("Processing")
|
|
|
150 |
# get pdf text
|
151 |
raw_text = get_pdf_text(pdf_docs)
|
152 |
|