alibicer commited on
Commit
9134722
Β·
verified Β·
1 Parent(s): 704c1ec

Update prompts/main_prompt.py

Browse files
Files changed (1) hide show
  1. prompts/main_prompt.py +13 -16
prompts/main_prompt.py CHANGED
@@ -1,16 +1,10 @@
1
  ### πŸš€ MAIN PROMPT ###
2
  MAIN_PROMPT = """
3
  ### **Module 3: Proportional Reasoning Problem Types**
4
- "Welcome to this module on proportional reasoning problem types!
5
- Today, we will explore three fundamental types of proportional reasoning problems:
6
- 1️⃣ **Missing Value Problems**
7
- 2️⃣ **Numerical Comparison Problems**
8
- 3️⃣ **Qualitative Reasoning Problems**
9
- Your goal is to **solve and compare** these problems, **identify their characteristics**, and finally **create your own examples** for each type.
10
- πŸ’‘ **Throughout this module, I will guide you step by step.**
11
- πŸ’‘ **You will be encouraged to explain your reasoning before receiving hints.**
12
- πŸ’‘ **If you’re unsure, I will provide hints rather than giving direct answers.**
13
- πŸš€ **Let’s begin! First, try solving each problem on your own. Then, I will help you refine your thinking step by step.**
14
  """
15
 
16
  def next_step(step):
@@ -18,7 +12,7 @@ def next_step(step):
18
  return """πŸš€ **Problem 1: Missing Value Problem**
19
  "The scale on a map is **2 cm represents 25 miles**. If a measurement is **24 cm**, how many miles does it represent?"
20
 
21
- πŸ’‘ **Before solving, think about this:**
22
  - "How does 24 cm compare to 2 cm? Can you find the scale factor?"
23
  - "If **2 cm = 25 miles**, how can we use this to scale up?"
24
 
@@ -98,24 +92,27 @@ So, **Ali got the better deal!**"
98
  """
99
 
100
  elif step == 10:
101
- return """πŸ“Œ **Common Core & Creativity-Directed Practices Discussion**
102
  "Great job! Now, let’s reflect on how these problems connect to teaching strategies."
103
 
104
- πŸ”Ή **Common Core Standards Covered:**
105
  - **CCSS.MATH.CONTENT.6.RP.A.3** (Solving real-world proportional reasoning problems)
106
  - **CCSS.MATH.CONTENT.7.RP.A.2** (Recognizing proportional relationships)
 
 
107
 
108
- πŸ’‘ "Which of these standards do you think were covered? Why?"
109
  """
110
 
111
  elif step == 11:
112
- return """πŸ”Ή **Creativity-Directed Practices Discussion**
113
  "Throughout these problems, we engaged in creativity-directed strategies, such as:
114
  βœ… Encouraging multiple solution methods
115
  βœ… Using real-world contexts
116
  βœ… Thinking critically about proportional relationships
117
 
118
- πŸ’‘ "Which of these strategies did you find the most helpful? Why?"
 
119
  """
120
 
121
  elif step == 12:
 
1
  ### πŸš€ MAIN PROMPT ###
2
  MAIN_PROMPT = """
3
  ### **Module 3: Proportional Reasoning Problem Types**
4
+ "Welcome! This module focuses on different types of proportional reasoning problems.
5
+ πŸ’‘ **Try answering before I provide hints.**
6
+
7
+ Are you ready to begin?"
 
 
 
 
 
 
8
  """
9
 
10
  def next_step(step):
 
12
  return """πŸš€ **Problem 1: Missing Value Problem**
13
  "The scale on a map is **2 cm represents 25 miles**. If a measurement is **24 cm**, how many miles does it represent?"
14
 
15
+ πŸ’‘ **Think before answering:**
16
  - "How does 24 cm compare to 2 cm? Can you find the scale factor?"
17
  - "If **2 cm = 25 miles**, how can we use this to scale up?"
18
 
 
92
  """
93
 
94
  elif step == 10:
95
+ return """πŸ“Œ **Common Core Standards Discussion**
96
  "Great job! Now, let’s reflect on how these problems connect to teaching strategies."
97
 
98
+ πŸ”Ή **Which Common Core Standards did we cover?**
99
  - **CCSS.MATH.CONTENT.6.RP.A.3** (Solving real-world proportional reasoning problems)
100
  - **CCSS.MATH.CONTENT.7.RP.A.2** (Recognizing proportional relationships)
101
+ - **CCSS.MATH.PRACTICE.MP1** (Making sense of problems & persevering)
102
+ - **CCSS.MATH.PRACTICE.MP4** (Modeling with mathematics)
103
 
104
+ πŸ’‘ **Which of these standards do you think applied most to the problems we solved? Why?**
105
  """
106
 
107
  elif step == 11:
108
+ return """πŸ“Œ **Creativity-Directed Practices Discussion**
109
  "Throughout these problems, we engaged in creativity-directed strategies, such as:
110
  βœ… Encouraging multiple solution methods
111
  βœ… Using real-world contexts
112
  βœ… Thinking critically about proportional relationships
113
 
114
+ πŸ’‘ **Which of these strategies did you use while solving the problems?**
115
+ πŸ’‘ **How do you think encouraging creativity helps students develop deeper understanding?**
116
  """
117
 
118
  elif step == 12: