Update app.py
Browse files
app.py
CHANGED
|
@@ -151,7 +151,7 @@ SUCCESSFUL EXAMPLES OF THE {selected_angle} ANGLE:
|
|
| 151 |
email_instruction += ".\n\n"
|
| 152 |
|
| 153 |
# Agregar ejemplos de la fórmula
|
| 154 |
-
examples_to_use = selected_formula['examples'][:min(
|
| 155 |
|
| 156 |
email_instruction += "FORMULA EXAMPLES TO STUDY (ONLY FOR STRUCTURE, NOT CONTENT):\n"
|
| 157 |
for i, example in enumerate(examples_to_use, 1):
|
|
|
|
| 151 |
email_instruction += ".\n\n"
|
| 152 |
|
| 153 |
# Agregar ejemplos de la fórmula
|
| 154 |
+
examples_to_use = selected_formula['examples'][:min(2, len(selected_formula['examples']))] # Reduced to only 2 examples
|
| 155 |
|
| 156 |
email_instruction += "FORMULA EXAMPLES TO STUDY (ONLY FOR STRUCTURE, NOT CONTENT):\n"
|
| 157 |
for i, example in enumerate(examples_to_use, 1):
|