ogegadavis254 commited on
Commit
b5d3712
·
verified ·
1 Parent(s): 9feef86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -33
app.py CHANGED
@@ -3,7 +3,6 @@ import requests
3
  import os
4
  from dotenv import load_dotenv
5
  from requests.exceptions import RequestException
6
- from nltk.sentiment.vader import SentimentIntensityAnalyzer
7
 
8
  load_dotenv()
9
 
@@ -26,18 +25,6 @@ model_pre_instructions = {
26
  "Mental health AI": "From now on, you are an AI Therapist called Dave. When the user asks for advice, be very friendly and empathize with them if necessary. When the user asks your name, just tell them you are Klaus, created by SIST in Kisii University. You were built to be very friendly and compassionate. Always be eager to listen to what the user has to say and maintain a conversation, but don't overdo it. You can use appropriate emojis for emotional support occasionally, but don't overuse them. Keep your responses concise and short to maintain a conversational flow. Always remember to be very friendly, and above all, don't cross any ethical line. From time to time, assure the user that you do not store any of their data. If a user asks, Kisii University is located in Kisii, Kenya, and supports innovations that may be helpful to humanity."
27
  }
28
 
29
- # Analyze chat content for specific mental health conditions
30
- mental_conditions = {
31
- "Depression": ["depression", "sad", "hopeless", "lonely", "empty", "worthless", "miserable"],
32
- "Anxiety": ["anxiety", "nervous", "worried", "fearful", "panicked", "stressed", "tense"],
33
- "Panic disorder": ["panic attack", "panic", "scared", "terrified", "frightened", "hyperventilate", "heart racing"],
34
- "Bipolar disorder": ["bipolar", "manic", "mania", "euphoric", "energetic", "depressed", "hopeless"],
35
- "Schizophrenia": ["schizophrenia", "hallucination", "delusion", "paranoia", "disorganized", "psychotic", "dissociation"],
36
- "PTSD": ["ptsd", "trauma", "nightmare", "flashback", "startled", "avoidance", "hypervigilance"],
37
- "Obsessive-Compulsive Disorder": ["ocd", "obsession", "compulsion", "intrusive thought", "ritual", "cleaning", "checking"],
38
- "Eating disorder": ["eating disorder", "anorexia", "bulimia", "binge eating", "body image", "weight obsession", "purging"]
39
- }
40
-
41
  # Function to interact with the selected model via the Together API
42
  def interact_with_together_api(messages, model_link):
43
  all_messages = []
@@ -88,17 +75,6 @@ def interact_with_together_api(messages, model_link):
88
  st.error(f"Error communicating with the API: {e}")
89
  return None
90
 
91
- def predict_diagnosis(messages):
92
- # Analyze chat content for specific mental health conditions
93
- detected_conditions = []
94
- for condition, keywords in mental_conditions.items():
95
- for keyword in keywords:
96
- if keyword in messages[-1][1].lower():
97
- detected_conditions.append(condition)
98
- break
99
-
100
- return detected_conditions
101
-
102
  # Create sidebar with model selection dropdown and reset button
103
  selected_model = st.sidebar.selectbox("Select Model", list(model_links.keys()))
104
  st.sidebar.button('Reset Chat', on_click=reset_conversation)
@@ -122,7 +98,7 @@ for message in st.session_state.messages:
122
  st.markdown(message[1])
123
 
124
  # Accept user input
125
- if prompt := st.text_input(f"Hi, I'm {selected_model}, let's chat"):
126
  # Display user message in chat message container
127
  with st.chat_message("user"):
128
  st.markdown(prompt)
@@ -146,12 +122,5 @@ if prompt := st.text_input(f"Hi, I'm {selected_model}, let's chat"):
146
  if st.button("After the analysing our session you may need some extra help, so you can reach out to a certified therapist at +25493609747 Name: Ogega feel free to talk"):
147
  st.write("You can reach out to a certified therapist at +25493609747.")
148
 
149
- # Predict diagnosis
150
- diagnosis = predict_diagnosis(st.session_state.messages)
151
-
152
- # Display diagnosis
153
- st.sidebar.subheader("Diagnosis")
154
- st.sidebar.write(diagnosis)
155
-
156
  # Add assistant response to chat history
157
- st.session_state.messages.append(("assistant", assistant_response))
 
3
  import os
4
  from dotenv import load_dotenv
5
  from requests.exceptions import RequestException
 
6
 
7
  load_dotenv()
8
 
 
25
  "Mental health AI": "From now on, you are an AI Therapist called Dave. When the user asks for advice, be very friendly and empathize with them if necessary. When the user asks your name, just tell them you are Klaus, created by SIST in Kisii University. You were built to be very friendly and compassionate. Always be eager to listen to what the user has to say and maintain a conversation, but don't overdo it. You can use appropriate emojis for emotional support occasionally, but don't overuse them. Keep your responses concise and short to maintain a conversational flow. Always remember to be very friendly, and above all, don't cross any ethical line. From time to time, assure the user that you do not store any of their data. If a user asks, Kisii University is located in Kisii, Kenya, and supports innovations that may be helpful to humanity."
26
  }
27
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  # Function to interact with the selected model via the Together API
29
  def interact_with_together_api(messages, model_link):
30
  all_messages = []
 
75
  st.error(f"Error communicating with the API: {e}")
76
  return None
77
 
 
 
 
 
 
 
 
 
 
 
 
78
  # Create sidebar with model selection dropdown and reset button
79
  selected_model = st.sidebar.selectbox("Select Model", list(model_links.keys()))
80
  st.sidebar.button('Reset Chat', on_click=reset_conversation)
 
98
  st.markdown(message[1])
99
 
100
  # Accept user input
101
+ if prompt := st.chat_input(f"Hi, I'm {selected_model}, let's chat"):
102
  # Display user message in chat message container
103
  with st.chat_message("user"):
104
  st.markdown(prompt)
 
122
  if st.button("After the analysing our session you may need some extra help, so you can reach out to a certified therapist at +25493609747 Name: Ogega feel free to talk"):
123
  st.write("You can reach out to a certified therapist at +25493609747.")
124
 
 
 
 
 
 
 
 
125
  # Add assistant response to chat history
126
+ st.session_state.messages.append(("assistant", assistant_response))