feature: Optional OCR-Assisted Draft Pre-Fill
This commit is contained in:
@@ -2,7 +2,8 @@ public record DraftPayloadResponse(
|
||||
Guid BatchId,
|
||||
string Status,
|
||||
string BatchType,
|
||||
BatchTypeFieldRequirements FieldRequirements,
|
||||
BatchTypeFieldRequirements FieldRequirements,
|
||||
OcrConfidenceMap? OcrConfidence,
|
||||
DraftPatientDto? Patient,
|
||||
DraftEncounterDto? Encounter,
|
||||
List<DraftObservationDto> Observations
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public record OcrConfidenceMap(
|
||||
string Provider,
|
||||
DateTimeOffset ProcessedAt,
|
||||
int DurationMs,
|
||||
Dictionary<string, double> FieldConfidences
|
||||
);
|
||||
Reference in New Issue
Block a user