Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
#
|
157 |
bullets_list = generated_bullets.split('\n')
|
158 |
-
formatted_bullets = '
|
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 |
+
|