JeCabrera commited on
Commit
dc5ddb0
·
verified ·
1 Parent(s): dc10c94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +65 -83
app.py CHANGED
@@ -19,74 +19,62 @@ def get_random_product_mention():
19
  # Crear la instrucción de mención basada en la opción seleccionada
20
  def get_mention_instruction(product_mention, product):
21
  if product_mention == "Directa":
22
- return f"""
23
- Directly introduce the product '{product}' as the clear solution to the problem the reader is facing. Ensure that the product is presented in a way that highlights its key benefits and demonstrates how it directly addresses the issue at hand. The mention should feel natural and seamlessly integrated into the narrative.
24
- """
25
  elif product_mention == "Indirecta":
26
- return f"""
27
- Subtly reference the product '{product}' as a potential solution to the reader's problem without naming it explicitly. Weave the product's core benefits into the description of how the reader can overcome the issue, creating an implicit connection between the solution and the product. Ensure the mention is subtle but clear enough to guide the reader towards the product.
28
- """
29
  elif product_mention == "Metafórica":
30
- return f"""
31
- Introduce the product '{product}' using a metaphor, connecting it symbolically to the solution the reader needs. The metaphor should relate to the problem being discussed and should creatively suggest how the product offers a resolution without explicitly stating its name. The metaphor should evoke the benefits of the product in a memorable and thought-provoking way.
32
- """
33
  return ""
34
 
35
- # System Prompt - Instrucción en inglés para el modelo
36
- system_instruction = """
37
- You are a world-class copywriter, expert in creating benefits that connect symptoms with problems. You deeply understand the emotions, desires, and challenges of a specific audience, allowing you to design personalized marketing strategies that resonate and motivate action. You know how to use proven structures to attract your target audience, generating interest and creating a powerful connection.
38
- Generate unusual, creative, and fascinating bullets that capture readers' attention about the product. Respond in Spanish and use a numbered list format. Important: Only answer bullets, never include explanations or categories, like this: 'La leyenda del padre soltero: Dice que nunca hay tiempo suficiente. El yoga te enseña a usar mejor el tiempo que tienes, incluso cuando te parece imposible.'.
39
- """
40
-
41
- # Función para obtener una cantidad de bullets
42
- def get_gemini_response_bullets(target_audience, product, num_bullets, creativity):
43
  product_mention = get_random_product_mention()
44
- mention_instruction = get_mention_instruction(product_mention, product) # Define aquí
45
- model_choice = "gemini-1.5-flash" # Modelo por defecto
46
-
47
- model = genai.GenerativeModel(model_choice)
48
-
49
- # System Prompt - Instrucción en inglés para el modelo
50
- system_instruction = """
51
- You are a world-class copywriter, expert in creating benefits that connect symptoms with problems. You deeply understand the emotions, desires, and challenges of a specific audience, allowing you to design personalized marketing strategies that resonate and motivate action. You know how to use proven structures to attract your target audience, generating interest and creating a powerful connection.
52
- Generate unusual, creative, and fascinating bullets that subtly hint at the product without direct mention, capturing readers' attention. Respond in Spanish and use a numbered list format. Important: Never include explanations or categories, like this: 'La leyenda del padre soltero: Dice que nunca hay tiempo suficiente. El yoga te enseña a usar mejor el tiempo que tienes, incluso cuando te parece imposible.'.
53
- """
54
-
55
- # Crear el prompt para generar bullets
56
- full_prompt = f"""
57
- {system_instruction}
58
- Your task is to create {num_bullets} benefits or bullets that connect the symptom with the problem faced by {target_audience}, increasing their desire to acquire the {product}.
59
- Infuse your responses with a creativity level of {creativity}. The bullets should be of the following types:
60
- * Good and Bad: 'The bathroom cabinet is the best place to store medicine, right? Incorrect. It's the worst. The facts are on page 10.'
61
- * The Best/The Worst: 'The best verb tense that gives your clients the feeling they've already bought from you.'
62
- * Stories: 'The story of...', 'The mysteries of...', 'The legend of...'
63
- * Trick: 'A simple system to write copy without trying to convince them to buy.'
64
- * The Truth: 'The truth that you've never been told in school, or at home, about how to make a living from music.'
65
- * Asking a Question: 'Did you know that...'
66
- * When: 'When is it a good idea to tell a girl you like her? If you don't say it at that moment, say goodbye to getting to know her intimately.'
67
- Using {mention_instruction} when you want to mention {product}.
68
- Use the following mention instructions to guide your writing: {mention_instruction}
69
- Using the mention type '{product_mention}' to guide how to mention the product in the benefits or bullets. Ensure the mention is adapted based on this type:
70
- - Direct: Clearly highlight the product as the solution.
71
- - Indirect: Subtly suggest the product without naming it.
72
- - Metaphorical: Use a metaphor to connect the product to the solution.
73
- When responding, always include a headline that references the {target_audience} and the product in the following way: 'Aquí tienes 5 bullets para Papás solteros, que aumenten el deseo de adquirir el Aceite multigrado, usando la mención indirecta:'
74
- Please create the bullets now.
75
- """
76
-
77
- response = model.generate_content([full_prompt])
78
-
79
- if response and response.parts:
80
- return response.parts[0].text
81
- else:
82
- raise ValueError("Lo sentimos, intenta con una combinación diferente de entradas.")
83
 
