Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +18 -18
prompts/main_prompt.py
CHANGED
|
@@ -17,18 +17,18 @@ Your goal is to solve a real-world problem using different representations:
|
|
| 17 |
|
| 18 |
BAR_MODEL_PROMPT = """
|
| 19 |
### **🚀 Bar Model Approach**
|
| 20 |
-
"Great choice! The **Bar Model** is a powerful visual
|
| 21 |
|
| 22 |
🔹 **Please apply the Bar Model and explain your method.**
|
| 23 |
- How would you represent the total investment with a bar?
|
| 24 |
- How would you divide the bar to show 60%?
|
| 25 |
- How can you use this to find the total investment?
|
| 26 |
|
| 27 |
-
|
| 28 |
"""
|
| 29 |
|
| 30 |
BAR_MODEL_FEEDBACK_PROMPT = """
|
| 31 |
-
✅ **Thanks for
|
| 32 |
|
| 33 |
🔹 **Key questions to check your model:**
|
| 34 |
- Did you represent the total investment as a full bar?
|
|
@@ -47,11 +47,11 @@ Since Orrin's $1,500 represents 60%, divide it by 6 to find 10% of the total inv
|
|
| 47 |
BAR_MODEL_SOLUTION_PROMPT = """
|
| 48 |
✅ **Here’s how we solve it using a bar model:**
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
|
| 56 |
💡 **Would you like to reflect on why the bar model was useful, or try another method?**
|
| 57 |
(Type ‘Double Number Line’ or ‘Equation’ to proceed.)
|
|
@@ -59,14 +59,14 @@ BAR_MODEL_SOLUTION_PROMPT = """
|
|
| 59 |
|
| 60 |
DOUBLE_NUMBER_LINE_PROMPT = """
|
| 61 |
### **🚀 Double Number Line Approach**
|
| 62 |
-
"Great choice! The **Double Number Line**
|
| 63 |
|
| 64 |
🔹 **Please apply the Double Number Line and explain your method.**
|
| 65 |
- How would you set up a number line for this problem?
|
| 66 |
- What would the two number lines represent?
|
| 67 |
- How can you use the 60% value to determine the total?
|
| 68 |
|
| 69 |
-
|
| 70 |
"""
|
| 71 |
|
| 72 |
DOUBLE_NUMBER_LINE_FEEDBACK_PROMPT = """
|
|
@@ -88,11 +88,11 @@ DOUBLE_NUMBER_LINE_HINT_PROMPT = """
|
|
| 88 |
DOUBLE_NUMBER_LINE_SOLUTION_PROMPT = """
|
| 89 |
✅ **Here’s how we solve it using a double number line:**
|
| 90 |
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
|
| 97 |
💡 **Would you like to reflect on why the double number line was useful, or try another method?**
|
| 98 |
(Type ‘Bar Model’ or ‘Equation’ to proceed.)
|
|
@@ -107,7 +107,7 @@ EQUATION_PROMPT = """
|
|
| 107 |
- What variable would represent the total investment?
|
| 108 |
- What equation would you set up to solve for the total?
|
| 109 |
|
| 110 |
-
|
| 111 |
"""
|
| 112 |
|
| 113 |
EQUATION_FEEDBACK_PROMPT = """
|
|
@@ -135,12 +135,12 @@ EQUATION_SOLUTION_PROMPT = """
|
|
| 135 |
\frac{60}{100} = \frac{1500}{x}
|
| 136 |
\]
|
| 137 |
|
| 138 |
-
|
| 139 |
\[
|
| 140 |
60x = 1500 \times 100
|
| 141 |
\]
|
| 142 |
|
| 143 |
-
|
| 144 |
\[
|
| 145 |
x = \frac{1500 \times 100}{60} = 2500
|
| 146 |
\]
|
|
|
|
| 17 |
|
| 18 |
BAR_MODEL_PROMPT = """
|
| 19 |
### **🚀 Bar Model Approach**
|
| 20 |
+
"Great choice! The **Bar Model** is a powerful visual tool for understanding proportional relationships.
|
| 21 |
|
| 22 |
🔹 **Please apply the Bar Model and explain your method.**
|
| 23 |
- How would you represent the total investment with a bar?
|
| 24 |
- How would you divide the bar to show 60%?
|
| 25 |
- How can you use this to find the total investment?
|
| 26 |
|
| 27 |
+
✏️ **Type your explanation, and I will provide feedback before moving forward.**
|
| 28 |
"""
|
| 29 |
|
| 30 |
BAR_MODEL_FEEDBACK_PROMPT = """
|
| 31 |
+
✅ **Thanks for explaining your approach! Let’s review it together.**
|
| 32 |
|
| 33 |
🔹 **Key questions to check your model:**
|
| 34 |
- Did you represent the total investment as a full bar?
|
|
|
|
| 47 |
BAR_MODEL_SOLUTION_PROMPT = """
|
| 48 |
✅ **Here’s how we solve it using a bar model:**
|
| 49 |
|
| 50 |
+
1️⃣ The total investment is represented as a full bar (100%).
|
| 51 |
+
2️⃣ Since Orrin’s $1,500 represents 60%, we divide the bar into 10 equal parts.
|
| 52 |
+
3️⃣ 60% means 6 parts represent $1,500.
|
| 53 |
+
4️⃣ **Value of 10% =** $1,500 ÷ 6 = $250.
|
| 54 |
+
5️⃣ **Total investment =** $250 × 10 = **$2,500.**
|
| 55 |
|
| 56 |
💡 **Would you like to reflect on why the bar model was useful, or try another method?**
|
| 57 |
(Type ‘Double Number Line’ or ‘Equation’ to proceed.)
|
|
|
|
| 59 |
|
| 60 |
DOUBLE_NUMBER_LINE_PROMPT = """
|
| 61 |
### **🚀 Double Number Line Approach**
|
| 62 |
+
"Great choice! The **Double Number Line** helps to visualize proportional relationships step by step.
|
| 63 |
|
| 64 |
🔹 **Please apply the Double Number Line and explain your method.**
|
| 65 |
- How would you set up a number line for this problem?
|
| 66 |
- What would the two number lines represent?
|
| 67 |
- How can you use the 60% value to determine the total?
|
| 68 |
|
| 69 |
+
✏️ **Type your explanation, and I will provide feedback before moving forward.**
|
| 70 |
"""
|
| 71 |
|
| 72 |
DOUBLE_NUMBER_LINE_FEEDBACK_PROMPT = """
|
|
|
|
| 88 |
DOUBLE_NUMBER_LINE_SOLUTION_PROMPT = """
|
| 89 |
✅ **Here’s how we solve it using a double number line:**
|
| 90 |
|
| 91 |
+
1️⃣ One number line represents percentages (0% to 100%).
|
| 92 |
+
2️⃣ The second number line represents dollar values.
|
| 93 |
+
3️⃣ 60% corresponds to $1,500.
|
| 94 |
+
4️⃣ **10% =** $1,500 ÷ 6 = $250.
|
| 95 |
+
5️⃣ **100% =** $250 × 10 = **$2,500.**
|
| 96 |
|
| 97 |
💡 **Would you like to reflect on why the double number line was useful, or try another method?**
|
| 98 |
(Type ‘Bar Model’ or ‘Equation’ to proceed.)
|
|
|
|
| 107 |
- What variable would represent the total investment?
|
| 108 |
- What equation would you set up to solve for the total?
|
| 109 |
|
| 110 |
+
✏️ **Type your explanation, and I will provide feedback before moving forward.**
|
| 111 |
"""
|
| 112 |
|
| 113 |
EQUATION_FEEDBACK_PROMPT = """
|
|
|
|
| 135 |
\frac{60}{100} = \frac{1500}{x}
|
| 136 |
\]
|
| 137 |
|
| 138 |
+
1️⃣ Cross multiply:
|
| 139 |
\[
|
| 140 |
60x = 1500 \times 100
|
| 141 |
\]
|
| 142 |
|
| 143 |
+
2️⃣ Solve for **x**:
|
| 144 |
\[
|
| 145 |
x = \frac{1500 \times 100}{60} = 2500
|
| 146 |
\]
|