Spaces:
Sleeping
Sleeping
Update format/format.py
Browse files- format/format.py +28 -53
format/format.py
CHANGED
@@ -173,61 +173,36 @@ buyer_persona_formats = {
|
|
173 |
"""
|
174 |
}
|
175 |
|
176 |
-
#
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
"
|
182 |
-
"
|
183 |
-
"
|
184 |
-
"
|
185 |
-
"
|
186 |
-
"
|
187 |
-
"
|
188 |
-
"
|
189 |
-
"
|
190 |
-
"
|
191 |
-
"Prove our detractors wrong",
|
192 |
-
"Be attractive and charming to others",
|
193 |
-
"Leave a lasting legacy",
|
194 |
-
"Higher status among our peers",
|
195 |
-
"Have a life full of comforts and luxuries",
|
196 |
-
"Be accepted by a social group or community",
|
197 |
-
"Be respected and admired for our intelligence, skills, or talents",
|
198 |
-
"Be true to ourselves and reach our full potential",
|
199 |
-
"Climb the social hierarchy",
|
200 |
-
"Establish close and lasting relationships with friends and family",
|
201 |
-
"Feel part of a group or community and be valued and appreciated by others",
|
202 |
-
"Be appreciated for our actions and receive gratitude from others"
|
203 |
],
|
204 |
"format": """
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
- Prove our detractors wrong
|
219 |
-
- Be attractive and charming to others
|
220 |
-
- Leave a lasting legacy
|
221 |
-
- Higher status among our peers
|
222 |
-
- Have a life full of comforts and luxuries
|
223 |
-
- Be accepted by a social group or community
|
224 |
-
- Be respected and admired for our intelligence, skills, or talents
|
225 |
-
- Be true to ourselves and reach our full potential
|
226 |
-
- Climb the social hierarchy
|
227 |
-
- Establish close and lasting relationships with friends and family
|
228 |
-
- Feel part of a group or community and be valued and appreciated by others
|
229 |
-
- Be appreciated for our actions and receive gratitude from others
|
230 |
-
"""
|
231 |
}
|
232 |
|
233 |
def get_format_by_consciousness_level(level):
|
|
|
173 |
"""
|
174 |
}
|
175 |
|
176 |
+
# After the what_we_really_want dictionary, add the validation_questions dictionary
|
177 |
+
|
178 |
+
# Adding validation_questions dictionary
|
179 |
+
validation_questions = {
|
180 |
+
"questions": [
|
181 |
+
"¿Qué tan bien conoces a tu cliente ideal?",
|
182 |
+
"¿Cuáles son los principales problemas que enfrenta tu cliente ideal?",
|
183 |
+
"¿Qué soluciones está buscando tu cliente ideal?",
|
184 |
+
"¿Qué nivel de conciencia tiene tu cliente ideal sobre su problema?",
|
185 |
+
"¿Qué miedos e inseguridades tiene tu cliente ideal?",
|
186 |
+
"¿Qué frustraciones experimenta tu cliente ideal?",
|
187 |
+
"¿En qué está dispuesto a invertir tu cliente ideal?",
|
188 |
+
"¿Cuáles son los valores más importantes para tu cliente ideal?",
|
189 |
+
"¿Qué deseos profundos tiene tu cliente ideal?",
|
190 |
+
"¿Qué es lo que realmente quiere tu cliente ideal?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
],
|
192 |
"format": """
|
193 |
+
**Preguntas de validación para tu cliente ideal:**
|
194 |
+
|
195 |
+
1. ¿Qué tan bien conoces a tu cliente ideal?
|
196 |
+
2. ¿Cuáles son los principales problemas que enfrenta tu cliente ideal?
|
197 |
+
3. ¿Qué soluciones está buscando tu cliente ideal?
|
198 |
+
4. ¿Qué nivel de conciencia tiene tu cliente ideal sobre su problema?
|
199 |
+
5. ¿Qué miedos e inseguridades tiene tu cliente ideal?
|
200 |
+
6. ¿Qué frustraciones experimenta tu cliente ideal?
|
201 |
+
7. ¿En qué está dispuesto a invertir tu cliente ideal?
|
202 |
+
8. ¿Cuáles son los valores más importantes para tu cliente ideal?
|
203 |
+
9. ¿Qué deseos profundos tiene tu cliente ideal?
|
204 |
+
10. ¿Qué es lo que realmente quiere tu cliente ideal?
|
205 |
+
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
}
|
207 |
|
208 |
def get_format_by_consciousness_level(level):
|