mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-25 09:19:23 +01:00
Remove duplicate instruction templates
This commit is contained in:
parent
1f9e25e76a
commit
64a57d9dc2
@ -1,25 +0,0 @@
|
|||||||
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 -%}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
instruction_template: |-
|
|
||||||
{%- set found_item = false -%}
|
|
||||||
{%- for message in messages -%}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{%- set found_item = true -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if not found_item -%}
|
|
||||||
{{- '' + '' + '' -}}
|
|
||||||
{%- endif %}
|
|
||||||
{%- for message in messages %}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{{- '' + message['content'] + '' -}}
|
|
||||||
{%- else -%}
|
|
||||||
{%- if message['role'] == 'user' -%}
|
|
||||||
{{-'<human>: ' + message['content'] + '\n'-}}
|
|
||||||
{%- else -%}
|
|
||||||
{{-'<bot>:' + message['content'] + '\n' -}}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if add_generation_prompt -%}
|
|
||||||
{{-'<bot>:'-}}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
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 user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user\'s questions.' + '\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 -%}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
instruction_template: |-
|
|
||||||
{%- set found_item = false -%}
|
|
||||||
{%- for message in messages -%}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{%- set found_item = true -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if not found_item -%}
|
|
||||||
{{- '' + '' + '' -}}
|
|
||||||
{%- endif %}
|
|
||||||
{%- for message in messages %}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{{- '' + message['content'] + '' -}}
|
|
||||||
{%- else -%}
|
|
||||||
{%- if message['role'] == 'user' -%}
|
|
||||||
{{-'USER: ' + message['content'] + '\n'-}}
|
|
||||||
{%- else -%}
|
|
||||||
{{-'ASSISTANT:' + message['content'] + '\n' -}}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if add_generation_prompt -%}
|
|
||||||
{{-'ASSISTANT:'-}}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
instruction_template: |-
|
|
||||||
{%- set found_item = false -%}
|
|
||||||
{%- for message in messages -%}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{%- set found_item = true -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if not found_item -%}
|
|
||||||
{{- '' + 'Below is an instruction that describes a task. Write a response that appropriately completes the request.' + '\n\n' -}}
|
|
||||||
{%- endif %}
|
|
||||||
{%- for message in messages %}
|
|
||||||
{%- if message['role'] == 'system' -%}
|
|
||||||
{{- '' + message['content'] + '\n\n' -}}
|
|
||||||
{%- else -%}
|
|
||||||
{%- if message['role'] == 'user' -%}
|
|
||||||
{{-'### Instruction:\n' + message['content'] + '\n\n'-}}
|
|
||||||
{%- else -%}
|
|
||||||
{{-'### Response:\n' + message['content'] + '\n\n' -}}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{%- endfor -%}
|
|
||||||
{%- if add_generation_prompt -%}
|
|
||||||
{{-'### Response:\n'-}}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
@ -38,7 +38,7 @@
|
|||||||
instruction_template: 'LLaVA'
|
instruction_template: 'LLaVA'
|
||||||
custom_stopping_strings: '"\n###"'
|
custom_stopping_strings: '"\n###"'
|
||||||
.*llava.*1.5:
|
.*llava.*1.5:
|
||||||
instruction_template: 'LLaVA-v1'
|
instruction_template: 'Vicuna-v1.1'
|
||||||
.*wizard.*mega:
|
.*wizard.*mega:
|
||||||
instruction_template: 'Wizard-Mega'
|
instruction_template: 'Wizard-Mega'
|
||||||
custom_stopping_strings: '"</s>"'
|
custom_stopping_strings: '"</s>"'
|
||||||
@ -108,7 +108,7 @@
|
|||||||
.*bactrian:
|
.*bactrian:
|
||||||
instruction_template: 'Bactrian'
|
instruction_template: 'Bactrian'
|
||||||
.*(h2ogpt-oig-|h2ogpt-oasst1-|h2ogpt-research-oasst1-):
|
.*(h2ogpt-oig-|h2ogpt-oasst1-|h2ogpt-research-oasst1-):
|
||||||
instruction_template: 'H2O-human_bot'
|
instruction_template: 'INCITE-Chat'
|
||||||
.*h2ogpt-gm-:
|
.*h2ogpt-gm-:
|
||||||
instruction_template: 'H2O-prompt_answer'
|
instruction_template: 'H2O-prompt_answer'
|
||||||
.*manticore:
|
.*manticore:
|
||||||
@ -128,7 +128,7 @@
|
|||||||
.*lazarus:
|
.*lazarus:
|
||||||
instruction_template: 'Alpaca'
|
instruction_template: 'Alpaca'
|
||||||
.*guanaco-.*(7|13|33|65)b:
|
.*guanaco-.*(7|13|33|65)b:
|
||||||
instruction_template: 'Guanaco'
|
instruction_template: 'Vicuna-v0'
|
||||||
.*hypermantis:
|
.*hypermantis:
|
||||||
instruction_template: 'Alpaca'
|
instruction_template: 'Alpaca'
|
||||||
.*open-llama-.*-open-instruct:
|
.*open-llama-.*-open-instruct:
|
||||||
@ -144,7 +144,7 @@
|
|||||||
.*wizardcoder:
|
.*wizardcoder:
|
||||||
instruction_template: 'Alpaca'
|
instruction_template: 'Alpaca'
|
||||||
.*minotaur:
|
.*minotaur:
|
||||||
instruction_template: 'Minotaur'
|
instruction_template: 'Manticore Chat'
|
||||||
.*orca_mini:
|
.*orca_mini:
|
||||||
instruction_template: 'Orca Mini'
|
instruction_template: 'Orca Mini'
|
||||||
.*(platypus|gplatty|superplatty):
|
.*(platypus|gplatty|superplatty):
|
||||||
|
Loading…
Reference in New Issue
Block a user