Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -72,6 +72,20 @@ def get_well_being_suggestions(emotion):
|
|
72 |
"https://youtu.be/-e-4Kx5px_I"
|
73 |
]
|
74 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
return suggestions.get(emotion, {
|
77 |
"text": "Feeling neutral? That's okay! Take care of your mental health.",
|
@@ -169,3 +183,4 @@ def main():
|
|
169 |
# Run the Streamlit app
|
170 |
if __name__ == "__main__":
|
171 |
main()
|
|
|
|
72 |
"https://youtu.be/-e-4Kx5px_I"
|
73 |
]
|
74 |
},
|
75 |
+
# New addition for "Surprise"
|
76 |
+
"surprise": {
|
77 |
+
"text": "You're feeling surprised. Take a deep breath and ground yourself.",
|
78 |
+
"links": [
|
79 |
+
"https://www.helpguide.org/mental-health/anxiety/tips-for-dealing-with-anxiety",
|
80 |
+
"https://www.health.harvard.edu/health-a-to-z",
|
81 |
+
"https://www.psychologytoday.com/us/blog/mindful-anger/201908/5-ways-to-deal-with-unexpected-surprises"
|
82 |
+
],
|
83 |
+
"videos": [
|
84 |
+
"https://youtu.be/MIc299Flibs",
|
85 |
+
"https://www.youtube.com/shorts/Tq49ajl7c8Q?feature=share",
|
86 |
+
"https://youtu.be/m1vaUGtyo-A"
|
87 |
+
]
|
88 |
+
},
|
89 |
}
|
90 |
return suggestions.get(emotion, {
|
91 |
"text": "Feeling neutral? That's okay! Take care of your mental health.",
|
|
|
183 |
# Run the Streamlit app
|
184 |
if __name__ == "__main__":
|
185 |
main()
|
186 |
+
|