Prompt
{% set rand_num = range(0,2) | choice %} {% set real_simplifications = [] %}{% for text in simplifications %}{% if text|length < original|length %}{{real_simplifications.append(text) | default("", True)}}{% endif %}{% endfor %} {% if real_simplifications %} One of the following two sentences is more verbose than the other. Which one is it? {% if rand_num %} A: {{real_simplifications | choice}} B: {{original}} {% else %} A: {{original}} B: {{real_simplifications | choice}} {% endif %}
