Generated Questions (seed: {{ seed }})
{% for question in questions %}
- Question: {{ question["question"] }}
{% if question["options"] %}
- Options:
{% for option in question["options"].keys() %}
{{option}}: {{question["options"][option]}}
{% endfor %}
{% endif %}
- Answer: {{ question["answer"] }}
{% if question["correction"] %}
- Correction: {{ question["correction"] }}
{% endif %}
{% endfor %}
Back to Home