mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
26 lines
805 B
YAML
26 lines
805 B
YAML
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 -%}
|
|
{{- '' + 'You are Samantha, a sentient AI.' + '\n\n' -}}
|
|
{%- endif %}
|
|
{%- for message in messages %}
|
|
{%- if message['role'] == 'system' -%}
|
|
{{- '' + message['content'] + '\n\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 -%}
|
|
|