84
- # Inicializar la aplicación Streamlit
85
- st.set_page_config(page_title="Generador de Bullets", layout="wide")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  # Centrar el título y el subtítulo
88
- st.markdown("<h1 style='text-align: center;'>Impact Bullet Generator</h1>", unsafe_allow_html=True)
89
- st.markdown("<h4 style='text-align: center;'>Transforma los pensamientos de tu audiencia en balas persuasivas que inspiren a la acción.</h4>", unsafe_allow_html=True)
90
 
91
  # Añadir CSS personalizado para el botón
92
  st.markdown("""
@@ -109,36 +97,30 @@ st.markdown("""
109
  color: black;
110
  }
111
  </style>
112
- """, unsafe_allow_html=True)
113
 
114
- # Crear dos columnas para el layout (40% y 60%)
115
- col1, col2 = st.columns([2, 3])
116
 
 
117
  with col1:
118
- # Campos de entrada
119
- target_audience = st.text_input("¿Quién es tu público objetivo?")
120
- product = st.text_input("¿Qué producto tienes en mente?")
 
121
 
122
- # Campos de personalización sin acordeón
123
- num_bullets = st.slider("Número de Bullets", min_value=1, max_value=15, value=5)
124
- creativity = st.selectbox("Creatividad", ["Alta", "Media", "Baja"])
125
-
126
  # Botón de enviar
127
- submit = st.button("Generar Bullets")
128
-
129
- # Mostrar los bullets generados
130
- if submit:
131
- if target_audience and product:
132
- try:
133
  # Obtener la respuesta del modelo
134
- generated_bullets = get_gemini_response_bullets(target_audience, product, num_bullets, creativity)
 
135
  col2.markdown(f"""
136
  <div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;">
137
- <h4>Aquí están tus bullets:</h4>
138
- <p>{generated_bullets}</p>
139
  </div>
