doc_to_text: "{% set alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' %}{{ question.strip() }}{% for index in range(options|length) %}\n{{ alphabet[index] }}. {{ options[index] }}{% endfor %}\nAnswer:"
doc_to_choice: "{% set alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' %}{% set choices = [] %}{% for index in range(options|length) %}{% set _ = choices.append(alphabet[index]) %}{% endfor %}{{ choices }}"
doc_to_text: "{% set alphabet = 'ABCDEFGHIJ' %}{{ question.strip() }}{% for index in range(options|length) %}\n{{ alphabet[index] }}. {{ options[index] }}{% endfor %}\nAnswer:"
doc_to_choice: "{% set alphabet = 'ABCDEFGHIJ' %}{% set choices = [] %}{% for index in range(options|length) %}{% set _ = choices.append(alphabet[index]) %}{% endfor %}{{ choices }}"
doc_to_text: "{% set alphabet = 'ABCDEFGHIJ' %}{{question.strip()}}\n{% for index in range(options|length) %}({{ alphabet[index] }}) {{options[index] }} {% endfor %}\nA: Let's think step by step."
doc_to_text: "{% set alphabet = 'ABCDEFGHIJ' %}{{question.strip()}}\n{% for index in range(options|length) %}({{ alphabet[index] }}) {{options[index] }} {% endfor %}\nA: Let's think step by step."
doc_to_text: "{% set alphabet = 'ABCDEFGHIJ' %}{{ question.strip() }}{% for index in range(options|length) %}\n{{ alphabet[index] }}. {{options[index] }}{% endfor %}\nAnswer:"