read function, multiple files added
Browse files
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=
|
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:
|