AkashVD26 commited on
Commit
bd11f04
โ€ข
1 Parent(s): 54e7c49

read function, multiple files added

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ st.set_page_config(page_title="PDFSense", page_icon="๐Ÿ“œ")
24
  st.title("๐Ÿ“œ ๐๐ƒ๐…๐’๐ž๐ง๐ฌ๐ž : ๐๐ƒ๐… ๐๐ฎ๐ž๐ฌ๐ญ๐ข๐จ๐ง ๐€๐ง๐ฌ๐ฐ๐ž๐ซ๐ข๐ง๐  ๐š๐ฌ๐ฌ๐ข๐ฌ๐ญ๐š๐ง๐ญ ๐ฐ๐ข๐ญ๐ก ๐‚๐ก๐š๐ญ ๐‡๐ข๐ฌ๐ญ๐จ๐ซ๐ฒ")
25
 
26
  # PDF Uploader Section (Keeps it at the top)
27
- uploaded_files = st.file_uploader("Drop PDF files here", type="pdf", accept_multiple_files=False)
28
 
29
  # Initialize chat history
30
  if "messages" not in st.session_state:
 
24
  st.title("๐Ÿ“œ ๐๐ƒ๐…๐’๐ž๐ง๐ฌ๐ž : ๐๐ƒ๐… ๐๐ฎ๐ž๐ฌ๐ญ๐ข๐จ๐ง ๐€๐ง๐ฌ๐ฐ๐ž๐ซ๐ข๐ง๐  ๐š๐ฌ๐ฌ๐ข๐ฌ๐ญ๐š๐ง๐ญ ๐ฐ๐ข๐ญ๐ก ๐‚๐ก๐š๐ญ ๐‡๐ข๐ฌ๐ญ๐จ๐ซ๐ฒ")
25
 
26
  # PDF Uploader Section (Keeps it at the top)
27
+ uploaded_files = st.file_uploader("Drop PDF files here", type="pdf", accept_multiple_files=True)
28
 
29
  # Initialize chat history
30
  if "messages" not in st.session_state: