Deepak Yadav commited on
Commit
a2f8e12
Β·
1 Parent(s): e50c54a

updated new version deepseek-r1

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