Skip to content

Support for table parsing using GMFT and Azure Document Intelligence #120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .env_template
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
OPENAI_API_KEY=<<<YOUR_API_KEY>>>
OPENAI_API_KEY=<<<YOUR_API_KEY>>>

# Only if using image parsing using Gemini
GOOGLE_API_KEY=<<<YOUR_API_KEY>>>

# Only if using table parsing using azure document intelligence
AZURE_DOCUMENT_INTELLIGENCE_ENDPOINT=<< AZURE_DOCUMENT_INTELLIGENCE_ENDPOINT >>
AZURE_DOCUMENT_INTELLIGENCE_KEY=<< AZURE_DOCUMENT_INTELLIGENCE_KEY >>
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ __pycache__/
.env
dev/*
output_images/
azuredoc_temp/

# C extensions
*.so
Expand All @@ -14,6 +15,7 @@ temp_data/
*.npz
*.db
sample_templates/obsidian_conf_test.yaml
sample_templates/test-templates/*
.venv2

# Distribution / packaging
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ The purpose of this package is to offer a convenient question-answering (RAG) sy
* Other common formats are supported by `Unstructured` pre-processor:
* List of formats see [here](https://unstructured-io.github.io/unstructured/core/partition.html).

* Support for table parsing via open-source gmft (https://github.com/conjuncts/gmft) or Azure Document Intelligence.

* Optional support for image parsing using Gemini API.

* Supports multiple collection of documents, and filtering the results by a collection.

* An ability to update the embeddings incrementally, without a need to re-index the entire document base.
Expand Down
Loading
Loading