Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -283,7 +283,7 @@ if prompt := st.chat_input('¿En qué puedo ayudarte hoy?'):
|
|
283 |
# Debe condicionarse a is_first_message
|
284 |
if is_first_message:
|
285 |
add_message(MODEL_ROLE, WELCOME_MESSAGE, AI_AVATAR_ICON)
|
286 |
-
with st.chat_message(name=MODEL_ROLE, avatar=AI_AVATAR_ICON
|
287 |
st.markdown(WELCOME_MESSAGE)
|
288 |
update_chat_memory()
|
289 |
|
|
|
283 |
# Debe condicionarse a is_first_message
|
284 |
if is_first_message:
|
285 |
add_message(MODEL_ROLE, WELCOME_MESSAGE, AI_AVATAR_ICON)
|
286 |
+
with st.chat_message(name=MODEL_ROLE, avatar=AI_AVATAR_ICON):
|
287 |
st.markdown(WELCOME_MESSAGE)
|
288 |
update_chat_memory()
|
289 |
|