JeCabrera commited on
Commit
ea7d5a3
·
verified ·
1 Parent(s): 963adfc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -153,9 +153,9 @@ if submit:
153
  # Obtener la respuesta del modelo
154
  generated_bullets = generate_bullets(number_of_bullets, target_audience, product, call_to_action, temperature)
155
 
156
- # Dividir los bullets en una lista y unirlos con saltos de línea
157
  bullets_list = generated_bullets.split('\n')
158
- formatted_bullets = '\n'.join([f'- {bullet}' for bullet in bullets_list if bullet]) # Añadir un guion para cada bullet
159
 
160
  col2.markdown(f"""
161
  <div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;">
@@ -167,3 +167,4 @@ if submit:
167
  st.error(f"Error al generar los bullets: {str(e)}")
168
  else:
169
  st.error("Por favor, completa todos los campos.")
 
 
153
  # Obtener la respuesta del modelo
154
  generated_bullets = generate_bullets(number_of_bullets, target_audience, product, call_to_action, temperature)
155
 
156
+ # Formatear la salida usando etiquetas <br> para saltos de línea
157
  bullets_list = generated_bullets.split('\n')
158
+ formatted_bullets = '<br>'.join([f'- {bullet}' for bullet in bullets_list if bullet]) # Añadir un guion para cada bullet
159
 
160
  col2.markdown(f"""
161
  <div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;">
 
167
  st.error(f"Error al generar los bullets: {str(e)}")
168
  else:
169
  st.error("Por favor, completa todos los campos.")
170
+