JeCabrera commited on
Commit
75421d6
verified
1 Parent(s): 03da2b0

Update format/format.py

Browse files
Files changed (1) hide show
  1. format/format.py +57 -1
format/format.py CHANGED
@@ -173,7 +173,63 @@ buyer_persona_formats = {
173
  """
174
  }
175
 
176
- # Funci贸n para seleccionar el formato adecuado seg煤n el nivel de conciencia
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  def get_format_by_consciousness_level(level):
178
  """
179
  Devuelve el formato adecuado seg煤n el nivel de conciencia seleccionado.
 
173
  """
174
  }
175
 
176
+ # Adding the what_we_really_want dictionary
177
+ what_we_really_want = {
178
+ "list": [
179
+ "Increase our potential",
180
+ "Escape danger",
181
+ "Free ourselves from fear and guilt",
182
+ "Silence those who doubt us",
183
+ "Validate our feelings",
184
+ "Power over others",
185
+ "Advantages over our rivals",
186
+ "Be free from the consequences",
187
+ "Have more time dedicated to what we love",
188
+ "Less time dedicated to what we hate",
189
+ "Happiness and satisfaction",
190
+ "Prove we are right",
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
+ **[WHAT WE REALLY WANT]**
206
+ - Increase our potential
207
+ - Escape danger
208
+ - Free ourselves from fear and guilt
209
+ - Silence those who doubt us
210
+ - Validate our feelings
211
+ - Power over others
212
+ - Advantages over our rivals
213
+ - Be free from the consequences
214
+ - Have more time dedicated to what we love
215
+ - Less time dedicated to what we hate
216
+ - Happiness and satisfaction
217
+ - Prove we are right
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):
234
  """
235
  Devuelve el formato adecuado seg煤n el nivel de conciencia seleccionado.