From a7495bd4cfcbe35808770bdf028926ff2440fe19 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Sat, 28 Mar 2026 02:08:53 -0700 Subject: [PATCH] LLMs: document the llm-reset-no-duplicates behavior --- src/modules/llms/models-modal/ModelsConfiguratorModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/llms/models-modal/ModelsConfiguratorModal.tsx b/src/modules/llms/models-modal/ModelsConfiguratorModal.tsx index bb6503d0c..c7f7686af 100644 --- a/src/modules/llms/models-modal/ModelsConfiguratorModal.tsx +++ b/src/modules/llms/models-modal/ModelsConfiguratorModal.tsx @@ -145,7 +145,7 @@ export function ModelsConfiguratorModal(props: { showPromisedOverlay('llms-reset-parameters', {}, ({ onResolve, onUserReject }) => onResolve(true)} - confirmationText={`Reset all user-customized model parameters and names for ${activeService?.label ?? 'this service'}? All settings such as temperature, reasoning effort, etc. will be reverted to defaults.`} + confirmationText={`Reset all user-customized model parameters and names for ${activeService?.label ?? 'this service'}? All settings such as temperature, reasoning effort, etc. will be reverted to defaults. Duplicated models will not be affected.`} positiveActionText='Reset' />, ).then(() => llmsStoreActions().resetServiceUserParameters(activeServiceId)).catch(() => null /* ignore closure */);