Prompt
{% set class = ["Human", "Bot"] | random %} {% if (0 < (dialog | selectattr("sender_class", "equalto", "Bot") | list | length)) and (0 < (dialog | selectattr("sender_class", "equalto", "Human") | list | length)) %} {% for bp in user_profile %} - "{{ bp | join('') }}" {% endfor %} This profile matches a person saying things like: {% for utterance in dialog %} {% if class == utterance["sender_class"] %} - "{{ utterance["text"] }}" {% endif %}{% endfor %} {{ answer_choices[0] }} of {{ answer_choices[1] }}?
