chore: increase truncation limit to 8000 chars

This commit is contained in:
0xallam
2026-01-07 19:32:04 -08:00
committed by Ahmed Allam
parent 01ae348da8
commit 17ee6e6e6f

View File

@@ -91,8 +91,8 @@ def _prepare_report_for_comparison(report: dict[str, Any]) -> dict[str, Any]:
for field in relevant_fields:
if report.get(field):
value = report[field]
if isinstance(value, str) and len(value) > 2000:
value = value[:2000] + "...[truncated]"
if isinstance(value, str) and len(value) > 8000:
value = value[:8000] + "...[truncated]"
cleaned[field] = value
return cleaned