From c212a71425003dd88cc544840bc9d1cc95479274 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Wed, 20 Dec 2023 15:51:00 +0200 Subject: [PATCH] Fix ignore list of preset manager --- default/config.yaml | 2 +- public/scripts/preset-manager.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/default/config.yaml b/default/config.yaml index edee81009..48fa68cec 100644 --- a/default/config.yaml +++ b/default/config.yaml @@ -55,7 +55,7 @@ openai: # Will send a random user ID to OpenAI completion API randomizeUserId: false # If not empty, will add this as a system message to the start of every caption completion prompt - # Example: "Perform the instructions to the best of your ability.\n\n" (for LLaVA) + # Example: "Perform the instructions to the best of your ability.\n" (for LLaVA) # Not used in image inlining mode captionSystemPrompt: "" # -- DEEPL TRANSLATION CONFIGURATION -- diff --git a/public/scripts/preset-manager.js b/public/scripts/preset-manager.js index 3a7a48907..3f9334f00 100644 --- a/public/scripts/preset-manager.js +++ b/public/scripts/preset-manager.js @@ -304,7 +304,12 @@ class PresetManager { 'streaming_kobold', 'enabled', 'seed', + 'legacy_api', 'mancer_model', + 'togetherai_model', + 'ollama_model', + 'server_urls', + 'type', ]; const settings = Object.assign({}, getSettingsByApiId(this.apiId));