feat(FN-3175): document global tool output persistence setting in settings

Added documentation for the global tool output persistence setting to the settings reference guide.

Fusion-Task-Id: FN-3175
This commit is contained in:
Fusion
2026-05-02 02:05:15 -07:00
committed by gsxdsm
parent f87f61fd75
commit 477e1ad4ab
16 changed files with 128 additions and 2 deletions

View File

@@ -1846,6 +1846,22 @@ export function SettingsModal({
</small>
</div>
<CliBinaryPanel />
<div className="form-group">
<label htmlFor="persistAgentToolOutput" className="checkbox-label">
<input
id="persistAgentToolOutput"
type="checkbox"
checked={form.persistAgentToolOutput !== false}
onChange={(e) =>
setForm((f) => ({ ...f, persistAgentToolOutput: e.target.checked }))
}
/>
Save tool output in agent logs
</label>
<div className="settings-field-help">
When disabled, tool rows are still logged but detailed tool payloads are omitted.
</div>
</div>
<div className="form-group">
<label htmlFor="fnBinaryCheckEnabled" className="checkbox-label">
<input