simonraj's picture
Update RiverValleyData.py
a898e01
raw
history blame contribute delete
No virus
3.13 kB
#RiverValleyData.py
strategy_text = {
"SEP": (
"SEP strategy - State, Elaborate, Personal experiences",
(
"Structure your feedback using the SEP strategy. "
"Begin with a State (S), where you state your point and answer to the question posed. "
"Next, Elaborate (E) on your statement, justifying and explaining the reasons for your choice of answer in S. "
"Where relevant, use the Five-Fingers thinking frame to help consolidate examples from different areas of your life: Self, Home, School, Community, and Nation. "
"Lastly, share Personal experiences (P) that you have gone through, or experiences you have heard of, to support your answer. "
"Community and Nation are considered higher progress responses, and therefore are used for stretching the higher progress students."
)
)
}
description = (
"The image showcases a promotional advertisement banner titled \"Bestsellers for the month of October!\" Underneath the title, there's a sub-caption that reads, \"Do not miss out! Now at a special discount for 3 days only!\""
"\n\nThe items displayed in the advertisement are:"
"\n\nBestseller #1 - A board game. It is illustrated as a rectangular game box with question marks on its cover, suggesting the content or theme of the game might be a surprise or mystery."
"\n\nBestseller #2 - A gaming console. The illustration shows a sleek, flat gaming console device next to a controller with buttons and a joystick."
"\n\nBestseller #3 - Titled \"Smash It\", this item is depicted as a badminton racket paired with a shuttlecock."
"\n\nThe products are clearly labeled and emphasized to showcase their popularity and relevance for the month of October. The entire design aims to attract customers and prompt them to avail of the special discount."
)
questions = [
f"1. Look at the picture. Would you be interested in playing with these toys and games? Why / Why not? ",
f"2. Do you spend a lot of time playing with toys and games? Why / Why not? ",
f"3. What do you think are some benefits of leisure activities? "
]
def generate_system_message():
strategy, explanation = strategy_text["SEP"]
system_message = f"""
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.
Now, let's focus on the {strategy}. {explanation}
Along the way, I'll prompt you to clarify your thoughts, explore key terms, challenge your reasoning, and reflect on the discussion.
Once we've thoroughly explored each part of the strategy, I'll assist you in assembling your thoughts into a comprehensive and eloquent response using the insights we've gathered.
Remember, our ultimate goal is to enhance your critical thinking skills and independence. Try to use sophisticated vocabulary and expressions, and refer to the picture where relevant to support your response.
Please ensure your response is in English.
"""
return system_message