alibicer commited on
Commit
472c54c
·
verified ·
1 Parent(s): b3f9338

Update prompts/main_prompt.py

Browse files
Files changed (1) hide show
  1. prompts/main_prompt.py +6 -5
prompts/main_prompt.py CHANGED
@@ -1,5 +1,6 @@
1
  # prompts/main_prompt.py
2
 
 
3
  __all__ = ["TASK_PROMPT", "BAR_MODEL_PROMPT", "DOUBLE_NUMBER_LINE_PROMPT",
4
  "RATIO_TABLE_PROMPT", "GRAPH_PROMPT", "REFLECTION_PROMPT",
5
  "SUMMARY_PROMPT", "FINAL_REFLECTION_PROMPT"]
@@ -8,7 +9,7 @@ __all__ = ["TASK_PROMPT", "BAR_MODEL_PROMPT", "DOUBLE_NUMBER_LINE_PROMPT",
8
  TASK_PROMPT = """
9
  Welcome to Module 2: Solving a Ratio Problem Using Multiple Representations!
10
 
11
- Task:
12
  Jessica drives 90 miles in 2 hours. If she drives at the same rate, how far does she travel in:
13
  - 1 hour?
14
  - ½ hour?
@@ -24,7 +25,7 @@ Remember: Don't just find the answer—explain why!
24
  I'll guide you step by step—let’s start with the bar model.
25
  """
26
 
27
- # Bar Model Prompt
28
  BAR_MODEL_PROMPT = """
29
  Step 1: Bar Model Representation
30
 
@@ -39,7 +40,7 @@ If correct: Great! Can you explain why this model helps students visualize propo
39
  If incorrect: Try dividing the bar into two equal sections. What does each section represent?
40
  """
41
 
42
- # Double Number Line Prompt
43
  DOUBLE_NUMBER_LINE_PROMPT = """
44
  Step 2: Double Number Line Representation
45
 
@@ -60,7 +61,7 @@ If correct: Nice work! How does this help students understand proportional relat
60
  If incorrect: Check your spacing—does your number line keep a constant rate?
61
  """
62
 
63
- # Ratio Table Prompt
64
  RATIO_TABLE_PROMPT = """
65
  Step 3: Ratio Table Representation
66
 
@@ -80,7 +81,7 @@ If correct: Well done! How might this help students compare proportional relatio
80
  If incorrect: Something’s a little off. Try using unit rate: 90 ÷ 2 = ?
81
  """
82
 
83
- # Graph Prompt
84
  GRAPH_PROMPT = """
85
  Step 4: Graph Representation
86
 
 
1
  # prompts/main_prompt.py
2
 
3
+ # Ensure Python recognizes this file as a module
4
  __all__ = ["TASK_PROMPT", "BAR_MODEL_PROMPT", "DOUBLE_NUMBER_LINE_PROMPT",
5
  "RATIO_TABLE_PROMPT", "GRAPH_PROMPT", "REFLECTION_PROMPT",
6
  "SUMMARY_PROMPT", "FINAL_REFLECTION_PROMPT"]
 
9
  TASK_PROMPT = """
10
  Welcome to Module 2: Solving a Ratio Problem Using Multiple Representations!
11
 
12
+ ### Task:
13
  Jessica drives 90 miles in 2 hours. If she drives at the same rate, how far does she travel in:
14
  - 1 hour?
15
  - ½ hour?
 
25
  I'll guide you step by step—let’s start with the bar model.
26
  """
27
 
28
+ # Step 1: Bar Model Representation
29
  BAR_MODEL_PROMPT = """
30
  Step 1: Bar Model Representation
31
 
 
40
  If incorrect: Try dividing the bar into two equal sections. What does each section represent?
41
  """
42
 
43
+ # Step 2: Double Number Line
44
  DOUBLE_NUMBER_LINE_PROMPT = """
45
  Step 2: Double Number Line Representation
46
 
 
61
  If incorrect: Check your spacing—does your number line keep a constant rate?
62
  """
63
 
64
+ # Step 3: Ratio Table
65
  RATIO_TABLE_PROMPT = """
66
  Step 3: Ratio Table Representation
67
 
 
81
  If incorrect: Something’s a little off. Try using unit rate: 90 ÷ 2 = ?
82
  """
83
 
84
+ # Step 4: Graph Representation
85
  GRAPH_PROMPT = """
86
  Step 4: Graph Representation
87