Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1118,6 +1118,12 @@ with st.expander("Ver formato recomendado para los ejemplos"):
|
|
| 1118 |
st.code(f"Ejemplo 2 (Lactosa):\n{example2_text}", language='text')
|
| 1119 |
st.code(f"Ejemplo 3 (Vino):\n{example3_text}", language='text')
|
| 1120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1121 |
with st.form(key="search_form"):
|
| 1122 |
st.text_area(
|
| 1123 |
"Describe tu caso aqu铆, separando S脥NTOMAS y ALIMENTOS:",
|
|
|
|
| 1118 |
st.code(f"Ejemplo 2 (Lactosa):\n{example2_text}", language='text')
|
| 1119 |
st.code(f"Ejemplo 3 (Vino):\n{example3_text}", language='text')
|
| 1120 |
|
| 1121 |
+
# Definimos la variable placeholder_text justo antes de usarla en el formulario
|
| 1122 |
+
placeholder_text = """Ejemplo:
|
| 1123 |
+
S脥NTOMAS: dolor de cabeza, migra帽a, confusi贸n.
|
| 1124 |
+
ALIMENTOS: vino tinto, queso curado.
|
| 1125 |
+
"""
|
| 1126 |
+
|
| 1127 |
with st.form(key="search_form"):
|
| 1128 |
st.text_area(
|
| 1129 |
"Describe tu caso aqu铆, separando S脥NTOMAS y ALIMENTOS:",
|