mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-01 20:03:28 +02:00
feat: +Choice Questions, Translation Questions
This commit is contained in:
parent
a56e9a29e3
commit
8f5b3e076e
1 changed files with 12 additions and 5 deletions
|
|
@ -90,7 +90,7 @@ class WriteTeachingPlanPart(Action):
|
|||
COURSE_TITLE, "Teaching Hours", "Teaching Objectives", "Teaching Content",
|
||||
"Teaching Methods and Strategies", "Learning Activities",
|
||||
"Teaching Time Allocation", "Assessment and Feedback", "Teaching Summary and Improvement",
|
||||
"Vocabulary Cloze", "Grammar Questions"
|
||||
"Vocabulary Cloze", "Choice Questions", "Grammar Questions", "Translation Questions"
|
||||
]
|
||||
|
||||
TOPIC_STATEMENTS = {
|
||||
|
|
@ -109,13 +109,20 @@ class WriteTeachingPlanPart(Action):
|
|||
],
|
||||
"Vocabulary Cloze": [
|
||||
"Statement: Based on the content of the textbook enclosed by \"[LESSON_BEGIN]\" and \"[LESSON_END]\", "
|
||||
"create vocabulary cloze. The cloze should be in either {language} with "
|
||||
"{teaching_language} answers or {teaching_language} with {language} answers. The key-related vocabulary "
|
||||
"and phrases in the textbook content must all be included in the exercises."
|
||||
"create vocabulary cloze. The cloze should include 10 {language} questions with {teaching_language} "
|
||||
"answers, and it should also include 10 {teaching_language} questions with {language} answers. "
|
||||
"The key-related vocabulary and phrases in the textbook content must all be included in the exercises.",
|
||||
],
|
||||
"Grammar Questions": [
|
||||
"Statement: Based on the content of the textbook enclosed by \"[LESSON_BEGIN]\" and \"[LESSON_END]\", "
|
||||
"create grammar questions. "]
|
||||
"create grammar questions. 10 questions."],
|
||||
"Choice Questions": [
|
||||
"Statement: Based on the content of the textbook enclosed by \"[LESSON_BEGIN]\" and \"[LESSON_END]\", "
|
||||
"create choice questions. 10 questions."],
|
||||
"Translation Questions": [
|
||||
"Statement: Based on the content of the textbook enclosed by \"[LESSON_BEGIN]\" and \"[LESSON_END]\", "
|
||||
"create translation questions. 10 questions."
|
||||
]
|
||||
}
|
||||
|
||||
# Teaching plan title
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue