Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -129,22 +129,22 @@ button {
|
|
| 129 |
}
|
| 130 |
"""
|
| 131 |
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
)
|
| 149 |
-
|
| 150 |
-
|
|
|
|
| 129 |
}
|
| 130 |
"""
|
| 131 |
|
| 132 |
+
with gr.Blocks(css=custom_css) as app:
|
| 133 |
+
gr.ChatInterface(
|
| 134 |
+
respond,
|
| 135 |
+
title="🌱 Teen Mental Wellness Chatbot",
|
| 136 |
+
description="""
|
| 137 |
+
Feeling stressed, anxious, or overwhelmed? Ask me questions about mental wellness, coping strategies, and emotional well-being.
|
| 138 |
+
|
| 139 |
+
This chatbot is for support and education and is not a replacement for professional mental health care.
|
| 140 |
+
""",
|
| 141 |
+
examples=[
|
| 142 |
+
"I've been feeling stressed about school lately.",
|
| 143 |
+
"What are some coping strategies for anxiety?",
|
| 144 |
+
"How can I manage test anxiety?",
|
| 145 |
+
"What should I do when I'm feeling overwhelmed?",
|
| 146 |
+
"My parents put a lot of pressure on me."
|
| 147 |
+
]
|
| 148 |
+
)
|
| 149 |
+
|
| 150 |
+
app.launch()
|