Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -47,7 +47,7 @@ if "image_data" not in st.session_state:
|
|
| 47 |
st.session_state.image_data = None
|
| 48 |
|
| 49 |
if not st.session_state.first_message_sent:
|
| 50 |
-
st.markdown("<h1 style='text-align:center;color:#4a4a4a;margin-top:100px;'>How can
|
| 51 |
|
| 52 |
for msg in st.session_state.messages:
|
| 53 |
with st.chat_message(msg["role"], avatar=USER_PFP if msg["role"] == "user" else AI_PFP):
|
|
|
|
| 47 |
st.session_state.image_data = None
|
| 48 |
|
| 49 |
if not st.session_state.first_message_sent:
|
| 50 |
+
st.markdown("<h1 style='text-align:center;color:#4a4a4a;margin-top:100px;'>How can I help you today?</h1>", unsafe_allow_html=True)
|
| 51 |
|
| 52 |
for msg in st.session_state.messages:
|
| 53 |
with st.chat_message(msg["role"], avatar=USER_PFP if msg["role"] == "user" else AI_PFP):
|