Spaces:
Running
Running
Update format/format.py
Browse files- format/format.py +35 -3
format/format.py
CHANGED
@@ -33,7 +33,39 @@ buyer_persona_formats = {
|
|
33 |
**Lo que realmente quiere**: [lo que realmente quiere]
|
34 |
""",
|
35 |
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
La persona **"Emprendedora Inspirada"** es una **mujer** entre **30 y 40 años** que busca alcanzar el éxito tanto en su vida personal como profesional. Es una **emprendedora independiente** que constantemente se esfuerza por construir su marca y hacer crecer su negocio, pero también está abierta a colaborar con otros para lograr sus objetivos.
|
38 |
|
39 |
**Personalidad**: MAGA (MAG)
|
@@ -120,9 +152,9 @@ ENSURE there is an EMPTY LINE between each bullet point to create proper paragra
|
|
120 |
DO NOT use hyphens (-) or numbers for these lists.
|
121 |
|
122 |
\n\nCRITICAL - HANDLING "NINGUNO" LEVEL:
|
123 |
-
If the user selects "Ninguno" as the consciousness level, you MUST completely OMIT the "Nivel de conciencia" section from your response. Do not include this section at all in the generated profile.
|
124 |
|
125 |
-
For
|
126 |
|
127 |
When the user selects "Ninguno", your response should NOT contain any line starting with "**Nivel de conciencia**". Skip directly from "**¿Cómo es?**" to "**Miedos**" without any mention of consciousness level.
|
128 |
"""
|
|
|
33 |
**Lo que realmente quiere**: [lo que realmente quiere]
|
34 |
""",
|
35 |
|
36 |
+
# Añadimos un formato base sin la sección de nivel de conciencia
|
37 |
+
"base_format_without_consciousness": """
|
38 |
+
La persona **"[nombre del avatar]"** es **[género]** entre **[rango de edad]** que busca [lo que está buscando]. Es [lo que es y quiere].
|
39 |
+
|
40 |
+
**Personalidad**: [su tipo de personalidad]
|
41 |
+
|
42 |
+
**Valores**: [lo que valora]
|
43 |
+
|
44 |
+
**Qué le emociona**: [lo que le emociona]
|
45 |
+
|
46 |
+
**¿Cómo es?**: [cómo es]
|
47 |
+
|
48 |
+
**Miedos**: [sus miedos]
|
49 |
+
|
50 |
+
**Inseguridades**: [sus inseguridades]
|
51 |
+
|
52 |
+
**Culpa**: [su culpa]
|
53 |
+
|
54 |
+
**Problemas**: [sus problemas]
|
55 |
+
|
56 |
+
**Frustraciones**: [sus frustraciones]
|
57 |
+
|
58 |
+
**¿En qué está dispuesto/a a invertir?**: [en qué está dispuesto/a a invertir]
|
59 |
+
|
60 |
+
**Intereses**: [sus intereses]
|
61 |
+
|
62 |
+
**Deseos**: [sus deseos]
|
63 |
+
|
64 |
+
**Lo que realmente quiere**: [lo que realmente quiere]
|
65 |
+
""",
|
66 |
+
|
67 |
+
# El resto del código permanece igual
|
68 |
+
"example": """
|
69 |
La persona **"Emprendedora Inspirada"** es una **mujer** entre **30 y 40 años** que busca alcanzar el éxito tanto en su vida personal como profesional. Es una **emprendedora independiente** que constantemente se esfuerza por construir su marca y hacer crecer su negocio, pero también está abierta a colaborar con otros para lograr sus objetivos.
|
70 |
|
71 |
**Personalidad**: MAGA (MAG)
|
|
|
152 |
DO NOT use hyphens (-) or numbers for these lists.
|
153 |
|
154 |
\n\nCRITICAL - HANDLING "NINGUNO" LEVEL:
|
155 |
+
If the user selects "Ninguno" (and ONLY "Ninguno") as the consciousness level, you MUST completely OMIT the "Nivel de conciencia" section from your response. Do not include this section at all in the generated profile.
|
156 |
|
157 |
+
For ALL other consciousness levels, including "Nivel 1 - Desconocido", you MUST include the "Nivel de conciencia" section with the appropriate level.
|
158 |
|
159 |
When the user selects "Ninguno", your response should NOT contain any line starting with "**Nivel de conciencia**". Skip directly from "**¿Cómo es?**" to "**Miedos**" without any mention of consciousness level.
|
160 |
"""
|