Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +28 -33
prompts/main_prompt.py
CHANGED
|
@@ -17,31 +17,30 @@ Your goal is to solve a real-world problem using different representations:
|
|
| 17 |
|
| 18 |
BAR_MODEL_PROMPT = """
|
| 19 |
### **π Bar Model Approach**
|
| 20 |
-
"Great choice!
|
| 21 |
-
|
| 22 |
-
πΉ **How would you use a bar model to represent this problem?**
|
| 23 |
-
βοΈ **Please describe your approach first.**
|
| 24 |
|
|
|
|
| 25 |
- How would you represent the total investment with a bar?
|
| 26 |
- How would you divide the bar to show 60%?
|
| 27 |
- How can you use this to find the total investment?
|
| 28 |
|
| 29 |
-
π‘ **Explain your
|
| 30 |
"""
|
| 31 |
|
| 32 |
BAR_MODEL_FEEDBACK_PROMPT = """
|
| 33 |
-
β
**Thanks for sharing your approach! Let's review it
|
| 34 |
|
| 35 |
-
πΉ **
|
| 36 |
-
-
|
| 37 |
-
-
|
| 38 |
-
-
|
| 39 |
|
| 40 |
-
βοΈ **Would you like to
|
| 41 |
"""
|
| 42 |
|
| 43 |
BAR_MODEL_HINT_PROMPT = """
|
| 44 |
-
πΉ **Hint:**
|
|
|
|
| 45 |
βοΈ **What do you get?**
|
| 46 |
"""
|
| 47 |
|
|
@@ -60,27 +59,25 @@ BAR_MODEL_SOLUTION_PROMPT = """
|
|
| 60 |
|
| 61 |
DOUBLE_NUMBER_LINE_PROMPT = """
|
| 62 |
### **π Double Number Line Approach**
|
| 63 |
-
"Great choice!
|
| 64 |
-
|
| 65 |
-
πΉ **How would you set up a number line for this problem?**
|
| 66 |
-
βοΈ **Please describe your approach first.**
|
| 67 |
|
|
|
|
|
|
|
| 68 |
- What would the two number lines represent?
|
| 69 |
-
- What key values should be placed on the number line?
|
| 70 |
- How can you use the 60% value to determine the total?
|
| 71 |
|
| 72 |
-
π‘ **Explain your
|
| 73 |
"""
|
| 74 |
|
| 75 |
DOUBLE_NUMBER_LINE_FEEDBACK_PROMPT = """
|
| 76 |
-
β
**Thanks for explaining! Let's check your approach
|
| 77 |
|
| 78 |
-
πΉ **
|
| 79 |
-
-
|
| 80 |
-
-
|
| 81 |
-
-
|
| 82 |
|
| 83 |
-
βοΈ **Would you like to adjust anything before I
|
| 84 |
"""
|
| 85 |
|
| 86 |
DOUBLE_NUMBER_LINE_HINT_PROMPT = """
|
|
@@ -103,26 +100,24 @@ DOUBLE_NUMBER_LINE_SOLUTION_PROMPT = """
|
|
| 103 |
|
| 104 |
EQUATION_PROMPT = """
|
| 105 |
### **π Equation-Based Approach**
|
| 106 |
-
"Great choice!
|
| 107 |
-
|
| 108 |
-
πΉ **How would you write an equation for this problem?**
|
| 109 |
-
βοΈ **Please describe your approach first.**
|
| 110 |
|
|
|
|
| 111 |
- How can you express 60% in fraction or decimal form?
|
| 112 |
- What variable would represent the total investment?
|
| 113 |
- What equation would you set up to solve for the total?
|
| 114 |
|
| 115 |
-
π‘ **Explain your
|
| 116 |
"""
|
| 117 |
|
| 118 |
EQUATION_FEEDBACK_PROMPT = """
|
| 119 |
β
**Thanks for explaining! Let's check your equation:**
|
| 120 |
|
| 121 |
-
πΉ **
|
| 122 |
-
-
|
| 123 |
-
-
|
| 124 |
|
| 125 |
-
βοΈ **Would you like to adjust anything before I
|
| 126 |
"""
|
| 127 |
|
| 128 |
EQUATION_HINT_PROMPT = """
|
|
|
|
| 17 |
|
| 18 |
BAR_MODEL_PROMPT = """
|
| 19 |
### **π Bar Model Approach**
|
| 20 |
+
"Great choice! The **Bar Model** is a powerful visual representation for understanding percentage 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 |
+
π‘ **Explain your process first, and I will provide feedback!**
|
| 28 |
"""
|
| 29 |
|
| 30 |
BAR_MODEL_FEEDBACK_PROMPT = """
|
| 31 |
+
β
**Thanks for sharing 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?
|
| 35 |
+
- Did you divide the bar into equal sections representing 10% each?
|
| 36 |
+
- Did you shade in 60% for Orrinβs investment?
|
| 37 |
|
| 38 |
+
βοΈ **Would you like to adjust anything before I provide hints?**
|
| 39 |
"""
|
| 40 |
|
| 41 |
BAR_MODEL_HINT_PROMPT = """
|
| 42 |
+
πΉ **Hint:**
|
| 43 |
+
Since Orrin's $1,500 represents 60%, divide it by 6 to find 10% of the total investment.
|
| 44 |
βοΈ **What do you get?**
|
| 45 |
"""
|
| 46 |
|
|
|
|
| 59 |
|
| 60 |
DOUBLE_NUMBER_LINE_PROMPT = """
|
| 61 |
### **π Double Number Line Approach**
|
| 62 |
+
"Great choice! The **Double Number Line** can help show 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 |
+
π‘ **Explain your process first, and I will provide feedback!**
|
| 70 |
"""
|
| 71 |
|
| 72 |
DOUBLE_NUMBER_LINE_FEEDBACK_PROMPT = """
|
| 73 |
+
β
**Thanks for explaining! Let's check your approach.**
|
| 74 |
|
| 75 |
+
πΉ **Key questions to check your model:**
|
| 76 |
+
- Did you label one number line as percentages (0% to 100%)?
|
| 77 |
+
- Did you label the second number line with dollar values?
|
| 78 |
+
- Did you place 60% at $1,500?
|
| 79 |
|
| 80 |
+
βοΈ **Would you like to adjust anything before I provide hints?**
|
| 81 |
"""
|
| 82 |
|
| 83 |
DOUBLE_NUMBER_LINE_HINT_PROMPT = """
|
|
|
|
| 100 |
|
| 101 |
EQUATION_PROMPT = """
|
| 102 |
### **π Equation-Based Approach**
|
| 103 |
+
"Great choice! The **Equation Method** provides a direct algebraic approach.
|
|
|
|
|
|
|
|
|
|
| 104 |
|
| 105 |
+
πΉ **Please apply the Equation Method and explain your approach.**
|
| 106 |
- How can you express 60% in fraction or decimal form?
|
| 107 |
- What variable would represent the total investment?
|
| 108 |
- What equation would you set up to solve for the total?
|
| 109 |
|
| 110 |
+
π‘ **Explain your process first, and I will provide feedback!**
|
| 111 |
"""
|
| 112 |
|
| 113 |
EQUATION_FEEDBACK_PROMPT = """
|
| 114 |
β
**Thanks for explaining! Let's check your equation:**
|
| 115 |
|
| 116 |
+
πΉ **Key questions to check your model:**
|
| 117 |
+
- Did you set up a proportion between 60% and $1,500?
|
| 118 |
+
- Did you define a variable for the total investment?
|
| 119 |
|
| 120 |
+
βοΈ **Would you like to adjust anything before I provide hints?**
|
| 121 |
"""
|
| 122 |
|
| 123 |
EQUATION_HINT_PROMPT = """
|