JeCabrera commited on
Commit
b0ee289
·
verified ·
1 Parent(s): c315672

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -226,14 +226,15 @@ with col1:
226
  # Number of headlines
227
  number_of_headlines = st.selectbox("Número de Titulares", options=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], index=4)
228
 
229
- temperature = st.slider("Creatividad", min_value=0.0, max_value=2.0, value=1.0, step=0.1)
230
-
231
  # Angle selection
232
  angle_keys = ["NINGUNO"] + sorted([key for key in angles.keys() if key != "NINGUNO"])
233
  selected_angle = st.selectbox(
234
  "Selecciona el ángulo para tus titulares",
235
  options=angle_keys
236
  )
 
 
 
237
 
238
  selected_formula = headline_formulas[selected_formula_key]
239
 
 
226
  # Number of headlines
227
  number_of_headlines = st.selectbox("Número de Titulares", options=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], index=4)
228
 
 
 
229
  # Angle selection
230
  angle_keys = ["NINGUNO"] + sorted([key for key in angles.keys() if key != "NINGUNO"])
231
  selected_angle = st.selectbox(
232
  "Selecciona el ángulo para tus titulares",
233
  options=angle_keys
234
  )
235
+
236
+ # Moved temperature slider to the bottom
237
+ temperature = st.slider("Creatividad", min_value=0.0, max_value=2.0, value=1.0, step=0.1)
238
 
239
  selected_formula = headline_formulas[selected_formula_key]
240