mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
26 lines
934 B
YAML
26 lines
934 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 -%}
|
|
{{- '' + '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 -%}
|
|
|