ogegadavis254 commited on
Commit
0114eb4
·
verified ·
1 Parent(s): b5d3712

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -1
app.py CHANGED
@@ -13,6 +13,36 @@ def reset_conversation():
13
  st.session_state.messages = []
14
  return None
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  # Define model links for the Addiction Recovery and Mental Health models
17
  model_links = {
18
  "Addiction recovery AI": "NousResearch/Nous-Hermes-2-Yi-34B",
@@ -123,4 +153,10 @@ if prompt := st.chat_input(f"Hi, I'm {selected_model}, let's chat"):
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))
 
 
 
 
 
 
 
13
  st.session_state.messages = []
14
  return None
15
 
16
+ def analyze_diagnosis(messages, model_link):
17
+ # Extract user messages
18
+ user_messages = [message[1] for message in messages if message[0] == "user"]
19
+
20
+ # Define mental conditions and associated keywords
21
+ mental_conditions = {
22
+ "Depression": ["depression", "sad", "hopeless", "lonely", "empty", "worthless", "miserable"],
23
+ "Anxiety": ["anxiety", "nervous", "worried", "fearful", "panicked", "stressed", "tense"],
24
+ "Panic disorder": ["panic attack", "panic", "scared", "terrified", "frightened", "hyperventilate", "heart racing"],
25
+ "Bipolar disorder": ["bipolar", "manic", "mania", "euphoric", "energetic", "depressed", "hopeless"],
26
+ "Schizophrenia": ["schizophrenia", "hallucination", "delusion", "paranoia", "disorganized", "psychotic", "dissociation"],
27
+ "PTSD": ["ptsd", "trauma", "nightmare", "flashback", "startled", "avoidance", "hypervigilance"],
28
+ "Obsessive-Compulsive Disorder": ["ocd", "obsession", "compulsion", "intrusive thought", "ritual", "cleaning", "checking"],
29
+ "Eating disorder": ["eating disorder", "anorexia", "bulimia", "binge eating", "body image", "weight obsession", "purging"],
30
+ "Substance use disorder": ["substance use", "drug addiction", "alcoholism", "substance abuse", "withdrawal", "craving", "dependency"],
31
+ "Attention-deficit/hyperactivity disorder (ADHD)": ["adhd", "attention deficit", "hyperactivity", "impulsivity", "inattention", "restlessness", "fidgeting"],
32
+ "Borderline personality disorder": ["borderline personality", "emotional instability", "impulsivity", "fear of abandonment", "unstable relationships", "self-harm", "mood swings"],
33
+ "Postpartum depression": ["postpartum depression", "baby blues", "motherhood depression", "crying spells", "irritability", "hopelessness", "fatigue"],
34
+ "Social anxiety disorder": ["social anxiety", "fear of social situations", "embarrassment", "humiliation", "avoidance", "self-consciousness", "panic"]
35
+ }
36
+
37
+ # Count occurrences of keywords for each mental condition
38
+ condition_counts = {condition: sum(message.lower().count(keyword) for message in user_messages for keyword in keywords)
39
+ for condition, keywords in mental_conditions.items()}
40
+
41
+ # Determine the condition with the highest count
42
+ diagnosis = max(condition_counts, key=condition_counts.get)
43
+
44
+ return diagnosis
45
+
46
  # Define model links for the Addiction Recovery and Mental Health models
47
  model_links = {
48
  "Addiction recovery AI": "NousResearch/Nous-Hermes-2-Yi-34B",
 
153
  st.write("You can reach out to a certified therapist at +25493609747.")
154
 
155
  # Add assistant response to chat history
156
+ st.session_state.messages.append(("assistant", assistant_response))
157
+
158
+ # Add diagnostic feature to the sidebar
159
+ diagnosis = analyze_diagnosis(st.session_state.messages, model_links[selected_model])
160
+ if diagnosis:
161
+ st.sidebar.subheader("Diagnosis")
162
+ st.sidebar.write(diagnosis)