fix: recognize extended chair-position placeholders as empty
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 1m35s
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 1m35s
The legal-analyst agent was generating a longer placeholder form [ימולא ע"י יו"ר הוועדה — עמדה/הנחיה לגבי סוגיה זו שתשמש את סוכן הכתיבה] which _is_placeholder() did not match (substring check fails because ] is further along in the longer form). Result: UI showed "✓ עמדה נקבעה" (green) for all 4 issues even though no chair direction had been entered. Fixes: 1. research_md.py: add regex fallback — any text starting with [ימולא is a placeholder 2. legal-analyst.md: template now emits the standard short placeholder only Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -400,7 +400,7 @@ X שאלות עומדות להכרעה:
|
|||||||
- [אם נמצאו — חיסכון או הבחנה?]
|
- [אם נמצאו — חיסכון או הבחנה?]
|
||||||
|
|
||||||
**עמדת ועדת הערר:**
|
**עמדת ועדת הערר:**
|
||||||
[ימולא ע"י יו"ר הוועדה — עמדה/הנחיה לגבי סוגיה זו שתשמש את סוכן הכתיבה]
|
[ימולא ע"י יו"ר הוועדה]
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,9 @@ def _is_placeholder(text: str) -> bool:
|
|||||||
for ph in CHAIR_POSITION_PLACEHOLDERS:
|
for ph in CHAIR_POSITION_PLACEHOLDERS:
|
||||||
if ph in stripped:
|
if ph in stripped:
|
||||||
return True
|
return True
|
||||||
|
# Extended placeholders: [ימולא ע"י יו"ר הוועדה — extra descriptive text]
|
||||||
|
if re.match(r'^\[ימולא\b', stripped):
|
||||||
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user