Spaces:
Sleeping
Sleeping
Update formulas.py
Browse files- formulas.py +56 -6
formulas.py
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
def create_offer_instruction(avatar_description, product_name, selected_formula_name):
|
| 2 |
"""
|
| 3 |
Creates instructions for generating an offer based on the selected formula.
|
|
@@ -85,6 +90,7 @@ SPECIFIC INSTRUCTIONS FOR THIS FORMULA:
|
|
| 85 |
- The hook MUST address the SAME problem that your promise will solve
|
| 86 |
|
| 87 |
Choose randomly from these statement hooks and CUSTOMIZE for your avatar:
|
|
|
|
| 88 |
- "9 de cada 10 [avatar's field] fracasan en sus primeros 6 meses por este error."
|
| 89 |
- "Lo que nadie te dice sobre [avatar's challenge] es que la mayoría fracasa en los primeros 3 meses."
|
| 90 |
- "El secreto que [competitors/industry] no quieren que sepas sobre [avatar's goal]."
|
|
@@ -184,13 +190,22 @@ This is the most important part. You must create a specific, quantifiable promis
|
|
| 184 |
#### 3 **Benefit + Authority + Time or Effort**
|
| 185 |
In this part, we explain the result they will obtain, supported by an authority factor (proven method, studies, experience, validations) and establishing a time frame or necessary effort to achieve it.
|
| 186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
**Incorrect example:**
|
| 188 |
"Grow your business with our strategy." (Doesn't say how long it will take or how reliable the strategy is).
|
| 189 |
|
| 190 |
-
**Correct
|
| 191 |
-
"
|
| 192 |
-
|
| 193 |
-
|
|
|
|
|
|
|
| 194 |
|
| 195 |
---
|
| 196 |
|
|
@@ -199,9 +214,44 @@ This format clearly states the benefit, backs up the solution with authority, an
|
|
| 199 |
|
| 200 |
[QUANTIFIABLE PROMISE IN ALL CAPS]
|
| 201 |
|
| 202 |
-
[Benefit
|
| 203 |
""",
|
| 204 |
-
"examples": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 205 |
},
|
| 206 |
"Fórmula Sueño-Obstáculo": {
|
| 207 |
"description": """
|
|
|
|
| 1 |
+
# The function create_offer_instruction remains unchanged
|
| 2 |
+
# Remove the random import since we no longer need it
|
| 3 |
+
# import random
|
| 4 |
+
|
| 5 |
+
# Add this function at the beginning of the file
|
| 6 |
def create_offer_instruction(avatar_description, product_name, selected_formula_name):
|
| 7 |
"""
|
| 8 |
Creates instructions for generating an offer based on the selected formula.
|
|
|
|
| 90 |
- The hook MUST address the SAME problem that your promise will solve
|
| 91 |
|
| 92 |
Choose randomly from these statement hooks and CUSTOMIZE for your avatar:
|
| 93 |
+
- "El 83% de los [avatar's profession/role] pierden [specific resource] en [specific activity] que nadie aprovecha."
|
| 94 |
- "9 de cada 10 [avatar's field] fracasan en sus primeros 6 meses por este error."
|
| 95 |
- "Lo que nadie te dice sobre [avatar's challenge] es que la mayoría fracasa en los primeros 3 meses."
|
| 96 |
- "El secreto que [competitors/industry] no quieren que sepas sobre [avatar's goal]."
|
|
|
|
| 190 |
#### 3 **Benefit + Authority + Time or Effort**
|
| 191 |
In this part, we explain the result they will obtain, supported by an authority factor (proven method, studies, experience, validations) and establishing a time frame or necessary effort to achieve it.
|
| 192 |
|
| 193 |
+
**Structure Formats:**
|
| 194 |
+
1. "[Feature] para que puedas [Benefit] con lo que [Meaning]"
|
| 195 |
+
2. "Con [Feature] podrás [Benefit] permitiéndote [Meaning]"
|
| 196 |
+
3. "Gracias a [Feature] lograrás [Benefit] haciendo que [Meaning]"
|
| 197 |
+
4. "Mediante [Feature] conseguirás [Benefit] lo que significa [Meaning]"
|
| 198 |
+
5. "Usando [Feature] alcanzarás [Benefit] transformando [Meaning]"
|
| 199 |
+
|
| 200 |
**Incorrect example:**
|
| 201 |
"Grow your business with our strategy." (Doesn't say how long it will take or how reliable the strategy is).
|
| 202 |
|
| 203 |
+
**Correct examples:**
|
| 204 |
+
"El Sistema de emails persuasivos para que puedas convertir lectores en clientes con lo que multiplicarás tus ventas en solo 30 días."
|
| 205 |
+
"Con nuestra metodología de copywriting podrás crear ofertas irresistibles permitiéndote aumentar tu tasa de conversión en un 200% con solo 15 minutos al día."
|
| 206 |
+
"Gracias a nuestro framework de contenido lograrás posicionarte como autoridad haciendo que tu audiencia te busque a ti en lugar de a tu competencia."
|
| 207 |
+
"Mediante nuestro sistema de automatización conseguirás generar ventas mientras duermes lo que significa libertad financiera real en menos de 90 días."
|
| 208 |
+
"Usando nuestra estrategia de redes sociales alcanzarás 10.000 seguidores cualificados transformando tu presencia digital en una máquina de generación de leads."
|
| 209 |
|
| 210 |
---
|
| 211 |
|
|
|
|
| 214 |
|
| 215 |
[QUANTIFIABLE PROMISE IN ALL CAPS]
|
| 216 |
|
| 217 |
+
[Choose one of the 5 structure formats for Benefit + Authority + Time or Effort]"
|
| 218 |
""",
|
| 219 |
+
"examples": [
|
| 220 |
+
# Example 1
|
| 221 |
+
"""El 83% de los emprendedores pierden dinero en anuncios que nadie convierte.
|
| 222 |
+
|
| 223 |
+
CONVIERTE EL 30% DE TUS VISITANTES EN COMPRADORES Y REDUCE TU COSTO DE ADQUISICIÓN A LA MITAD EN SOLO 14 DÍAS.
|
| 224 |
+
|
| 225 |
+
El Sistema de copywriting persuasivo para que puedas transformar visitantes en clientes con lo que multiplicarás tu ROI en menos de dos semanas.""",
|
| 226 |
+
|
| 227 |
+
# Example 2
|
| 228 |
+
"""Tu lista de email está tan muerta que hasta los mensajes de spam tienen más aperturas.
|
| 229 |
+
|
| 230 |
+
AUMENTA TU TASA DE APERTURA AL 35% Y GENERA $2.500 EN VENTAS CON CADA CAMPAÑA DE EMAIL QUE ENVIES.
|
| 231 |
+
|
| 232 |
+
Con nuestra metodología de asuntos irresistibles podrás captar la atención inmediata permitiéndote convertir suscriptores dormidos en compradores activos en solo 30 minutos por campaña.""",
|
| 233 |
+
|
| 234 |
+
# Example 3
|
| 235 |
+
"""Mientras algunos facturan $10,000 al mes, tú sigues preguntándote por qué nadie compra.
|
| 236 |
+
|
| 237 |
+
FACTURA EL DOBLE SIN BAJAR TUS PRECIOS Y CONVIERTE EL 80% DE TUS PROPUESTAS EN CLIENTES PAGANDO.
|
| 238 |
+
|
| 239 |
+
Gracias a nuestro framework de propuestas de alto valor lograrás posicionarte como la opción premium haciendo que los clientes te elijan a ti sin cuestionar tus tarifas.""",
|
| 240 |
+
|
| 241 |
+
# Example 4
|
| 242 |
+
"""Lo que nadie te dice sobre el marketing de contenidos es que el 95% nunca genera un solo cliente.
|
| 243 |
+
|
| 244 |
+
MULTIPLICA POR 5 TUS COMENTARIOS Y CONSIGUE 3 CLIENTES NUEVOS CADA SEMANA CON SOLO 20 MINUTOS DE TRABAJO DIARIO.
|
| 245 |
+
|
| 246 |
+
Mediante nuestro sistema de contenido estratégico conseguirás crear publicaciones que convierten lo que significa un flujo constante de leads cualificados sin invertir en publicidad.""",
|
| 247 |
+
|
| 248 |
+
# Example 5
|
| 249 |
+
"""Ah, otro d��a más publicando en redes sociales y hablándole a las paredes... Qué divertido.
|
| 250 |
+
|
| 251 |
+
CONSIGUE 100 NUEVOS SEGUIDORES CUALIFICADOS POR SEMANA Y CONVIERTE EL 10% EN LEADS INTERESADOS EN TUS SERVICIOS.
|
| 252 |
+
|
| 253 |
+
Usando nuestra estrategia de contenido viral alcanzarás visibilidad exponencial transformando tu presencia en redes en un canal de captación automático en menos de 30 días."""
|
| 254 |
+
]
|
| 255 |
},
|
| 256 |
"Fórmula Sueño-Obstáculo": {
|
| 257 |
"description": """
|