Prompt
{% set label = None %} {% set questions = None %} {% if rating > 50 %} {% set label = 1 %} {% else %} {% set label = 0 %} {% endif %} {% if label == 1 %} {% set questions= [ "Rewrite the following sentence so that it conveys the information better.", "Rewrite the following sentence so that it is more fluent.", "Rewrite the following sentence so that it is simpler."] %} {% else %} {% set questions= [ "Rewrite the following sentence so that it conveys the information more poorly.", "Rewrite the following sentence so that it is less fluent.", "Rewrite the following sentence so that it is more complicated."] %} {% endif %} {{questions[aspect]}} {{original}}
