feat(masking): enable tool output masking by default (#18564)

This commit is contained in:
Abhi
2026-02-11 01:21:55 -05:00
committed by GitHub
parent 2af5a3a01e
commit 3776c4d613
6 changed files with 33 additions and 13 deletions

View File

@@ -1471,7 +1471,7 @@ const SETTINGS_SCHEMA = {
label: 'Tool Output Masking',
category: 'Experimental',
requiresRestart: true,
ignoreInDocs: true,
ignoreInDocs: false,
default: {},
description:
'Advanced settings for tool output masking to manage context window efficiency.',
@@ -1482,9 +1482,9 @@ const SETTINGS_SCHEMA = {
label: 'Enable Tool Output Masking',
category: 'Experimental',
requiresRestart: true,
default: false,
default: true,
description: 'Enables tool output masking to save tokens.',
showInDialog: false,
showInDialog: true,
},
toolProtectionThreshold: {
type: 'number',