Spaces:
Sleeping
Sleeping
Updating
Browse files- chatbot.py +0 -1
chatbot.py
CHANGED
|
@@ -92,7 +92,6 @@ def render_chatbot(code, output, error):
|
|
| 92 |
st.session_state.conversation.append((question, response))
|
| 93 |
|
| 94 |
# Chat container
|
| 95 |
-
st.markdown('<div class="chat-container">', unsafe_allow_html=True)
|
| 96 |
for q, a in st.session_state.conversation:
|
| 97 |
# User message
|
| 98 |
st.markdown(f'<div class="chat-message user-message">{escape(q)}</div>', unsafe_allow_html=True)
|
|
|
|
| 92 |
st.session_state.conversation.append((question, response))
|
| 93 |
|
| 94 |
# Chat container
|
|
|
|
| 95 |
for q, a in st.session_state.conversation:
|
| 96 |
# User message
|
| 97 |
st.markdown(f'<div class="chat-message user-message">{escape(q)}</div>', unsafe_allow_html=True)
|