-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e4d957
commit e434f99
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
``` |