feat: surface disputed extracted values to critic and specialist prompts

This commit is contained in:
2026-08-10 10:47:34 -05:00
parent df4d15fd0c
commit 8631a26006
4 changed files with 34 additions and 1 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ from typing import Dict, List
def _norm(value) -> str:
return re.sub(r"\s+", " ", str(value or "").strip().lower())
return re.sub(r"\s+", " ", ("" if value is None else str(value)).strip().lower())
def find_disputes(assertions: List[Dict]) -> List[Dict]: