JeCabrera commited on
Commit
4a53c7e
·
verified ·
1 Parent(s): 265f408

Update prompts.py

Browse files
Files changed (1) hide show
  1. prompts.py +3 -3
prompts.py CHANGED
@@ -1,4 +1,4 @@
1
- from format.format import buyer_persona_formats, what_we_really_want, validation_questions
2
 
3
  def get_system_prompt():
4
  """
@@ -73,8 +73,8 @@ def create_instruction(product_service, skills, target_audience=None, gender=Non
73
  what_we_want = what_we_really_want["format"]
74
  validation = validation_questions["buyer_persona"]
75
 
76
- # Get the bullet point formatting instructions from the dictionary
77
- format_instruction = buyer_persona_formats["bullet_format"]
78
 
79
  # Obtener el prompt principal
80
  system_prompt = get_system_prompt()
 
1
+ from format.format import buyer_persona_formats, what_we_really_want, validation_questions, bullet_format_instructions
2
 
3
  def get_system_prompt():
4
  """
 
73
  what_we_want = what_we_really_want["format"]
74
  validation = validation_questions["buyer_persona"]
75
 
76
+ # Cambio aquí: usar la variable importada directamente en lugar de obtenerla del diccionario
77
+ format_instruction = bullet_format_instructions
78
 
79
  # Obtener el prompt principal
80
  system_prompt = get_system_prompt()