JeCabrera commited on
Commit
162d991
·
verified ·
1 Parent(s): e964a3b

Update prompts.py

Browse files
Files changed (1) hide show
  1. prompts.py +35 -22
prompts.py CHANGED
@@ -86,15 +86,26 @@ def create_instruction(product_service, skills, target_audience=None, gender=Non
86
 
87
  # Instrucciones para el formato de listas
88
  format_instruction = """
89
- \n\nIMPORTANTE - FORMATO DE LISTAS:
90
- Para las secciones de Miedos, Inseguridades, Culpa, Problemas y Frustraciones, utiliza VIÑETAS (•) en lugar de guiones.
91
- Ejemplo:
 
92
  Miedos:
93
- Primer miedo
94
- Segundo miedo
95
- Tercer miedo
 
 
 
 
 
 
 
96
 
97
- NO uses guiones (-) ni números para estas listas.
 
 
 
98
  """
99
 
100
  # Añadir instrucciones sobre el nivel de conciencia del mercado
@@ -116,32 +127,34 @@ NO uses guiones (-) ni números para estas listas.
116
  description = consciousness_descriptions.get(level_key, f"Nivel de conciencia: {consciousness_level}")
117
 
118
  consciousness_instruction = f"""
119
- \n\nIMPORTANTE - NIVEL DE CONCIENCIA DEL CLIENTE: {consciousness_level.upper()}
120
  {description}
121
 
122
- Este nivel de conciencia debe DETERMINAR COMPLETAMENTE cómo piensa, siente y actúa el cliente ideal.
123
- ADAPTA TODO EL PERFIL (especialmente sus miedos, frustraciones, problemas e inseguridades) para que
124
- refleje consistentemente este nivel de conciencia.
125
  """
126
 
127
  # Modificar el formato para la sección "Lo que realmente quiere"
128
  desire_format = """
129
- \n\nPara la sección "Lo que realmente quiere", estructura la respuesta de la siguiente manera:
130
 
131
  **Lo que realmente quiere:**
132
 
133
- **Su gran deseo:** [Desarrolla aquí en un párrafo el deseo principal más importante, explicando su importancia emocional y cómo se conecta con sus miedos y aspiraciones]
 
 
 
 
 
 
 
 
 
134
 
135
- **Sus 7 deseos escondidos:**
136
- 1. [Primer deseo escondido]
137
- 2. [Segundo deseo escondido]
138
- 3. [Tercer deseo escondido]
139
- 4. [Cuarto deseo escondido]
140
- 5. [Quinto deseo escondido]
141
- 6. [Sexto deseo escondido]
142
- 7. [Séptimo deseo escondido]
143
 
144
- Selecciona estos deseos de la lista proporcionada en la referencia, eligiendo los que mejor se conecten con el perfil.
145
  """
146
 
147
  # Construir las instrucciones completas
 
86
 
87
  # Instrucciones para el formato de listas
88
  format_instruction = """
89
+ \n\nIMPORTANT - LIST FORMAT:
90
+ For the sections of Fears, Insecurities, Guilt, Problems, and Frustrations, use BULLET POINTS (•) with a LINE BREAK after each item.
91
+
92
+ Example:
93
  Miedos:
94
+ Miedo a quedarse atrás en el mercado por no dominar nuevas tecnologías.
95
+ Temor a perder oportunidades de negocio por barreras de comunicación.
96
+ Preocupación por no poder expandir su empresa internacionalmente.
97
+
98
+ The correct format is:
99
+ Inseguridades:
100
+ • Duda de su capacidad para aprender inglés a su edad y con sus responsabilidades.
101
+ • Se siente incómodo al hablar inglés en público por temor a cometer errores.
102
+ • Le preocupa no tener suficiente tiempo para dedicar al aprendizaje del inglés.
103
+ • Se compara con otros profesionales que dominan el inglés y se siente inferior.
104
 
105
+ DO NOT use this incorrect format:
106
+ Inseguridades: • Primera inseguridad • Segunda inseguridad • Tercera inseguridad
107
+
108
+ DO NOT use hyphens (-) or numbers for these lists.
109
  """
110
 
111
  # Añadir instrucciones sobre el nivel de conciencia del mercado
 
127
  description = consciousness_descriptions.get(level_key, f"Nivel de conciencia: {consciousness_level}")
128
 
129
  consciousness_instruction = f"""
130
+ \n\nIMPORTANT - CUSTOMER AWARENESS LEVEL: {consciousness_level.upper()}
131
  {description}
132
 
133
+ This awareness level must COMPLETELY DETERMINE how the ideal customer thinks, feels, and acts.
134
+ ADAPT THE ENTIRE PROFILE (especially their fears, frustrations, problems, and insecurities) to
135
+ consistently reflect this level of awareness.
136
  """
137
 
138
  # Modificar el formato para la sección "Lo que realmente quiere"
139
  desire_format = """
140
+ \n\nFor the section "Lo que realmente quiere", structure the response as follows:
141
 
142
  **Lo que realmente quiere:**
143
 
144
+ **Su gran deseo profundo:** [Develop here in a paragraph the most important underlying desire that drives this person at a deep emotional level. This should be different from the surface-level desires listed in the "Deseos" section. Explain its emotional importance and how it connects with their fears and aspirations]
145
+
146
+ **Sus 7 motivaciones ocultas:**
147
+ 1. [First hidden motivation]
148
+ 2. [Second hidden motivation]
149
+ 3. [Third hidden motivation]
150
+ 4. [Fourth hidden motivation]
151
+ 5. [Fifth hidden motivation]
152
+ 6. [Sixth hidden motivation]
153
+ 7. [Seventh hidden motivation]
154
 
155
+ IMPORTANT: The "Deseos" section should list what the person consciously wants and openly expresses. In contrast, "Lo que realmente quiere" should reveal the deeper psychological motivations that they may not even be fully aware of themselves.
 
 
 
 
 
 
 
156
 
157
+ Select these deeper motivations from the list provided in the reference, choosing those that best connect with the profile.
158
  """
159
 
160
  # Construir las instrucciones completas