simonraj commited on
Commit
1358da4
·
1 Parent(s): c14722c

Rename HongWenData.py to RadinMas.py

Browse files
Files changed (1) hide show
  1. HongWenData.py → RadinMas.py +14 -7
HongWenData.py → RadinMas.py RENAMED
@@ -1,8 +1,16 @@
1
- #HongWenData.py
2
  strategy_text = {
3
- "TREES": (
4
- "TREES strategy - Thought, Reasons, Elaboration, Experiences, Summary or Suggestions",
5
- "Structure your feedback using the TREES strategy. Begin with a Thought, provide Reasons, Elaborate using the 5Ws1H method: Who, What, Where, When, Why, and How, share Experiences, and finally offer a Summary or Suggestions."
 
 
 
 
 
 
 
 
6
  )
7
  }
8
 
@@ -21,8 +29,8 @@ questions = [
21
  f"3. What do you think are some benefits of leisure activities? "
22
  ]
23
 
24
- def generate_system_message():
25
- strategy, explanation = strategy_text["TREES"]
26
 
27
  system_message = f"""
28
  As your English Oral Coach, my role is to guide you as you prepare to answer the oral questions. I'll be asking thought-provoking questions to help you develop your own answers.
@@ -38,4 +46,3 @@ def generate_system_message():
38
  Please ensure your response is in English.
39
  """
40
  return system_message
41
-
 
1
+ # RadinMas.py
2
  strategy_text = {
3
+ "Q1": (
4
+ "Strategy for Question 1 - Point, Evidence, Experience(s), Link back to the question",
5
+ "For Question 1, begin with a Point, provide Evidence, share Experience(s), and Link back to the question."
6
+ ),
7
+ "Q2": (
8
+ "Strategy for Question 2 - Expansion of sharing",
9
+ "For Question 2, expand on sharing your Own experiences, Experiences with Family, Friends, and experiences of Neighbourhood, Society, and Other parts of the World."
10
+ ),
11
+ "Q3": (
12
+ "Strategy for Question 3 - OREOS thinking frame",
13
+ "For Question 3, follow the OREOS thinking frame: Opinion, Reasons, Elaborate, Own Experiences, and Suggestion."
14
  )
15
  }
16
 
 
29
  f"3. What do you think are some benefits of leisure activities? "
30
  ]
31
 
32
+ def generate_system_message(question_choice):
33
+ strategy, explanation = strategy_text[question_choice]
34
 
35
  system_message = f"""
36
  As your English Oral Coach, my role is to guide you as you prepare to answer the oral questions. I'll be asking thought-provoking questions to help you develop your own answers.
 
46
  Please ensure your response is in English.
47
  """
48
  return system_message