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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user