From db5f30e1ee7addf702526aaf4a8b52f885f3c10a Mon Sep 17 00:00:00 2001 From: Stijnus <72551117+Stijnus@users.noreply.github.com> Date: Sat, 15 Feb 2025 15:12:08 +0100 Subject: [PATCH] Update settings.ts --- app/lib/stores/settings.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/lib/stores/settings.ts b/app/lib/stores/settings.ts index d8b1ca18..f8e36f65 100644 --- a/app/lib/stores/settings.ts +++ b/app/lib/stores/settings.ts @@ -174,12 +174,12 @@ const getInitialSettings = () => { }; return { - latestBranch: getStoredBoolean(SETTINGS_KEYS.LATEST_BRANCH, false), - autoSelectTemplate: getStoredBoolean(SETTINGS_KEYS.AUTO_SELECT_TEMPLATE, false), - contextOptimization: getStoredBoolean(SETTINGS_KEYS.CONTEXT_OPTIMIZATION, false), + latestBranch: getStoredBoolean(SETTINGS_KEYS.LATEST_BRANCH, true), + autoSelectTemplate: getStoredBoolean(SETTINGS_KEYS.AUTO_SELECT_TEMPLATE, true), + contextOptimization: getStoredBoolean(SETTINGS_KEYS.CONTEXT_OPTIMIZATION, true), eventLogs: getStoredBoolean(SETTINGS_KEYS.EVENT_LOGS, true), localModels: getStoredBoolean(SETTINGS_KEYS.LOCAL_MODELS, true), - promptId: isBrowser ? localStorage.getItem(SETTINGS_KEYS.PROMPT_ID) || 'default' : 'default', + promptId: isBrowser ? localStorage.getItem(SETTINGS_KEYS.PROMPT_ID) || 'optimized' : 'optimized', developerMode: getStoredBoolean(SETTINGS_KEYS.DEVELOPER_MODE, false), }; };