Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +7 -8
prompts/main_prompt.py
CHANGED
@@ -13,9 +13,8 @@ You can solve this using different methods:
|
|
13 |
- **Equation-Based Approach**
|
14 |
|
15 |
**Pick the method that you feel most comfortable with and tell me how you would apply it.**
|
16 |
-
|
17 |
|
18 |
-
๐ **Which method would you like to use first?**
|
19 |
(Type **"Bar Model"**, **"Double Number Line"**, or **"Equation"** to continue.)
|
20 |
"""
|
21 |
|
@@ -26,11 +25,11 @@ def get_prompt_for_method(method):
|
|
26 |
### **Bar Model Approach**
|
27 |
Great choice! The Bar Model is a helpful way to **visualize** proportions and percentages.
|
28 |
|
29 |
-
๐ **
|
30 |
- How would you represent the total investment in the bar model?
|
31 |
- How would you use it to find the unknown amount?
|
32 |
|
33 |
-
โ๏ธ **Go ahead and describe your approach
|
34 |
"""
|
35 |
|
36 |
elif method.lower() == "double number line":
|
@@ -38,11 +37,11 @@ Great choice! The Bar Model is a helpful way to **visualize** proportions and pe
|
|
38 |
### **Double Number Line Approach**
|
39 |
Great choice! The Double Number Line helps align percentage values with real-world quantities.
|
40 |
|
41 |
-
๐ **
|
42 |
- What values would you place on each line?
|
43 |
- How would you determine the total investment using this method?
|
44 |
|
45 |
-
โ๏ธ **Explain how you would use this approach
|
46 |
"""
|
47 |
|
48 |
elif method.lower() == "equation":
|
@@ -50,11 +49,11 @@ Great choice! The Double Number Line helps align percentage values with real-wor
|
|
50 |
### **Equation-Based Approach**
|
51 |
Great choice! Setting up an equation is a powerful way to solve proportional problems.
|
52 |
|
53 |
-
๐ **
|
54 |
- What proportion or equation would represent the situation?
|
55 |
- How would you solve for the total investment?
|
56 |
|
57 |
-
โ๏ธ **Explain how you would approach it
|
58 |
"""
|
59 |
|
60 |
return "I didnโt understand your choice. Please type 'Bar Model,' 'Double Number Line,' or 'Equation' to proceed."
|
|
|
13 |
- **Equation-Based Approach**
|
14 |
|
15 |
**Pick the method that you feel most comfortable with and tell me how you would apply it.**
|
16 |
+
๐ **Explain your reasoning before I provide any guidance.**
|
17 |
|
|
|
18 |
(Type **"Bar Model"**, **"Double Number Line"**, or **"Equation"** to continue.)
|
19 |
"""
|
20 |
|
|
|
25 |
### **Bar Model Approach**
|
26 |
Great choice! The Bar Model is a helpful way to **visualize** proportions and percentages.
|
27 |
|
28 |
+
๐ **Before I provide guidance, please explain how you would apply the Bar Model to solve this problem.**
|
29 |
- How would you represent the total investment in the bar model?
|
30 |
- How would you use it to find the unknown amount?
|
31 |
|
32 |
+
โ๏ธ **Go ahead and describe your approach first. I will provide feedback after hearing your reasoning.**
|
33 |
"""
|
34 |
|
35 |
elif method.lower() == "double number line":
|
|
|
37 |
### **Double Number Line Approach**
|
38 |
Great choice! The Double Number Line helps align percentage values with real-world quantities.
|
39 |
|
40 |
+
๐ **Before I provide guidance, please explain how you would apply the Double Number Line to solve this problem.**
|
41 |
- What values would you place on each line?
|
42 |
- How would you determine the total investment using this method?
|
43 |
|
44 |
+
โ๏ธ **Explain how you would use this approach first. I will provide feedback after hearing your reasoning.**
|
45 |
"""
|
46 |
|
47 |
elif method.lower() == "equation":
|
|
|
49 |
### **Equation-Based Approach**
|
50 |
Great choice! Setting up an equation is a powerful way to solve proportional problems.
|
51 |
|
52 |
+
๐ **Before I provide guidance, please explain how you would write an equation to represent this problem.**
|
53 |
- What proportion or equation would represent the situation?
|
54 |
- How would you solve for the total investment?
|
55 |
|
56 |
+
โ๏ธ **Explain how you would approach it first. I will provide feedback after hearing your reasoning.**
|
57 |
"""
|
58 |
|
59 |
return "I didnโt understand your choice. Please type 'Bar Model,' 'Double Number Line,' or 'Equation' to proceed."
|