tedslin commited on
Commit
cbc8b51
·
verified ·
1 Parent(s): 066960f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -19,6 +19,18 @@ st.set_page_config(
19
  layout="centered"
20
  )
21
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  # Initialize session state for chat history and system prompt
23
  if "messages" not in st.session_state:
24
  st.session_state.messages = []
 
19
  layout="centered"
20
  )
21
 
22
+ # Display privacy notice
23
+ st.markdown("""
24
+ > **隱私權聲明**
25
+ >
26
+ > 使用本聊天服務即表示您同意:
27
+ > - 您的對話內容可能被用於改善服務品質
28
+ > - 對話紀錄可能作為系統訓練與評估的素材
29
+ > - 請勿在對話中透露任何個人隱私資訊
30
+ """)
31
+
32
+ st.markdown("---")
33
+
34
  # Initialize session state for chat history and system prompt
35
  if "messages" not in st.session_state:
36
  st.session_state.messages = []