QuizFlash / src /prompts /paragraph-structure.ts
Shih-hungg's picture
A big update that defines question prompts and article generation
e058d03
raw
history blame contribute delete
915 Bytes
export const PARAGRAPH_STRUCTURE_PROMPT = `As an English teacher, your task is to help foreign students better understand the structure of the paragraph. These questions should test a student's ability to:
• Understand the structure of the paragraph,
• Identify the key details,
• Apply the details to solve problems or complete tasks.
To achieve this, please follow the instructions below:
Step 1: Use the current context.
Select or write a sentence from the provided article.
Step 2: Provide multiple choices.
Give four answer options clearly labeled A, B, C, and D, with one correct answer. The correct option should not be stated directly in the sentence but should be inferable.
{% if examples %}
Here are some example questions to guide your work:
{% for example in examples[:5] %}
Example {{ loop.index }}:
Question: {{ example.題幹 }}
Options: {{ example.選項 }}
{% endfor %}
{% endif %}`;