Spaces:
Running
Running
Deepak Yadav
commited on
Commit
Β·
a2f8e12
1
Parent(s):
e50c54a
updated new version deepseek-r1
Browse files
app.py
CHANGED
@@ -41,6 +41,13 @@ CHAT_CSS = """
|
|
41 |
# Streamlit UI Setup
|
42 |
st.set_page_config(page_title="DocChatAI", layout="wide")
|
43 |
st.title("π DocChatAI | Chat Using Documents")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
# Sidebar
|
46 |
st.sidebar.title("DocChatAI")
|
|
|
41 |
# Streamlit UI Setup
|
42 |
st.set_page_config(page_title="DocChatAI", layout="wide")
|
43 |
st.title("π DocChatAI | Chat Using Documents")
|
44 |
+
# Expandable Disclaimer Section
|
45 |
+
with st.expander("β οΈ Disclaimer (Click to expand)"):
|
46 |
+
st.markdown("""
|
47 |
+
- This AI chatbot provides **informational responses only** and should not be used as **legal, medical, or financial advice**.
|
48 |
+
- The accuracy of responses depends on the provided **context and training data**.
|
49 |
+
- **Use at your own discretion** and always verify important information from reliable sources.
|
50 |
+
""")
|
51 |
|
52 |
# Sidebar
|
53 |
st.sidebar.title("DocChatAI")
|