mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
UI: don't export the instruction template on "Save UI defaults to settings.yaml"
This commit is contained in:
parent
d05846eae5
commit
17df2d7bdf
@ -237,7 +237,7 @@ def apply_interface_values(state, use_persistent=False):
|
|||||||
|
|
||||||
def save_settings(state, preset, extensions_list, show_controls, theme_state):
|
def save_settings(state, preset, extensions_list, show_controls, theme_state):
|
||||||
output = copy.deepcopy(shared.settings)
|
output = copy.deepcopy(shared.settings)
|
||||||
exclude = ['name2', 'greeting', 'context', 'turn_template', 'truncation_length']
|
exclude = ['name2', 'greeting', 'context', 'truncation_length', 'instruction_template_str']
|
||||||
for k in state:
|
for k in state:
|
||||||
if k in shared.settings and k not in exclude:
|
if k in shared.settings and k not in exclude:
|
||||||
output[k] = state[k]
|
output[k] = state[k]
|
||||||
@ -269,7 +269,7 @@ def save_settings(state, preset, extensions_list, show_controls, theme_state):
|
|||||||
if key in shared.default_settings and output[key] == shared.default_settings[key]:
|
if key in shared.default_settings and output[key] == shared.default_settings[key]:
|
||||||
output.pop(key)
|
output.pop(key)
|
||||||
|
|
||||||
return yaml.dump(output, sort_keys=False, width=float("inf"))
|
return yaml.dump(output, sort_keys=False, width=float("inf"), allow_unicode=True)
|
||||||
|
|
||||||
|
|
||||||
def create_refresh_button(refresh_component, refresh_method, refreshed_args, elem_class, interactive=True):
|
def create_refresh_button(refresh_component, refresh_method, refreshed_args, elem_class, interactive=True):
|
||||||
|
Loading…
Reference in New Issue
Block a user