ogegadavis254 commited on
Commit
ab1a8b0
·
verified ·
1 Parent(s): 3e5c0ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -74,11 +74,11 @@ selected_model = st.sidebar.selectbox("Select Model", list(model_links.keys()))
74
  st.sidebar.button('Reset Chat', on_click=reset_conversation)
75
 
76
  # Add cautionary message about testing phase at the bottom of the sidebar
77
- st.sidebar.markdown("**Note**: This model is still in the testing phase. Responses may be inaccurate or undesired. Use it cautiously, especially for critical issues.")
78
 
79
  # Add logo and text to the sidebar
80
  st.sidebar.image("https://assets.isu.pub/document-structure/221118065013-a6029cf3d563afaf9b946bb9497d45d4/v1/2841525b232adaef7bd0efe1da81a4c5.jpeg", width=200)
81
- st.sidebar.write("A product of Kisii University")
82
 
83
  # Initialize chat history
84
  if "messages" not in st.session_state:
@@ -101,11 +101,11 @@ if prompt := st.chat_input(f"Hi, I'm {selected_model}, ask me a question"):
101
  st.session_state.message_count += 1
102
 
103
  # Check if intervention is needed based on bot response
104
- if any(keyword in prompt.lower() for keyword in ["human", "therapist"]):
 
105
  if not st.session_state.ask_intervention:
106
- if st.button("Do you need to talk to a therapist?"):
107
- st.session_state.ask_intervention = True
108
- st.write("You can reach out to a certified therapist at +25493609747.")
109
 
110
  # Interact with the selected model
111
  assistant_response = interact_with_together_api(st.session_state.messages, model_links[selected_model])
 
74
  st.sidebar.button('Reset Chat', on_click=reset_conversation)
75
 
76
  # Add cautionary message about testing phase at the bottom of the sidebar
77
+ st.sidebar.markdown("**Note**: This model is still in the beta phase. Responses may be inaccurate or undesired. Use it cautiously, especially for critical issues.")
78
 
79
  # Add logo and text to the sidebar
80
  st.sidebar.image("https://assets.isu.pub/document-structure/221118065013-a6029cf3d563afaf9b946bb9497d45d4/v1/2841525b232adaef7bd0efe1da81a4c5.jpeg", width=200)
81
+ st.sidebar.write("A product proudly developed by Kisii University")
82
 
83
  # Initialize chat history
84
  if "messages" not in st.session_state:
 
101
  st.session_state.message_count += 1
102
 
103
  # Check if intervention is needed based on bot response
104
+ if any(keyword in prompt.lower() for keyword in ["human", "therapist", "someone", "died", "death", "help", "suicide", "suffering", "crisis", "emergency", "support", "depressed", "anxiety", "lonely", "desperate", "struggling", "counseling", "distressed", "hurt", "pain", "grief", "trauma", "abuse", "danger", "risk", "urgent", "need assistance"]):
105
+ # Intervention logic here
106
  if not st.session_state.ask_intervention:
107
+ st.session_state.ask_intervention = True
108
+ st.write("You can reach out to a certified therapist at +25493609747.")
 
109
 
110
  # Interact with the selected model
111
  assistant_response = interact_with_together_api(st.session_state.messages, model_links[selected_model])