Spaces:
Sleeping
Sleeping
Create streamlit_app.py
Browse files- streamlit_app.py +23 -0
streamlit_app.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import requests
|
3 |
+
|
4 |
+
st.set_page_config(page_title="MindSupport - AI Mental Health Chatbot", page_icon="🧠", layout="centered")
|
5 |
+
|
6 |
+
st.title("MindSupport: AI-Driven Mental Health Chatbot")
|
7 |
+
|
8 |
+
user_input = st.text_input("How are you feeling today?", max_chars=200)
|
9 |
+
|
10 |
+
if st.button("Submit"):
|
11 |
+
if user_input:
|
12 |
+
try:
|
13 |
+
response = requests.post("http://localhost:5000/chatbot", json={"input": user_input})
|
14 |
+
if response.status_code == 200:
|
15 |
+
result = response.json()
|
16 |
+
st.write(f"Chatbot: {result['response']}")
|
17 |
+
st.write(f"Sentiment Detected: {result['sentiment']}")
|
18 |
+
else:
|
19 |
+
st.error("Error connecting to the chatbot service.")
|
20 |
+
except Exception as e:
|
21 |
+
st.error(f"Error: {str(e)}")
|
22 |
+
|
23 |
+
st.write("In case of crisis, please contact the following helpline: 1-800-123-4567")
|