Skip to content

Commit

Permalink
WIP sopn process diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
VirginiaDooley committed Sep 24, 2023
1 parent 9e4d957 commit e434f99
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ynr/apps/sopn_parsing/sopn_processing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
```mermaid
graph TD
A[Upload the document] --> B{Is it a PDF?};
B --> Yes --> C[Detect Pages: it more than 1 page?];
C --> Yes --> D[Send it to page extraction and matching];
B --> No --> E[Detect Pages: it more than 1 page?];
E --> Yes --> F[Convert to PDF and send it to page extraction and matching];
E --> No --> G[Send it to Textract for table extraction];
F --> G[Send it to Textract for table extraction];
G --> E[End]
```

0 comments on commit e434f99

Please sign in to comment.