Update app.py
Browse files
app.py
CHANGED
@@ -84,8 +84,9 @@ with col1:
|
|
84 |
language = st.selectbox("Idioma del texto:", ["Inglés", "Español"])
|
85 |
mood = st.selectbox("Estado de ánimo:", ["Emocional", "Triste", "Feliz", "Horror", "Comedia", "Romántico"])
|
86 |
|
87 |
-
# Generate button (fuera del desplegable)
|
88 |
-
submit = st.button("
|
|
|
89 |
|
90 |
# Display uploaded image
|
91 |
if uploaded_file is not None:
|
|
|
84 |
language = st.selectbox("Idioma del texto:", ["Inglés", "Español"])
|
85 |
mood = st.selectbox("Estado de ánimo:", ["Emocional", "Triste", "Feliz", "Horror", "Comedia", "Romántico"])
|
86 |
|
87 |
+
# Generate button (fuera del desplegable) con cambios solicitados
|
88 |
+
submit = st.button("Escribir historia", key="generate_button",
|
89 |
+
style="background-color: #FFCC00; color: white; width: 90%;")
|
90 |
|
91 |
# Display uploaded image
|
92 |
if uploaded_file is not None:
|