alibicer commited on
Commit
77fc725
ยท
verified ยท
1 Parent(s): 0b9cf3f

Update prompts/main_prompt.py

Browse files
Files changed (1) hide show
  1. 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
- Once you explain your approach, Iโ€™ll provide feedback and guidance if needed.
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
- ๐Ÿ“Œ **How would you apply the Bar Model to this problem?**
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.** Iโ€™d love to hear your reasoning first!
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
- ๐Ÿ“Œ **How would you set up a Double Number Line for this problem?**
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!** Iโ€™d love to hear your reasoning first.
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
- ๐Ÿ“Œ **How would you write an equation for this problem?**
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!** Iโ€™d love to hear your reasoning first.
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."