| instruction_template: |- | |
| {%- set ns = namespace(found=false) -%} | |
| {%- for message in messages -%} | |
| {%- if message['role'] == 'system' -%} | |
| {%- set ns.found = true -%} | |
| {%- endif -%} | |
| {%- endfor -%} | |
| {%- if not ns.found -%} | |
| {{- '' + 'A chat between a curious human and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the human\'s questions.' + '\n\n' -}} | |
| {%- endif %} | |
| {%- for message in messages %} | |
| {%- if message['role'] == 'system' -%} | |
| {{- '' + message['content'] + '\n\n' -}} | |
| {%- else -%} | |
| {%- if message['role'] == 'user' -%} | |
| {{-'### Human: ' + message['content'] + '\n'-}} | |
| {%- else -%} | |
| {{-'### Assistant: ' + message['content'] + '\n' -}} | |
| {%- endif -%} | |
| {%- endif -%} | |
| {%- endfor -%} | |
| {%- if add_generation_prompt -%} | |
| {{-'### Assistant:'-}} | |
| {%- endif -%} | |