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
+1 -1
View File
@@ -758,7 +758,7 @@ export class Config {
this.modelAvailabilityService = new ModelAvailabilityService();
this.experimentalJitContext = params.experimentalJitContext ?? false;
this.toolOutputMasking = {
enabled: params.toolOutputMasking?.enabled ?? false,
enabled: params.toolOutputMasking?.enabled ?? true,
toolProtectionThreshold:
params.toolOutputMasking?.toolProtectionThreshold ??
DEFAULT_TOOL_PROTECTION_THRESHOLD,