Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +53 -59
prompts/main_prompt.py
CHANGED
|
@@ -1,70 +1,64 @@
|
|
| 1 |
MAIN_PROMPT = """
|
| 2 |
-
|
| 3 |
-
Module 4: Proportional Thinking with Percentages
|
| 4 |
-
|
| 5 |
"Welcome to this module on proportional reasoning with percentages!
|
| 6 |
Your goal is to solve a real-world problem using different representations:
|
| 7 |
-
1️⃣ Bar Model
|
| 8 |
-
2️⃣ Double Number Line
|
| 9 |
-
3️⃣ Equation-Based Approach
|
| 10 |
-
🚀 Here’s the problem
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
| 12 |
"""
|
| 13 |
|
| 14 |
def get_prompt_for_method(method):
|
| 15 |
-
if method.lower() == "bar model":
|
| 16 |
-
return """
|
| 17 |
-
|
| 18 |
-
Bar Model
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
How would you use it to find the unknown amount?✏️ Go ahead and describe your approach first. I will ask follow-up questions before offering any hints.
|
| 25 |
"""
|
| 26 |
-
|
| 27 |
-
elif method.lower() == "double number line":
|
| 28 |
-
return """
|
| 29 |
-
|
| 30 |
-
Double Number Line
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
How would you align percentages with dollar amounts?✏️ Describe your reasoning first, and I will ask follow-up questions before offering any hints.
|
| 37 |
"""
|
| 38 |
-
|
| 39 |
-
elif method.lower() == "equation":
|
| 40 |
-
return """
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
What steps would you take to solve for the unknown value?✏️ Describe your approach first, and I will ask follow-up questions before offering any hints.
|
| 49 |
"""
|
| 50 |
-
|
| 51 |
-
return "I didn’t understand your choice. Please type 'Bar Model,' 'Double Number Line,' or 'Equation' to proceed."
|
| 52 |
|
| 53 |
def get_feedback_for_method(method, teacher_response):
|
| 54 |
-
if method.lower() == "bar model":
|
| 55 |
-
if "divide" in teacher_response.lower() and "60%" in teacher_response.lower():
|
| 56 |
-
return "Great start! You recognized that the bar should be divided into parts representing percentages. Now, can you calculate how much each part represents?"
|
| 57 |
-
return "It looks like you might need some help. Remember, the bar represents the total investment. Try dividing it into 10 equal parts, with 6 parts representing Orrin’s 60%. How much does one part represent?"
|
| 58 |
-
|
| 59 |
-
elif method.lower() == "double number line":
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
elif method.lower() == "equation":
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
return "Interesting approach! Could you clarify your reasoning a bit more?"
|
| 70 |
-
|
|
|
|
| 1 |
MAIN_PROMPT = """
|
| 2 |
+
### **Module 4: Proportional Thinking with Percentages**
|
|
|
|
|
|
|
| 3 |
"Welcome to this module on proportional reasoning with percentages!
|
| 4 |
Your goal is to solve a real-world problem using different representations:
|
| 5 |
+
1️⃣ **Bar Model**
|
| 6 |
+
2️⃣ **Double Number Line**
|
| 7 |
+
3️⃣ **Equation-Based Approach**
|
| 8 |
+
🚀 **Here’s the problem:**
|
| 9 |
+
Orrin and Damen decided to invest money in a local ice cream shop. Orrin invests $1,500, which is 60% of their total investment. How much do Orrin and Damen invest together?
|
| 10 |
+
💡 **Before receiving guidance, choose a method and explain your reasoning.**
|
| 11 |
+
🚀 **Which method would you like to use first?**
|
| 12 |
+
(Type 'Bar Model,' 'Double Number Line,' or 'Equation' to proceed.)
|
| 13 |
"""
|
| 14 |
|
| 15 |
def get_prompt_for_method(method):
|
| 16 |
+
if method.lower() == "bar model":
|
| 17 |
+
return """
|
| 18 |
+
### **Bar Model Approach**
|
| 19 |
+
Great choice! The Bar Model is a useful way to visualize proportions and percentages.
|
| 20 |
+
📌 **Now, please apply the Bar Model and explain your approach.**
|
| 21 |
+
- How would you represent the total investment in the bar model?
|
| 22 |
+
- How would you use it to find the unknown amount?
|
| 23 |
+
✏️ **Go ahead and describe your approach first.** I will provide feedback after hearing your reasoning.
|
|
|
|
|
|
|
| 24 |
"""
|
| 25 |
+
|
| 26 |
+
elif method.lower() == "double number line":
|
| 27 |
+
return """
|
| 28 |
+
### **Double Number Line Approach**
|
| 29 |
+
Great choice! The Double Number Line helps align percentage values with real-world quantities.
|
| 30 |
+
📌 **Now, please apply the Double Number Line and explain your approach.**
|
| 31 |
+
- How would you structure the number lines?
|
| 32 |
+
- How would you align percentages with dollar amounts?
|
| 33 |
+
✏️ **Describe your reasoning first, and I will provide feedback before offering any hints.**
|
|
|
|
|
|
|
| 34 |
"""
|
| 35 |
+
|
| 36 |
+
elif method.lower() == "equation":
|
| 37 |
+
return """
|
| 38 |
+
### **Equation-Based Approach**
|
| 39 |
+
Great choice! Setting up an equation is a powerful way to represent proportional relationships.
|
| 40 |
+
📌 **Now, please write an equation and explain your thought process.**
|
| 41 |
+
- How would you set up the equation for this problem?
|
| 42 |
+
- What steps would you take to solve for the unknown value?
|
| 43 |
+
✏️ **Describe your approach first, and I will provide feedback before offering any hints.**
|
|
|
|
|
|
|
| 44 |
"""
|
| 45 |
+
|
| 46 |
+
return "I didn’t understand your choice. Please type 'Bar Model,' 'Double Number Line,' or 'Equation' to proceed."
|
| 47 |
|
| 48 |
def get_feedback_for_method(method, teacher_response):
|
| 49 |
+
if method.lower() == "bar model":
|
| 50 |
+
if "divide" in teacher_response.lower() and "60%" in teacher_response.lower():
|
| 51 |
+
return "Great start! You recognized that the bar should be divided into parts representing percentages. Now, can you calculate how much each part represents?"
|
| 52 |
+
return "It looks like you might need some help. Remember, the bar represents the total investment. Try dividing it into 10 equal parts, with 6 parts representing Orrin’s 60%. How much does one part represent?"
|
| 53 |
+
|
| 54 |
+
elif method.lower() == "double number line":
|
| 55 |
+
if "label" in teacher_response.lower() and "percentages" in teacher_response.lower():
|
| 56 |
+
return "Nice work! You’ve set up the number line correctly. Can you now align the percentage values with the corresponding dollar amounts?"
|
| 57 |
+
return "No worries! Try labeling your number line with 0%, 60%, and 100% on one side and the corresponding dollar amounts on the other. How do the values align?"
|
| 58 |
+
|
| 59 |
+
elif method.lower() == "equation":
|
| 60 |
+
if "60/100" in teacher_response.lower() and "$1500/x" in teacher_response.lower():
|
| 61 |
+
return "You're on the right track! Now, how can you solve for x in your equation?"
|
| 62 |
+
return "Try writing the proportion as (60/100) = (1500/x). What steps would you take to solve for x?"
|
| 63 |
+
|
| 64 |
+
return "Interesting approach! Could you clarify your reasoning a bit more?"
|
|
|