Spaces:
Sleeping
Sleeping
Update prompts.py
Browse files- prompts.py +11 -1
prompts.py
CHANGED
@@ -65,7 +65,17 @@ Create a compelling offer following the formula structure exactly, adapting it t
|
|
65 |
instruction += f"\n\nGet inspired by these examples:\n{examples_text}"
|
66 |
|
67 |
# Add sophistication level guidance using the dedicated function
|
68 |
-
if sophistication_level:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
# Get basic sophistication guidance
|
70 |
base_sophistication_guidance = create_sophistication_instruction(sophistication_level)
|
71 |
|
|
|
65 |
instruction += f"\n\nGet inspired by these examples:\n{examples_text}"
|
66 |
|
67 |
# Add sophistication level guidance using the dedicated function
|
68 |
+
if sophistication_level and sophistication_level == "Nivel 1: Primera promesa fuerte":
|
69 |
+
# Get basic sophistication guidance
|
70 |
+
base_sophistication_guidance = create_sophistication_instruction(sophistication_level)
|
71 |
+
|
72 |
+
# Add formula-specific guidance for Nivel 1
|
73 |
+
formula_specific_guidance = f"\n\nFor this Level 1 market sophistication:\n- Make the hook educational or introduce the concept as new\n- Keep the promise direct, clear and impactful without comparisons\n- Focus on explaining what it is and how it works\n- Avoid complicated mechanisms or advanced explanations\n- Present the solution as if it's the first of its kind"
|
74 |
+
|
75 |
+
# Combine the base guidance with formula-specific guidance
|
76 |
+
instruction += f"\n\nMARKET SOPHISTICATION GUIDANCE:\n{base_sophistication_guidance}{formula_specific_guidance}\n\nEnsure the entire offer maintains consistency with this Level 1 sophistication while following the formula structure."
|
77 |
+
elif sophistication_level:
|
78 |
+
# Original code for other sophistication levels
|
79 |
# Get basic sophistication guidance
|
80 |
base_sophistication_guidance = create_sophistication_instruction(sophistication_level)
|
81 |
|