Spaces:
Sleeping
Sleeping
Update bonuses/generator.py
Browse files- bonuses/generator.py +152 -120
bonuses/generator.py
CHANGED
|
@@ -1,120 +1,152 @@
|
|
| 1 |
-
def create_bonus_instruction(avatar_description=None, product_name=None, selected_formula_name=None):
|
| 2 |
-
"""
|
| 3 |
-
Creates instructions for generating compelling bonuses that complement the main offer.
|
| 4 |
-
|
| 5 |
-
Args:
|
| 6 |
-
avatar_description: Description of the target audience
|
| 7 |
-
product_name: Name of the product or service
|
| 8 |
-
selected_formula_name: Name of the formula used for the main offer
|
| 9 |
-
|
| 10 |
-
Returns:
|
| 11 |
-
str: Complete instruction for generating bonuses
|
| 12 |
-
"""
|
| 13 |
-
# Base instruction for bonus generation
|
| 14 |
-
base_instruction = """
|
| 15 |
-
|
| 16 |
-
BONUS CREATION SECTION:
|
| 17 |
-
|
| 18 |
-
You are now tasked with creating compelling bonuses that complement the main offer and overcome purchase objections.
|
| 19 |
-
|
| 20 |
-
"""
|
| 21 |
-
|
| 22 |
-
# Detailed instructions for creating effective bonuses
|
| 23 |
-
bonus_instructions = """
|
| 24 |
-
SPECIFIC INSTRUCTIONS FOR CREATING BONUSES:
|
| 25 |
-
|
| 26 |
-
1
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
-
|
| 60 |
-
-
|
| 61 |
-
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def create_bonus_instruction(avatar_description=None, product_name=None, selected_formula_name=None):
|
| 2 |
+
"""
|
| 3 |
+
Creates instructions for generating compelling bonuses that complement the main offer.
|
| 4 |
+
|
| 5 |
+
Args:
|
| 6 |
+
avatar_description: Description of the target audience
|
| 7 |
+
product_name: Name of the product or service
|
| 8 |
+
selected_formula_name: Name of the formula used for the main offer
|
| 9 |
+
|
| 10 |
+
Returns:
|
| 11 |
+
str: Complete instruction for generating bonuses
|
| 12 |
+
"""
|
| 13 |
+
# Base instruction for bonus generation
|
| 14 |
+
base_instruction = """
|
| 15 |
+
|
| 16 |
+
BONUS CREATION SECTION:
|
| 17 |
+
|
| 18 |
+
You are now tasked with creating compelling bonuses that complement the main offer and overcome purchase objections.
|
| 19 |
+
|
| 20 |
+
"""
|
| 21 |
+
|
| 22 |
+
# Detailed instructions for creating effective bonuses with the new structure
|
| 23 |
+
bonus_instructions = """
|
| 24 |
+
SPECIFIC INSTRUCTIONS FOR CREATING BONUSES:
|
| 25 |
+
|
| 26 |
+
STEP 1: ANALYZE THE AVATAR DEEPLY
|
| 27 |
+
- Identify their specific pains, fears, objections, limiting beliefs, and problems
|
| 28 |
+
- Look for emotional triggers that might prevent them from taking action
|
| 29 |
+
- Determine what keeps them awake at night regarding this problem
|
| 30 |
+
- Identify what they've tried before that hasn't worked
|
| 31 |
+
- Understand their timeline expectations and what might make them hesitate
|
| 32 |
+
|
| 33 |
+
STEP 2: ENUMERATE PROBLEMS AND PROPOSE SOLUTIONS
|
| 34 |
+
For each problem identified in Step 1:
|
| 35 |
+
- Clearly articulate the specific problem/objection
|
| 36 |
+
- Propose a concrete solution that addresses it directly
|
| 37 |
+
- Consider how this solution could be packaged as a high-value, low-effort bonus
|
| 38 |
+
- Focus on tools, templates, checklists rather than additional training
|
| 39 |
+
- Ensure each solution provides quick wins and immediate value
|
| 40 |
+
|
| 41 |
+
STEP 3: CREATE COMPELLING BONUSES BASED ON SOLUTIONS
|
| 42 |
+
For each solution, create a bonus that:
|
| 43 |
+
- Has an attractive, benefit-driven name
|
| 44 |
+
- Addresses a specific objection or accelerates results
|
| 45 |
+
- Provides tools/templates that reduce effort and time
|
| 46 |
+
- Includes a clear monetary value statement
|
| 47 |
+
- Contains an element of scarcity or urgency
|
| 48 |
+
|
| 49 |
+
STEP 4: STRUCTURE EACH BONUS FOLLOWING THIS FRAMEWORK
|
| 50 |
+
- Start with "BONO #X: [NOMBRE ATRACTIVO]" in bold
|
| 51 |
+
- Describe what it is and how it helps in 2-4 sentences
|
| 52 |
+
- Explain how it overcomes a specific objection or accelerates results
|
| 53 |
+
- Include a monetary value statement (e.g., "Valor: $X")
|
| 54 |
+
- Add a scarcity/urgency element (limited availability or time-sensitive)
|
| 55 |
+
|
| 56 |
+
CRITICAL BONUS CREATION GUIDELINES:
|
| 57 |
+
|
| 58 |
+
1. COMPLEMENTARY VALUE:
|
| 59 |
+
- Each bonus must complement (not compete with) the main offer: {product_name}
|
| 60 |
+
- Tools and checklists are BETTER than additional training (less effort/time = higher perceived value)
|
| 61 |
+
- The combined perceived value of all bonuses should EXCEED the value of the main offer
|
| 62 |
+
|
| 63 |
+
2. OBJECTION HANDLING:
|
| 64 |
+
- Each bonus must address a specific concern or obstacle in the prospect's mind
|
| 65 |
+
- Demonstrate why their limiting beliefs about success are incorrect
|
| 66 |
+
- Solve their "next problem" before they encounter it
|
| 67 |
+
- Show how the bonus removes friction from implementing the main offer
|
| 68 |
+
|
| 69 |
+
3. PSYCHOLOGICAL TRIGGERS:
|
| 70 |
+
- Create a value discrepancy between price and total package worth
|
| 71 |
+
- Communicate subconsciously that the main offer must be extremely valuable
|
| 72 |
+
- Add scarcity and urgency elements to each bonus to maximize impact
|
| 73 |
+
- Focus on immediate implementation and quick wins
|
| 74 |
+
|
| 75 |
+
4. BONUS TYPES TO PRIORITIZE:
|
| 76 |
+
- Tools that simplify implementation of the main offer
|
| 77 |
+
- Templates that save time and ensure success
|
| 78 |
+
- Checklists that prevent mistakes and ensure completion
|
| 79 |
+
- Quick-start guides that accelerate initial results
|
| 80 |
+
- Swipe files or examples that can be immediately used
|
| 81 |
+
- Limited access to exclusive resources or communities
|
| 82 |
+
- Personal feedback or review opportunities
|
| 83 |
+
|
| 84 |
+
5. SCARCITY AND URGENCY EXAMPLES:
|
| 85 |
+
a) Scarcity-based bonuses:
|
| 86 |
+
- "Solo las personas que se inscriban en este programa tendrán acceso a estos bonos que nunca están a la venta en otro lugar."
|
| 87 |
+
- "Solo quedan 3 cupos para mi sesión estratégica valorada en $500, si compras hoy, puedes obtener uno de los últimos lugares como bono."
|
| 88 |
+
|
| 89 |
+
b) Urgency-based bonuses:
|
| 90 |
+
- "Si compras hoy, agregaré el bono XYZ que normalmente cuesta $1,000, completamente gratis. Lo hago porque quiero premiar a quienes toman acción inmediata."
|
| 91 |
+
- "Este bono estará disponible solo durante las próximas 48 horas, después de ese tiempo será retirado permanentemente."
|
| 92 |
+
|
| 93 |
+
FORMATTING REQUIREMENTS:
|
| 94 |
+
- Start with a brief introduction about the additional value (max 2 sentences)
|
| 95 |
+
- Format each bonus as: "BONO #1: [Nombre Atractivo]" in bold
|
| 96 |
+
- Follow with 2-4 sentences describing the bonus and its specific benefit
|
| 97 |
+
- Include a value statement for each bonus
|
| 98 |
+
- Add an urgency or scarcity element for each bonus
|
| 99 |
+
- End with a total value statement for all bonuses combined
|
| 100 |
+
|
| 101 |
+
EXAMPLES OF EFFECTIVE BONUSES:
|
| 102 |
+
|
| 103 |
+
EXAMPLE 1:
|
| 104 |
+
Y eso no es todo, también disfrutarás de estos beneficios adicionales:
|
| 105 |
+
|
| 106 |
+
**BONO #1: Kit de Plantillas de Email "Respuesta Inmediata"**
|
| 107 |
+
5 plantillas de email probadas que generan respuestas en menos de 24 horas. Estas plantillas han sido optimizadas con técnicas de psicología persuasiva y han aumentado las tasas de respuesta en un 78% en pruebas con más de 1,000 envíos. Valor: $197 - Disponible solo para los primeros 50 inscritos.
|
| 108 |
+
|
| 109 |
+
**BONO #2: Checklist "Propuesta Perfecta"**
|
| 110 |
+
Una guía paso a paso con 27 puntos de verificación para asegurar que tus propuestas comerciales sean irresistibles. Elimina los errores comunes que hacen que los clientes digan "lo pensaré" y aumenta tu tasa de cierre en un 35%. Valor: $97 - Acceso por tiempo limitado.
|
| 111 |
+
|
| 112 |
+
**BONO #3: Sesión Estratégica Personalizada de 30 Minutos**
|
| 113 |
+
Una consulta privada donde analizaremos tu situación específica y crearemos un plan de acción personalizado. Identificaremos tus mayores oportunidades de crecimiento y los obstáculos que debes eliminar primero. Valor: $250 - Solo 10 espacios disponibles cada mes.
|
| 114 |
+
|
| 115 |
+
Valor total de los bonos: $544 - Todo incluido hoy con tu inscripción.
|
| 116 |
+
|
| 117 |
+
EXAMPLE 2:
|
| 118 |
+
Como parte de esta oferta especial, recibirás estos valiosos recursos adicionales:
|
| 119 |
+
|
| 120 |
+
**BONO #1: Biblioteca de Scripts de Ventas "Cierre Garantizado"**
|
| 121 |
+
10 scripts de conversación probados para superar las 7 objeciones más comunes en tu industria. Cada script incluye respuestas específicas, preguntas de control y frases de transición que han generado más de $1.2 millones en ventas. Valor: $297 - Disponible solo esta semana.
|
| 122 |
+
|
| 123 |
+
**BONO #2: Software "Cliente Tracker Pro"**
|
| 124 |
+
Una herramienta exclusiva que automatiza el seguimiento de prospectos y te alerta exactamente cuándo contactarlos para maximizar conversiones. Reduce el tiempo de gestión en un 68% y aumenta la tasa de conversión en un 23%. Valor: $197/año - Acceso gratuito por 12 meses.
|
| 125 |
+
|
| 126 |
+
**BONO #3: Comunidad VIP "Crecimiento Acelerado"**
|
| 127 |
+
Acceso a nuestro grupo privado con más de 500 profesionales de tu industria, sesiones de preguntas semanales con expertos y biblioteca de recursos exclusivos. El 87% de los miembros reportan un aumento de ingresos en los primeros 60 días. Valor: $47/mes - Membresía gratuita por 6 meses.
|
| 128 |
+
|
| 129 |
+
**BONO #4: Análisis Competitivo Personalizado**
|
| 130 |
+
Un informe detallado que analiza a tus 3 principales competidores, identifica sus debilidades y te muestra exactamente cómo posicionarte para captar su clientela. Incluye estrategias específicas para diferenciarte inmediatamente. Valor: $497 - Solo para los primeros 25 clientes.
|
| 131 |
+
|
| 132 |
+
Valor total de bonos: $1,273 - Todo incluido hoy sin costo adicional.
|
| 133 |
+
|
| 134 |
+
EXAMPLE 3:
|
| 135 |
+
Para maximizar tus resultados, he incluido estos recursos exclusivos:
|
| 136 |
+
|
| 137 |
+
**BONO #1: Calculadora de ROI "Inversión Inteligente"**
|
| 138 |
+
Una herramienta digital que proyecta con precisión tus retornos basados en 5 años de datos de clientes reales. Te muestra exactamente cuánto ganarás y en qué plazo, eliminando la incertidumbre de tu inversión. Valor: $147 - Acceso inmediato con tu compra hoy.
|
| 139 |
+
|
| 140 |
+
**BONO #2: Masterclass "Optimización Rápida"**
|
| 141 |
+
Una sesión de 60 minutos donde te muestro los 3 ajustes que puedes implementar en 24 horas para ver resultados inmediatos. El 92% de los participantes reportan mejoras medibles en la primera semana. Valor: $197 - La grabación se elimina en 30 días.
|
| 142 |
+
|
| 143 |
+
**BONO #3: Plantillas "Listo para Implementar"**
|
| 144 |
+
Un conjunto de 15 documentos, hojas de cálculo y presentaciones que puedes personalizar en minutos para implementar lo aprendido sin demora. Ahorra más de 40 horas de trabajo de preparación. Valor: $97 - Actualizado trimestralmente solo para clientes actuales.
|
| 145 |
+
|
| 146 |
+
**BONO #4: Certificación "Especialista Verificado"**
|
| 147 |
+
Completa el programa y recibe una certificación oficial que puedes mostrar en tu perfil profesional. Nuestros certificados son reconocidos por más de 200 empresas que buscan activamente profesionales con estas habilidades. Valor: $297 - Las certificaciones se emiten solo 4 veces al año.
|
| 148 |
+
|
| 149 |
+
**BONO #5: Sesiones de "Implementación Guiada"**
|
| 150 |
+
Dos sesiones grupales mensuales donde implementamos juntos, resolvemos dudas específicas y superamos bloqueos. El 78% de quienes asisten a estas sesiones implementan el doble de rápido que quienes no lo hacen. Valor: $97/mes - Acceso por 3 meses incluido.
|
| 151 |
+
|
| 152 |
+
Valor total de bonos: $1,032 - Todo incluido con tu inversión hoy.
|