()
| 733 | const MITIGATION_EXEMPT_MODELS = new Set(['claude-opus-4-6']) |
| 734 | |
| 735 | function shouldIncludeFileReadMitigation(): boolean { |
| 736 | const shortName = getCanonicalName(getMainLoopModel()) |
| 737 | return !MITIGATION_EXEMPT_MODELS.has(shortName) |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * Side-channel from call() to mapToolResultToToolResultBlockParam: mtime |
no test coverage detected