Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ genai.configure(api_key=os.getenv("GOOGLE_API_KEY"))
|
|
16 |
# Fórmulas con ejemplos y explicaciones
|
17 |
# headline_formulas dictionary has been moved to formulas/headline_formulas.py
|
18 |
|
19 |
-
def generate_headlines(number_of_headlines, target_audience, product, temperature, selected_formula, selected_angle
|
20 |
# Crear la configuración del modelo
|
21 |
generation_config = {
|
22 |
"temperature": temperature,
|
@@ -72,18 +72,6 @@ IMPORTANT:
|
|
72 |
# Iniciar el prompt con las instrucciones del sistema
|
73 |
headlines_instruction = f"{system_prompt}\n\n"
|
74 |
|
75 |
-
# Add base copy instructions if provided
|
76 |
-
if base_copy and base_copy.strip():
|
77 |
-
headlines_instruction += f"""
|
78 |
-
BASE COPY TO USE:
|
79 |
-
The following text should be used as the primary source of information and inspiration for generating headlines:
|
80 |
-
|
81 |
-
{base_copy}
|
82 |
-
|
83 |
-
IMPORTANT: Extract key concepts, benefits, and language from this base copy to create your headlines.
|
84 |
-
Use the tone, style, and specific terminology from this text whenever possible.
|
85 |
-
"""
|
86 |
-
|
87 |
# Añadir instrucciones de ángulo solo si no es "NINGUNO"
|
88 |
if selected_angle != "NINGUNO":
|
89 |
headlines_instruction += f"""
|
@@ -91,79 +79,79 @@ Use the tone, style, and specific terminology from this text whenever possible.
|
|
91 |
INSTRUCCIONES DE ÁNGULO ESPECÍFICAS:
|
92 |
{angles[selected_angle]["instruction"]}
|
93 |
|
94 |
-
|
95 |
-
1.
|
96 |
-
2.
|
97 |
-
3.
|
98 |
-
4.
|
99 |
|
100 |
-
|
101 |
"""
|
102 |
for example in angles[selected_angle]["examples"]:
|
103 |
headlines_instruction += f"- {example}\n"
|
104 |
|
105 |
headlines_instruction += (
|
106 |
-
f"\
|
107 |
-
f"
|
108 |
)
|
109 |
|
110 |
if selected_angle != "NINGUNO":
|
111 |
-
headlines_instruction += f"
|
112 |
|
113 |
headlines_instruction += (
|
114 |
-
f"
|
115 |
)
|
116 |
|
117 |
if selected_angle != "NINGUNO":
|
118 |
-
headlines_instruction += f"
|
119 |
|
120 |
headlines_instruction += ".\n\n"
|
121 |
|
122 |
headlines_instruction += (
|
123 |
-
f"
|
124 |
-
f"
|
125 |
)
|
126 |
|
127 |
if selected_angle != "NINGUNO":
|
128 |
-
headlines_instruction += f",
|
129 |
|
130 |
headlines_instruction += ":\n\n"
|
131 |
|
132 |
-
#
|
133 |
random_examples = random.sample(selected_formula['examples'], min(5, len(selected_formula['examples'])))
|
134 |
|
135 |
-
headlines_instruction += "
|
136 |
for i, example in enumerate(random_examples, 1):
|
137 |
headlines_instruction += f"{i}. {example}\n"
|
138 |
|
139 |
-
headlines_instruction += "\
|
140 |
-
headlines_instruction += "1.
|
141 |
-
headlines_instruction += "2.
|
142 |
-
headlines_instruction += "3.
|
143 |
-
headlines_instruction += "4.
|
144 |
-
headlines_instruction += f"5.
|
145 |
|
146 |
-
headlines_instruction += f"
|
147 |
|
148 |
-
#
|
149 |
if selected_angle != "NINGUNO":
|
150 |
headlines_instruction += f"""
|
151 |
-
FINAL
|
152 |
-
1.
|
153 |
-
2.
|
154 |
-
3.
|
155 |
-
4.
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
"""
|
160 |
else:
|
161 |
headlines_instruction += f"""
|
162 |
-
|
163 |
-
|
164 |
"""
|
165 |
|
166 |
-
#
|
167 |
chat_session = model.start_chat(
|
168 |
history=[
|
169 |
{
|
@@ -204,49 +192,38 @@ col1, col2 = st.columns([1, 2])
|
|
204 |
with col1:
|
205 |
target_audience = st.text_input("¿Quién es tu público objetivo?", placeholder="Ejemplo: Estudiantes Universitarios")
|
206 |
product = st.text_input("¿Qué producto tienes en mente?", placeholder="Ejemplo: Curso de Inglés")
|
207 |
-
|
208 |
-
|
209 |
-
submit = st.button("Generar Titulares", key="submit_button", use_container_width=True)
|
210 |
-
|
211 |
# Crear un único acordeón para fórmula, creatividad y ángulo
|
212 |
with st.expander("Personaliza tus titulares"):
|
213 |
-
|
214 |
-
|
215 |
-
"Correo o copy para inspiración de titulares",
|
216 |
-
placeholder="Agrega aquí un texto que sirva como base para generar los titulares. Si lo dejas vacío, se generarán basados en el producto y público objetivo.",
|
217 |
-
height=150
|
218 |
-
)
|
219 |
-
|
220 |
-
# Formula selection after the text area
|
221 |
selected_formula_key = st.selectbox(
|
222 |
"Selecciona una fórmula para tus titulares",
|
223 |
options=list(headline_formulas.keys())
|
224 |
)
|
225 |
-
|
226 |
-
#
|
|
|
227 |
angle_keys = ["NINGUNO"] + sorted([key for key in angles.keys() if key != "NINGUNO"])
|
228 |
selected_angle = st.selectbox(
|
229 |
"Selecciona el ángulo para tus titulares",
|
230 |
options=angle_keys
|
231 |
)
|
232 |
-
|
233 |
-
# Number of headlines moved after angle selection
|
234 |
-
number_of_headlines = st.selectbox("Número de Titulares", options=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], index=4)
|
235 |
-
|
236 |
-
# Temperature slider remains at 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 |
|
|
|
|
|
|
|
241 |
# Mostrar los titulares generados
|
242 |
if submit:
|
243 |
# Check if we have valid inputs
|
244 |
has_product = product.strip() != ""
|
245 |
has_audience = target_audience.strip() != ""
|
246 |
-
has_base_copy = base_copy and base_copy.strip() != ""
|
247 |
|
248 |
-
# Valid combination:
|
249 |
-
valid_inputs =
|
250 |
|
251 |
if valid_inputs and selected_formula:
|
252 |
try:
|
@@ -256,8 +233,7 @@ if submit:
|
|
256 |
product,
|
257 |
temperature,
|
258 |
selected_formula,
|
259 |
-
selected_angle
|
260 |
-
base_copy if has_base_copy else None
|
261 |
)
|
262 |
col2.markdown(f"""
|
263 |
<div class="results-container">
|
@@ -270,5 +246,5 @@ if submit:
|
|
270 |
else:
|
271 |
if not selected_formula:
|
272 |
col2.error("Por favor, selecciona una fórmula.")
|
273 |
-
|
274 |
-
col2.error("Por favor, proporciona el público objetivo y el producto
|
|
|
16 |
# Fórmulas con ejemplos y explicaciones
|
17 |
# headline_formulas dictionary has been moved to formulas/headline_formulas.py
|
18 |
|
19 |
+
def generate_headlines(number_of_headlines, target_audience, product, temperature, selected_formula, selected_angle):
|
20 |
# Crear la configuración del modelo
|
21 |
generation_config = {
|
22 |
"temperature": temperature,
|
|
|
72 |
# Iniciar el prompt con las instrucciones del sistema
|
73 |
headlines_instruction = f"{system_prompt}\n\n"
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
# Añadir instrucciones de ángulo solo si no es "NINGUNO"
|
76 |
if selected_angle != "NINGUNO":
|
77 |
headlines_instruction += f"""
|
|
|
79 |
INSTRUCCIONES DE ÁNGULO ESPECÍFICAS:
|
80 |
{angles[selected_angle]["instruction"]}
|
81 |
|
82 |
+
IMPORTANTE: El ángulo {selected_angle} debe aplicarse como una "capa de estilo" sobre la estructura de la fórmula:
|
83 |
+
1. Mantén la estructura base de la fórmula intacta
|
84 |
+
2. Aplica el tono y estilo del ángulo {selected_angle}
|
85 |
+
3. Asegura que cada elemento de la fórmula refleje el ángulo
|
86 |
+
4. El ángulo afecta al "cómo" se dice, no al "qué" se dice
|
87 |
|
88 |
+
EJEMPLOS EXITOSOS DEL ÁNGULO {selected_angle}:
|
89 |
"""
|
90 |
for example in angles[selected_angle]["examples"]:
|
91 |
headlines_instruction += f"- {example}\n"
|
92 |
|
93 |
headlines_instruction += (
|
94 |
+
f"\nTu tarea es crear {number_of_headlines} titulares irresistibles para {target_audience} "
|
95 |
+
f"que capturen la atención instantáneamente y generen curiosidad sobre {product}. "
|
96 |
)
|
97 |
|
98 |
if selected_angle != "NINGUNO":
|
99 |
+
headlines_instruction += f"IMPORTANTE: Cada titular DEBE seguir el ángulo {selected_angle} de manera clara y consistente.\n\n"
|
100 |
|
101 |
headlines_instruction += (
|
102 |
+
f"Evita menciones obvias de {product} y enfócate en despertar interés genuino"
|
103 |
)
|
104 |
|
105 |
if selected_angle != "NINGUNO":
|
106 |
+
headlines_instruction += f" usando el ángulo seleccionado"
|
107 |
|
108 |
headlines_instruction += ".\n\n"
|
109 |
|
110 |
headlines_instruction += (
|
111 |
+
f"IMPORTANTE: Estudia cuidadosamente estos ejemplos de la fórmula seleccionada. "
|
112 |
+
f"Cada ejemplo representa el estilo y estructura a seguir"
|
113 |
)
|
114 |
|
115 |
if selected_angle != "NINGUNO":
|
116 |
+
headlines_instruction += f", adaptados al ángulo {selected_angle}"
|
117 |
|
118 |
headlines_instruction += ":\n\n"
|
119 |
|
120 |
+
# Agregar 5 ejemplos aleatorios de la fórmula
|
121 |
random_examples = random.sample(selected_formula['examples'], min(5, len(selected_formula['examples'])))
|
122 |
|
123 |
+
headlines_instruction += "EJEMPLOS DE LA FÓRMULA A SEGUIR:\n"
|
124 |
for i, example in enumerate(random_examples, 1):
|
125 |
headlines_instruction += f"{i}. {example}\n"
|
126 |
|
127 |
+
headlines_instruction += "\nINSTRUCCIONES ESPECÍFICAS:\n"
|
128 |
+
headlines_instruction += "1. Mantén la misma estructura y longitud que los ejemplos anteriores\n"
|
129 |
+
headlines_instruction += "2. Usa el mismo tono y estilo de escritura\n"
|
130 |
+
headlines_instruction += "3. Replica los patrones de construcción de frases\n"
|
131 |
+
headlines_instruction += "4. Conserva el nivel de especificidad y detalle\n"
|
132 |
+
headlines_instruction += f"5. Adapta el contenido para {target_audience} manteniendo la esencia de los ejemplos\n\n"
|
133 |
|
134 |
+
headlines_instruction += f"FÓRMULA A SEGUIR:\n{selected_formula['description']}\n\n"
|
135 |
|
136 |
+
# CORRECTO (con indentación):
|
137 |
if selected_angle != "NINGUNO":
|
138 |
headlines_instruction += f"""
|
139 |
+
RECORDATORIO FINAL:
|
140 |
+
1. Sigue la estructura de la fórmula seleccionada
|
141 |
+
2. Aplica el ángulo como una "capa de estilo"
|
142 |
+
3. Mantén la coherencia entre fórmula y ángulo
|
143 |
+
4. Asegura que cada titular refleje ambos elementos
|
144 |
+
|
145 |
+
GENERA AHORA:
|
146 |
+
Crea {number_of_headlines} titulares que sigan fielmente el estilo y estructura de los ejemplos mostrados.
|
147 |
"""
|
148 |
else:
|
149 |
headlines_instruction += f"""
|
150 |
+
GENERA AHORA:
|
151 |
+
Crea {number_of_headlines} titulares que sigan fielmente el estilo y estructura de los ejemplos mostrados.
|
152 |
"""
|
153 |
|
154 |
+
# Enviar el mensaje al modelo (sin condiciones de imagen)
|
155 |
chat_session = model.start_chat(
|
156 |
history=[
|
157 |
{
|
|
|
192 |
with col1:
|
193 |
target_audience = st.text_input("¿Quién es tu público objetivo?", placeholder="Ejemplo: Estudiantes Universitarios")
|
194 |
product = st.text_input("¿Qué producto tienes en mente?", placeholder="Ejemplo: Curso de Inglés")
|
195 |
+
number_of_headlines = st.selectbox("Número de Titulares", options=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], index=4)
|
196 |
+
|
|
|
|
|
197 |
# Crear un único acordeón para fórmula, creatividad y ángulo
|
198 |
with st.expander("Personaliza tus titulares"):
|
199 |
+
temperature = st.slider("Creatividad", min_value=0.0, max_value=2.0, value=1.0, step=0.1)
|
200 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
selected_formula_key = st.selectbox(
|
202 |
"Selecciona una fórmula para tus titulares",
|
203 |
options=list(headline_formulas.keys())
|
204 |
)
|
205 |
+
|
206 |
+
# Automatically use the keys from the angles dictionary
|
207 |
+
# Make sure "NINGUNO" appears first, then the rest alphabetically
|
208 |
angle_keys = ["NINGUNO"] + sorted([key for key in angles.keys() if key != "NINGUNO"])
|
209 |
selected_angle = st.selectbox(
|
210 |
"Selecciona el ángulo para tus titulares",
|
211 |
options=angle_keys
|
212 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
selected_formula = headline_formulas[selected_formula_key]
|
215 |
|
216 |
+
# Botón de enviar
|
217 |
+
submit = st.button("Generar Titulares")
|
218 |
+
|
219 |
# Mostrar los titulares generados
|
220 |
if submit:
|
221 |
# Check if we have valid inputs
|
222 |
has_product = product.strip() != ""
|
223 |
has_audience = target_audience.strip() != ""
|
|
|
224 |
|
225 |
+
# Valid combination: Product + Audience
|
226 |
+
valid_inputs = has_product and has_audience
|
227 |
|
228 |
if valid_inputs and selected_formula:
|
229 |
try:
|
|
|
233 |
product,
|
234 |
temperature,
|
235 |
selected_formula,
|
236 |
+
selected_angle
|
|
|
237 |
)
|
238 |
col2.markdown(f"""
|
239 |
<div class="results-container">
|
|
|
246 |
else:
|
247 |
if not selected_formula:
|
248 |
col2.error("Por favor, selecciona una fórmula.")
|
249 |
+
else:
|
250 |
+
col2.error("Por favor, proporciona el público objetivo y el producto.")
|