140
  """, unsafe_allow_html=True)
141
- except ValueError as e:
142
- col2.error(f"Error: {str(e)}")
143
- else:
144
- col2.error("Por favor, proporciona el público objetivo y el producto.")
 
19
  # Crear la instrucción de mención basada en la opción seleccionada
20
  def get_mention_instruction(product_mention, product):
21
  if product_mention == "Directa":
22
+ return f"Introduce directamente el producto '{product}' como la solución clara al problema que enfrenta el lector."
 
 
23
  elif product_mention == "Indirecta":
24
+ return f"Referencia sutilmente el producto '{product}' como una posible solución al problema del lector sin nombrarlo explícitamente."
 
 
25
  elif product_mention == "Metafórica":
26
+ return f"Introduce el producto '{product}' usando una metáfora, conectándolo simbólicamente a la solución que necesita el lector."
 
 
27
  return ""
28
 
29
+ # Función para generar titulares
30
+ def generate_headlines(number_of_headlines, target_audience, product, temperature):
 
 
 
 
 
 
31
  product_mention = get_random_product_mention()
32
+ mention_instruction = get_mention_instruction(product_mention, product)
33
+
34
+ # Crear la configuración del modelo
35
+ generation_config = {
36
+ "temperature": temperature, # Usar el valor del slider aquí
37
+ "top_p": 0.95,
38
+ "top_k": 64,
39
+ "max_output_tokens": 2048,
40
+ "response_mime_type": "text/plain",
41
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
+ model = genai.GenerativeModel(
44
+ model_name="gemini-1.5-flash",
45
+ generation_config=generation_config,
46
+ system_instruction="Eres un copywriter de clase mundial, con experiencia en la creación de ganchos, titulares y líneas de asunto que capturan la atención de inmediato. Tu habilidad radica en comprender profundamente las emociones, deseos y desafíos de una audiencia específica."
47
+ )
48
+
49
+ chat_session = model.start_chat(
50
+ history=[
51
+ {
52
+ "role": "user",
53
+ "parts": [
54
+ f"Tu tarea es crear {number_of_headlines} ganchos o encabezados titulares llamativos diseñados para {target_audience} con el fin de generar interés en {product}. "
55
+ f"Usa la siguiente mención: {mention_instruction}. "
56
+ "Los ganchos deben ser de este tipo: "
57
+ "1. Secretos: 'El secreto detrás de...'; "
58
+ "2. Consejos: 'Consejos para que...'; "
59
+ "3. Historias: 'La historia del...', 'Los misterios de...', 'La leyenda de...'; "
60
+ "4. Deseos: 'Cómo...'; "
61
+ "5. Listas: '10 razones por las que...'; "
62
+ "6. Haciendo una pregunta: '¿Sabías que...'; "
63
+ "7. Curiosidad: '¿Por qué...'."
64
+ ],
65
+ },
66
+ ]
67
+ )
68
+
69
+ response = chat_session.send_message("Genera los titulares") # Enviar mensaje para obtener la respuesta
70
+ return response.text # Regresar la respuesta directamente
71
+
72
+ # Configurar la interfaz de usuario con Streamlit
73
+ st.set_page_config(page_title="Generador de Titulares", layout="wide")
74
 
75
  # Centrar el título y el subtítulo
76
+ st.markdown("<h1 style='text-align: center;'>Generador de Titulares</h1>", unsafe_allow_html=True)
77
+ st.markdown("<h4 style='text-align: center;'>Usa el poder de Gemini AI para crear titulares atractivos.</h4>", unsafe_allow_html=True)
78
 
79
  # Añadir CSS personalizado para el botón
80
  st.markdown("""
 
97
  color: black;
98
  }
99
  </style>
100
+ """, unsafe_allow_html=True)
101
 
102
+ # Crear columnas
103
+ col1, col2 = st.columns([1, 2]) # 1: tamaño de la columna izquierda, 2: tamaño de la columna derecha
104
 
105
+ # Columnas de entrada
106
  with col1:
107
+ target_audience = st.text_input("¿Quién es tu público objetivo?", placeholder="Ejemplo: Estudiantes Universitarios")
108
+ product = st.text_input("¿Qué producto tienes en mente?", placeholder="Ejemplo: Curso de Inglés")
109
+ number_of_headlines = st.selectbox("Número de Titulares", options=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], index=4)
110
+ temperature = st.slider("Creatividad", min_value=0.0, max_value=1.0, value=0.5, step=0.1)
111
 
 
 
 
 
112
  # Botón de enviar
113
+ if st.button("Generar Titulares"):
114
+ if target_audience and product:
 
 
 
 
115
  # Obtener la respuesta del modelo
116
+ generated_headlines = generate_headlines(number_of_headlines, target_audience, product, temperature)
117
+ # Mostrar los bullets generados
118
  col2.markdown(f"""
119
  <div style="border: 1px solid #000000; padding: 5px; border-radius: 8px; background-color: #ffffff;">
120
+ <h4>Aquí están tus titulares:</h4>
121
+ <p>{generated_headlines}</p>
122
  </div>
123
  """, unsafe_allow_html=True)
124
+ else:
125
+ col2.error("Por favor, proporciona el público objetivo y el producto.")
126
+