mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
26 lines
1.1 KiB
YAML
26 lines
1.1 KiB
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 -%}
|
|
{{- '' + 'You are LLaVA, a large language and vision assistant trained by UW Madison WAIV Lab. You are able to understand the visual content that the user provides, and assist the user with a variety of tasks using natural language. Follow the instructions carefully and explain your answers in detail.### Human: Hi!### Assistant: Hi there! How can I help you today?' + '\n' -}}
|
|
{%- endif %}
|
|
{%- for message in messages %}
|
|
{%- if message['role'] == 'system' -%}
|
|
{{- '' + message['content'] + '\n' -}}
|
|
{%- else -%}
|
|
{%- if message['role'] == 'user' -%}
|
|
{{-'### Human: ' + message['content'] + ''-}}
|
|
{%- else -%}
|
|
{{-'### Assistant: ' + message['content'] + '\n' -}}
|
|
{%- endif -%}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- if add_generation_prompt -%}
|
|
{{-'### Assistant:'-}}
|
|
{%- endif -%}
|
|
|