ali121300 commited on
Commit
70dfddf
1 Parent(s): cfb03f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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