Spaces:
Sleeping
Sleeping
File size: 3,206 Bytes
d8132e8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
sentence_complete_question_generate_prompt = 'Assuming you are an English teacher and a question consists of three ' \
'parts: the stem, options, and answer. please provide a multiple-choice ' \
'question based on the sentence <{sentence}>.The specific steps are: ' \
'Randomly blank out a part of the sentence and replace it with ____ to ' \
'create the stem.Generate {num} new phrases/words that are ' \
'structurally consistent with the blanked-out part and include the new ' \
'phrases/words and blanked-out part as the options.Use the blanked-out ' \
'part as the answer. For example:' \
'Stem: And now it is time to ____, we will leave our lovely school ' \
'Options: A: celebrate B: say goodbye C: take a break D: graduate' \
'Answer: D: graduate ' \
grammar_question_generate_prompt = 'Assuming you are an English teacher and a question consists of three parts: the ' \
'stem, options, and answer. Please provide a sentence completion type ' \
'multiple-choice question to test students understanding of the grammar rule' \
' <{grammar}>.The specific steps are: Generate a sentence using this ' \
'grammar rule with simple vocabulary. Blank out the part related to the grammar ' \
'of this sentence. Use the sentence that has been blanked out as the stem.'\
'Generate {num} phrases/words with the same meaning but different usage using ' \
'the blanked-out part and include the new phrases/words and blanked-out part as ' \
'the options.Use the blanked-out part as the correct answer.For example:' \
'Stem: And now it is time to ____, we will leave our lovely school ' \
'Options: A: celebrate B: celebrating C: celebrated D: celebrates ' \
'Answer: D: graduate'
reading_comprehension_question_generate_prompt = 'please generate {generate_number} difficult multiple-choice ' \
'questions and attach the answer to each question according the ' \
'paragraph below. Each question should have four choices and only ' \
'one of them is the right answer.'
assay_correct_prompt = '你是一个英语老师,现在正在批改学生的英语作文。你会用中文说明并逐一标记出每个英语语法错误,并且说明如何改正;' \
'最后,给出完整的正确作文。'
|