Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -214,6 +214,28 @@ with col2:
|
|
| 214 |
"""
|
| 215 |
instruction += creative_hook_instruction
|
| 216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 217 |
# Add additional context based on input type
|
| 218 |
if st.session_state.input_type == "manual":
|
| 219 |
additional_context = f"""
|
|
|
|
| 214 |
"""
|
| 215 |
instruction += creative_hook_instruction
|
| 216 |
|
| 217 |
+
# Add instruction for generating 5 bullet points based on the promise
|
| 218 |
+
bullet_points_instruction = """
|
| 219 |
+
IMPORTANT: After creating the main offer, add a section with 5 powerful benefit bullets that reinforce the promise:
|
| 220 |
+
|
| 221 |
+
1. Each bullet should start with a relevant emoji
|
| 222 |
+
2. Make each bullet specific and tangible
|
| 223 |
+
3. Focus on results and transformations
|
| 224 |
+
4. Include at least one emotional benefit
|
| 225 |
+
5. Include at least one time-saving or effort-reducing benefit
|
| 226 |
+
|
| 227 |
+
Format the bullets like this:
|
| 228 |
+
|
| 229 |
+
✅ [Specific benefit 1 related to results]
|
| 230 |
+
🚀 [Specific benefit 2 related to speed/ease]
|
| 231 |
+
💰 [Specific benefit 3 related to money/savings]
|
| 232 |
+
😌 [Specific benefit 4 related to peace of mind/confidence]
|
| 233 |
+
🔄 [Specific benefit 5 related to transformation]
|
| 234 |
+
|
| 235 |
+
The bullets should directly support the main promise in your offer and provide additional compelling reasons to take action.
|
| 236 |
+
"""
|
| 237 |
+
instruction += bullet_points_instruction
|
| 238 |
+
|
| 239 |
# Add additional context based on input type
|
| 240 |
if st.session_state.input_type == "manual":
|
| 241 |
additional_context = f"""
|