2023-12-17 21:55:23 -05:00
|
|
|
instruction_template: |-
|
2023-12-18 20:45:06 -05:00
|
|
|
{%- set ns = namespace(found=false) -%}
|
2023-12-17 21:55:23 -05:00
|
|
|
{%- for message in messages -%}
|
|
|
|
{%- if message['role'] == 'system' -%}
|
2023-12-18 20:45:06 -05:00
|
|
|
{%- set ns.found = true -%}
|
2023-12-17 21:55:23 -05:00
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
2023-12-18 20:45:06 -05:00
|
|
|
{%- if not ns.found -%}
|
2023-12-17 21:55:23 -05:00
|
|
|
{{-'SYSTEM: ' + '' + '\n' -}}
|
|
|
|
{%- endif %}
|
|
|
|
{%- for message in messages %}
|
|
|
|
{%- if message['role'] == 'system' -%}
|
|
|
|
{{-'SYSTEM: ' + message['content'] + '\n' -}}
|
|
|
|
{%- else -%}
|
|
|
|
{%- if message['role'] == 'user' -%}
|
|
|
|
{{-'USER: ' + message['content'] + '\n'-}}
|
|
|
|
{%- else -%}
|
|
|
|
{{-'ASSISTANT: ' + message['content'] + '</s>\n' -}}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- if add_generation_prompt -%}
|
|
|
|
{{-'ASSISTANT:'-}}
|
|
|
|
{%- endif -%}
|