Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -165,7 +165,10 @@ for message in st.session_state.chat_history:
|
|
165 |
if message["role"] == "user":
|
166 |
st.markdown(f"<div class='user-msg'><strong>You:</strong> {message['content']}</div>", unsafe_allow_html=True)
|
167 |
else:
|
168 |
-
st.markdown(f"<
|
|
|
|
|
|
|
169 |
|
170 |
|
171 |
# Sidebar for chat reset
|
|
|
165 |
if message["role"] == "user":
|
166 |
st.markdown(f"<div class='user-msg'><strong>You:</strong> {message['content']}</div>", unsafe_allow_html=True)
|
167 |
else:
|
168 |
+
st.markdown(f"<div class='assistant-msg'><strong>Bot:</strong> {message['content']}</div>", unsafe_allow_html=True)
|
169 |
+
|
170 |
+
st.markdown("</div>", unsafe_allow_html=True)
|
171 |
+
|
172 |
|
173 |
|
174 |
# Sidebar for chat reset
|