Spaces:
Sleeping
Sleeping
Rename HongWenData.py to RadinMas.py
Browse files- HongWenData.py → RadinMas.py +14 -7
HongWenData.py → RadinMas.py
RENAMED
|
@@ -1,8 +1,16 @@
|
|
| 1 |
-
#
|
| 2 |
strategy_text = {
|
| 3 |
-
"
|
| 4 |
-
"
|
| 5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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[
|
| 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
|
|
|