Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,11 @@ if input_mode == "Speech":
|
|
116 |
st.session_state.speech_input = None
|
117 |
else:
|
118 |
user_message = st.chat_input("Type your message here:")
|
119 |
-
|
|
|
|
|
|
|
|
|
120 |
## Applying the user input box
|
121 |
with input_container:
|
122 |
if user_message:
|
|
|
116 |
st.session_state.speech_input = None
|
117 |
else:
|
118 |
user_message = st.chat_input("Type your message here:")
|
119 |
+
|
120 |
+
# Display the initial message from the bot
|
121 |
+
with st.chat_message("ai"):
|
122 |
+
st.markdown("I'm your Mental health Assistant, How may I help you?")
|
123 |
+
|
124 |
## Applying the user input box
|
125 |
with input_container:
|
126 |
if user_message:
|