2023-07-31 12:01:50 -07:00
|
|
|
dark_theme: true
|
2023-08-16 07:03:53 -07:00
|
|
|
show_controls: true
|
2023-08-14 11:46:07 -03:00
|
|
|
start_with: ''
|
2024-07-19 21:42:40 -07:00
|
|
|
mode: chat-instruct
|
2023-09-11 19:30:23 -07:00
|
|
|
chat_style: cai-chat
|
2023-08-14 11:46:07 -03:00
|
|
|
prompt-default: QA
|
|
|
|
prompt-notebook: QA
|
2024-04-09 12:50:16 -03:00
|
|
|
preset: min_p
|
2023-12-07 20:04:52 -03:00
|
|
|
max_new_tokens: 512
|
2023-05-28 22:34:12 -03:00
|
|
|
max_new_tokens_min: 1
|
2023-07-17 17:08:22 -07:00
|
|
|
max_new_tokens_max: 4096
|
2023-08-06 17:22:48 -03:00
|
|
|
negative_prompt: ''
|
2023-12-12 17:23:14 -03:00
|
|
|
seed: -1
|
2023-08-14 11:46:07 -03:00
|
|
|
truncation_length: 2048
|
2023-12-12 17:23:14 -03:00
|
|
|
max_tokens_second: 0
|
2024-04-26 10:14:51 -03:00
|
|
|
max_updates_second: 0
|
2024-01-17 17:09:36 -03:00
|
|
|
prompt_lookup_num_tokens: 0
|
2023-08-14 11:46:07 -03:00
|
|
|
custom_stopping_strings: ''
|
2023-12-12 17:23:14 -03:00
|
|
|
custom_token_bans: ''
|
2023-08-14 11:46:07 -03:00
|
|
|
auto_max_new_tokens: false
|
|
|
|
ban_eos_token: false
|
|
|
|
add_bos_token: true
|
|
|
|
skip_special_tokens: true
|
|
|
|
stream: true
|
2025-01-04 17:52:57 -08:00
|
|
|
static_cache: false
|
2023-09-21 17:19:32 -03:00
|
|
|
character: Assistant
|
2023-12-12 17:23:14 -03:00
|
|
|
name1: You
|
|
|
|
custom_system_message: ''
|
|
|
|
instruction_template_str: |-
|
2023-12-18 17:47:35 -08:00
|
|
|
{%- set ns = namespace(found=false) -%}
|
2023-12-12 17:23:14 -03:00
|
|
|
{%- for message in messages -%}
|
|
|
|
{%- if message['role'] == 'system' -%}
|
2023-12-18 17:47:35 -08:00
|
|
|
{%- set ns.found = true -%}
|
2023-12-12 17:23:14 -03:00
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
2023-12-18 17:47:35 -08:00
|
|
|
{%- if not ns.found -%}
|
2023-12-12 17:23:14 -03:00
|
|
|
{{- '' + '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 -%}
|
|
|
|
chat_template_str: |-
|
|
|
|
{%- for message in messages %}
|
|
|
|
{%- if message['role'] == 'system' -%}
|
2024-03-11 23:41:57 -03:00
|
|
|
{%- if message['content'] -%}
|
|
|
|
{{- message['content'] + '\n\n' -}}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- if user_bio -%}
|
|
|
|
{{- user_bio + '\n\n' -}}
|
|
|
|
{%- endif -%}
|
2023-12-12 17:23:14 -03:00
|
|
|
{%- else -%}
|
|
|
|
{%- if message['role'] == 'user' -%}
|
|
|
|
{{- name1 + ': ' + message['content'] + '\n'-}}
|
|
|
|
{%- else -%}
|
|
|
|
{{- name2 + ': ' + message['content'] + '\n' -}}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
2023-07-31 12:01:50 -07:00
|
|
|
chat-instruct_command: |-
|
|
|
|
Continue the chat dialogue below. Write a single reply for the character "<|character|>".
|
2023-05-28 22:34:12 -03:00
|
|
|
|
2023-07-31 12:01:50 -07:00
|
|
|
<|prompt|>
|
2023-08-14 11:46:07 -03:00
|
|
|
autoload_model: false
|
2023-12-04 02:45:50 +01:00
|
|
|
gallery-items_per_page: 50
|
|
|
|
gallery-open: false
|
2024-04-06 12:43:21 -07:00
|
|
|
default_extensions: []
|