From 17ee6e6e6f2ae1ea9e02d18f4448881367b13d1b Mon Sep 17 00:00:00 2001 From: 0xallam Date: Wed, 7 Jan 2026 19:32:04 -0800 Subject: [PATCH] chore: increase truncation limit to 8000 chars --- strix/llm/dedupe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strix/llm/dedupe.py b/strix/llm/dedupe.py index 3e74137..99d3505 100644 --- a/strix/llm/dedupe.py +++ b/strix/llm/dedupe.py @@ -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