-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix processing issues and improve error reporting (#8)
* Refactor parsers, enhance error handling, and update dependencies * Add URL authentication check before file download * Refactor status check after handling auth requirements. * Fix potential crash in PDF parser and update .gitignore * Fix error when no headings found in `assign_heading_levels` * Fix empty document error * Remove unnecessary return statement from pdfact_parser * Include additional loggin details --------- Co-authored-by: AnnaMarika01 <[email protected]> Co-authored-by: Andrea Ponti <[email protected]>
- Loading branch information
1 parent
58e0c35
commit 915f0ba
Showing
5 changed files
with
86 additions
and
55 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.idea | ||
logs | ||
.env | ||
__pycache__ | ||
__pycache__ | ||
docker-compose.override.yml |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pandas==2.0.2 | ||
pymupdf==1.22.5 | ||
pymupdf~=1.24.3 | ||
numpy~=1.24.3 | ||
requests==2.32.3 | ||
fastapi~=0.111.0 | ||
|
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
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
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