feature: Optional OCR-Assisted Draft Pre-Fill

This commit is contained in:
voltsrage
2026-06-28 01:28:54 +08:00
parent 5039dbb979
commit c160c5f912
42 changed files with 3592 additions and 33 deletions
@@ -0,0 +1,5 @@
public record OcrExtractedField(
string FieldName, // e.g. "patient.fullName", "observation.HEART_RATE.value"
string RawValue, // raw text as extracted
double Confidence // 0.0 1.0
);
@@ -0,0 +1,5 @@
public record OcrExtractionResult(
List<OcrExtractedField> Fields,
string RawText,
int DurationMs
);