Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ for message in st.session_state.messages:
|
|
| 22 |
with st.chat_message(message["role"]):
|
| 23 |
st.markdown(message["content"])
|
| 24 |
|
| 25 |
-
if prompt := st.chat_input("Type hello to start/
|
| 26 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
| 27 |
with st.chat_message("user"):
|
| 28 |
st.markdown(prompt)
|
|
|
|
| 22 |
with st.chat_message(message["role"]):
|
| 23 |
st.markdown(message["content"])
|
| 24 |
|
| 25 |
+
if prompt := st.chat_input("Type hello to start/ escribe hola para empezar:"):
|
| 26 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
| 27 |
with st.chat_message("user"):
|
| 28 |
st.markdown(prompt)
|