Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +16 -0
prompts/main_prompt.py
CHANGED
@@ -22,6 +22,11 @@ Great! Let’s analyze the relationship between speed and time.
|
|
22 |
- How do you determine if a relationship is proportional?
|
23 |
- What happens to travel time when speed increases?
|
24 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
|
|
|
|
|
|
|
|
|
|
25 |
"""
|
26 |
|
27 |
elif problem_number == "2":
|
@@ -32,6 +37,11 @@ Nice choice! Let’s break this down step by step.
|
|
32 |
- What is the fixed charge in the bill, and why does it matter?
|
33 |
- How does the cost per text affect proportionality?
|
34 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
|
|
|
|
|
|
|
|
|
|
35 |
"""
|
36 |
|
37 |
elif problem_number == "3":
|
@@ -42,6 +52,12 @@ Good thinking! Let’s explore the relationship between their distances.
|
|
42 |
- If both run at the same rate, why does their distance differ?
|
43 |
- How can we determine the pattern in their distances over time?
|
44 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
"""
|
46 |
|
47 |
return "I didn’t understand your choice. Please select Problem 1, 2, or 3."
|
|
|
22 |
- How do you determine if a relationship is proportional?
|
23 |
- What happens to travel time when speed increases?
|
24 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
25 |
+
|
26 |
+
Follow-up Prompts:
|
27 |
+
- What is the total distance Ali travels at 25 mph for 3 hours?
|
28 |
+
- If the distance remains the same, what happens when his speed increases?
|
29 |
+
- How does this affect the relationship between speed and time?
|
30 |
"""
|
31 |
|
32 |
elif problem_number == "2":
|
|
|
37 |
- What is the fixed charge in the bill, and why does it matter?
|
38 |
- How does the cost per text affect proportionality?
|
39 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
40 |
+
|
41 |
+
Follow-up Prompts:
|
42 |
+
- How much does Tugce pay for 30 texts?
|
43 |
+
- How would the bill change if she sent 60 texts?
|
44 |
+
- Does the bill start from zero, or does it have a fixed cost?
|
45 |
"""
|
46 |
|
47 |
elif problem_number == "3":
|
|
|
52 |
- If both run at the same rate, why does their distance differ?
|
53 |
- How can we determine the pattern in their distances over time?
|
54 |
✏️ **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.**
|
55 |
+
|
56 |
+
Follow-up Prompts:
|
57 |
+
- What happens to the difference in distance as time progresses? Does it remain constant or change?
|
58 |
+
- If Ali had run 3 miles while Deniz had run 2 miles, how much more does Ali run compared to Deniz?
|
59 |
+
- Now, when Ali reaches 6 miles, what pattern do you notice in their distances?
|
60 |
+
- Can you explain why this is an additive relationship rather than a proportional one?
|
61 |
"""
|
62 |
|
63 |
return "I didn’t understand your choice. Please select Problem 1, 2, or 3."
|