Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -54,5 +54,5 @@ if st.button("Enviar"):
|
|
| 54 |
# Display conversation
|
| 55 |
chat_text = ""
|
| 56 |
for user_msg, bot_msg in st.session_state.history:
|
| 57 |
-
chat_text += f"Tu: {user_msg}\
|
| 58 |
st.text_area("Respuestas del Buho", value=chat_text, height=300, disabled=False)
|
|
|
|
| 54 |
# Display conversation
|
| 55 |
chat_text = ""
|
| 56 |
for user_msg, bot_msg in st.session_state.history:
|
| 57 |
+
chat_text += f"Tu: {user_msg}\nBuho: {bot_msg}\n\n"
|
| 58 |
st.text_area("Respuestas del Buho", value=chat_text, height=300, disabled=False)
|