update app add privacy disclaimer and duplication recommendation
Browse files
app.py
CHANGED
@@ -13,6 +13,16 @@ semantic_model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2')
|
|
13 |
def main():
|
14 |
st.title("PDF Topic Grouping App")
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# Step 1: Upload PDFs
|
17 |
uploaded_files = st.file_uploader("Upload PDFs", type="pdf", accept_multiple_files=True)
|
18 |
|
|
|
13 |
def main():
|
14 |
st.title("PDF Topic Grouping App")
|
15 |
|
16 |
+
st.warning("""
|
17 |
+
**Warning**: Do not enter confidential data into this app when it is running in the cloud.
|
18 |
+
Your information may not be secure.
|
19 |
+
""")
|
20 |
+
|
21 |
+
st.warning("""
|
22 |
+
**Important**: This Space is shared with other users, meaning others can view your results and data.
|
23 |
+
Please duplicate this Space to your own Hugging Face account for privacy and security.
|
24 |
+
""")
|
25 |
+
|
26 |
# Step 1: Upload PDFs
|
27 |
uploaded_files = st.file_uploader("Upload PDFs", type="pdf", accept_multiple_files=True)
|
28 |
|