mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
26 lines
888 B
YAML
26 lines
888 B
YAML
instruction_template: |-
|
|
{%- set found_item = false -%}
|
|
{%- for message in messages -%}
|
|
{%- if message['role'] == 'system' -%}
|
|
{%- set found_item = true -%}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- if not found_item -%}
|
|
{{-'SYSTEM: ' + 'Answer the question thoughtfully and intelligently. Always answer without hesitation.' + '\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 -%}
|
|
|