RICS / scripts /emit_p2_js.py
StormShadow308's picture
Add demo documentation and Docker setup for v2 report generation system
aad7814
Raw
History Blame Contribute Delete
317 Bytes
"""Emit frontend highConfidence[] from backend lexicon."""
from __future__ import annotations
from backend.core.notes_high_confidence_lexicon import HIGH_CONFIDENCE_LEXICON
print(" const highConfidence = [")
for sid, pat in HIGH_CONFIDENCE_LEXICON:
print(f" {{ code:'{sid}', rx:/{pat}/i }},")
print(" ];")