Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,8 @@ def main():
|
|
21 |
if 'chat_history' not in st.session_state:
|
22 |
st.session_state['chat_history'] = ''
|
23 |
|
24 |
-
st.session_state['chat_history'] += "<div style='color: blue;'>You: </div>"
|
|
|
25 |
st.markdown(st.session_state['chat_history'], unsafe_allow_html=True)
|
26 |
|
27 |
#st.session_state['chat_history'].append("<div style='color: blue;'>You: </div>")
|
|
|
21 |
if 'chat_history' not in st.session_state:
|
22 |
st.session_state['chat_history'] = ''
|
23 |
|
24 |
+
st.session_state['chat_history'] += "<div style='color: blue;'>You: </div><br>"
|
25 |
+
print(st.session_state['chat_history'])
|
26 |
st.markdown(st.session_state['chat_history'], unsafe_allow_html=True)
|
27 |
|
28 |
#st.session_state['chat_history'].append("<div style='color: blue;'>You: </div>")
|