├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── bug_report.md │ ├── feature-request.md │ ├── feature_request.md │ └── update-request.md ├── SUPPORT.md ├── pull_request_template.md └── workflows │ ├── docker-image.yml │ └── python-publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── .gitbook │ └── assets │ │ ├── Twitter header - 1.png │ │ └── image.png ├── README.md ├── SUMMARY.md ├── api.md ├── assets │ ├── hero_image.png │ ├── hero_image_2.png │ └── omniparse_logo.png ├── deployment.md ├── examples │ ├── omniprase-x-langchain.md │ ├── omniprase-x-llamaindex.md │ └── vision-rag-using-omniparse.md ├── installation.md └── integration.md ├── download.py ├── examples └── OmniParse_GoogleColab.ipynb ├── omniparse ├── __init__.py ├── chunking │ └── __init__.py ├── demo.py ├── documents │ ├── __init__.py │ └── router.py ├── extraction │ └── __init__.py ├── image │ ├── __init__.py │ ├── process.py │ ├── router.py │ └── utils.py ├── media │ ├── __init__.py │ ├── router.py │ └── utils.py ├── models │ └── __init__.py ├── sheets │ └── __init__.py ├── utils.py └── web │ ├── __init__.py │ ├── config.py │ ├── crawler_strategy.py │ ├── model_loader.py │ ├── models.py │ ├── prompts.py │ ├── router.py │ ├── utils.py │ └── web_crawler.py ├── pyproject.toml ├── python-sdk ├── omniparse_client │ ├── __init__.py │ ├── omniparse.py │ └── utils.py └── pyproject.toml └── server.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update-request.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitbook/assets/Twitter header - 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/.gitbook/assets/Twitter header - 1.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/.gitbook/assets/image.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/assets/hero_image.png -------------------------------------------------------------------------------- /docs/assets/hero_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/assets/hero_image_2.png -------------------------------------------------------------------------------- /docs/assets/omniparse_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/assets/omniparse_logo.png -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/examples/omniprase-x-langchain.md: -------------------------------------------------------------------------------- 1 | # OmniPrase x Langchain 2 | 3 | -------------------------------------------------------------------------------- /docs/examples/omniprase-x-llamaindex.md: -------------------------------------------------------------------------------- 1 | # OmniPrase x LlamaIndex 2 | 3 | Example coming soon 4 | -------------------------------------------------------------------------------- /docs/examples/vision-rag-using-omniparse.md: -------------------------------------------------------------------------------- 1 | # Vision RAG using OmniParse 2 | 3 | -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/docs/integration.md -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/download.py -------------------------------------------------------------------------------- /examples/OmniParse_GoogleColab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/examples/OmniParse_GoogleColab.ipynb -------------------------------------------------------------------------------- /omniparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/__init__.py -------------------------------------------------------------------------------- /omniparse/chunking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/chunking/__init__.py -------------------------------------------------------------------------------- /omniparse/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/demo.py -------------------------------------------------------------------------------- /omniparse/documents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/documents/__init__.py -------------------------------------------------------------------------------- /omniparse/documents/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/documents/router.py -------------------------------------------------------------------------------- /omniparse/extraction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniparse/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/image/__init__.py -------------------------------------------------------------------------------- /omniparse/image/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/image/process.py -------------------------------------------------------------------------------- /omniparse/image/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/image/router.py -------------------------------------------------------------------------------- /omniparse/image/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/image/utils.py -------------------------------------------------------------------------------- /omniparse/media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/media/__init__.py -------------------------------------------------------------------------------- /omniparse/media/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/media/router.py -------------------------------------------------------------------------------- /omniparse/media/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/media/utils.py -------------------------------------------------------------------------------- /omniparse/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/models/__init__.py -------------------------------------------------------------------------------- /omniparse/sheets/__init__.py: -------------------------------------------------------------------------------- 1 | ## For excel csv and other table/ sheet based file 2 | -------------------------------------------------------------------------------- /omniparse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/utils.py -------------------------------------------------------------------------------- /omniparse/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/__init__.py -------------------------------------------------------------------------------- /omniparse/web/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/config.py -------------------------------------------------------------------------------- /omniparse/web/crawler_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/crawler_strategy.py -------------------------------------------------------------------------------- /omniparse/web/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/model_loader.py -------------------------------------------------------------------------------- /omniparse/web/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/models.py -------------------------------------------------------------------------------- /omniparse/web/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/prompts.py -------------------------------------------------------------------------------- /omniparse/web/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/router.py -------------------------------------------------------------------------------- /omniparse/web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/utils.py -------------------------------------------------------------------------------- /omniparse/web/web_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/omniparse/web/web_crawler.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python-sdk/omniparse_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/python-sdk/omniparse_client/__init__.py -------------------------------------------------------------------------------- /python-sdk/omniparse_client/omniparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/python-sdk/omniparse_client/omniparse.py -------------------------------------------------------------------------------- /python-sdk/omniparse_client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/python-sdk/omniparse_client/utils.py -------------------------------------------------------------------------------- /python-sdk/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/python-sdk/pyproject.toml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithya-s-k/omniparse/HEAD/server.py --------------------------------------------------------------------------------