LLMs: document the llm-reset-no-duplicates behavior

This commit is contained in:
Enrico Ros
2026-03-28 02:08:53 -07:00
parent 76c4919e9c
commit a7495bd4cf
@@ -145,7 +145,7 @@ export function ModelsConfiguratorModal(props: {
showPromisedOverlay('llms-reset-parameters', {}, ({ onResolve, onUserReject }) =>
<ConfirmationModal
open onClose={onUserReject} onPositive={() => 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 */);