Spaces:
Running
Running
Update format/format.py
Browse files- format/format.py +38 -1
format/format.py
CHANGED
@@ -360,4 +360,41 @@ validation_questions = {
|
|
360 |
Ensure your buyer persona thoroughly addresses these questions to create an accurate profile of someone who will value and invest in your offering.
|
361 |
---
|
362 |
"""
|
363 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
Ensure your buyer persona thoroughly addresses these questions to create an accurate profile of someone who will value and invest in your offering.
|
361 |
---
|
362 |
"""
|
363 |
+
}
|
364 |
+
|
365 |
+
# Agregar un nuevo formato "Mini" al diccionario buyer_persona_formats
|
366 |
+
buyer_persona_formats["Mini"] = {
|
367 |
+
"template": """
|
368 |
+
**PERFIL MINI**
|
369 |
+
|
370 |
+
**Nombre:** [nombre]
|
371 |
+
**Edad:** [edad]
|
372 |
+
**Ocupaci贸n:** [ocupaci贸n]
|
373 |
+
|
374 |
+
**Problema principal:** [problema]
|
375 |
+
**Deseo principal:** [deseo]
|
376 |
+
**Objeci贸n principal:** [objeci贸n]
|
377 |
+
""",
|
378 |
+
"description": """
|
379 |
+
**Formato Mini**
|
380 |
+
|
381 |
+
Este formato proporciona un perfil extremadamente conciso del cliente ideal, enfoc谩ndose solo en los elementos m谩s esenciales.
|
382 |
+
|
383 |
+
**Caracter铆sticas principales:**
|
384 |
+
- Formato ultra-compacto
|
385 |
+
- Solo informaci贸n esencial
|
386 |
+
- Ideal para pruebas r谩pidas
|
387 |
+
- F谩cil de leer y comprender
|
388 |
+
""",
|
389 |
+
"example": """
|
390 |
+
**PERFIL MINI**
|
391 |
+
|
392 |
+
**Nombre:** Laura
|
393 |
+
**Edad:** 32 a帽os
|
394 |
+
**Ocupaci贸n:** Dise帽adora gr谩fica freelance
|
395 |
+
|
396 |
+
**Problema principal:** Dificultad para conseguir clientes recurrentes
|
397 |
+
**Deseo principal:** Estabilidad financiera sin sacrificar creatividad
|
398 |
+
**Objeci贸n principal:** "No tengo tiempo para marketing mientras atiendo a mis clientes actuales"
|
399 |
+
"""
|
400 |
+
}
|