├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── question.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── linting.yaml │ └── pypi-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh.md ├── assets ├── logo.png └── rag_anything_framework.png ├── docs ├── batch_processing.md ├── context_aware_processing.md ├── enhanced_markdown.md └── offline_setup.md ├── env.example ├── examples ├── batch_processing_example.py ├── enhanced_markdown_example.py ├── image_format_test.py ├── insert_content_list_example.py ├── lmstudio_integration_example.py ├── modalprocessors_example.py ├── office_document_test.py ├── raganything_example.py └── text_format_test.py ├── pyproject.toml ├── raganything ├── __init__.py ├── base.py ├── batch.py ├── batch_parser.py ├── config.py ├── enhanced_markdown.py ├── modalprocessors.py ├── parser.py ├── processor.py ├── prompt.py ├── query.py ├── raganything.py └── utils.py ├── requirements.txt ├── scripts └── create_tiktoken_cache.py └── setup.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/linting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/workflows/linting.yaml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/rag_anything_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/assets/rag_anything_framework.png -------------------------------------------------------------------------------- /docs/batch_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/docs/batch_processing.md -------------------------------------------------------------------------------- /docs/context_aware_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/docs/context_aware_processing.md -------------------------------------------------------------------------------- /docs/enhanced_markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/docs/enhanced_markdown.md -------------------------------------------------------------------------------- /docs/offline_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/docs/offline_setup.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/env.example -------------------------------------------------------------------------------- /examples/batch_processing_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/batch_processing_example.py -------------------------------------------------------------------------------- /examples/enhanced_markdown_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/enhanced_markdown_example.py -------------------------------------------------------------------------------- /examples/image_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/image_format_test.py -------------------------------------------------------------------------------- /examples/insert_content_list_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/insert_content_list_example.py -------------------------------------------------------------------------------- /examples/lmstudio_integration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/lmstudio_integration_example.py -------------------------------------------------------------------------------- /examples/modalprocessors_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/modalprocessors_example.py -------------------------------------------------------------------------------- /examples/office_document_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/office_document_test.py -------------------------------------------------------------------------------- /examples/raganything_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/raganything_example.py -------------------------------------------------------------------------------- /examples/text_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/examples/text_format_test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/pyproject.toml -------------------------------------------------------------------------------- /raganything/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/__init__.py -------------------------------------------------------------------------------- /raganything/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/base.py -------------------------------------------------------------------------------- /raganything/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/batch.py -------------------------------------------------------------------------------- /raganything/batch_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/batch_parser.py -------------------------------------------------------------------------------- /raganything/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/config.py -------------------------------------------------------------------------------- /raganything/enhanced_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/enhanced_markdown.py -------------------------------------------------------------------------------- /raganything/modalprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/modalprocessors.py -------------------------------------------------------------------------------- /raganything/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/parser.py -------------------------------------------------------------------------------- /raganything/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/processor.py -------------------------------------------------------------------------------- /raganything/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/prompt.py -------------------------------------------------------------------------------- /raganything/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/query.py -------------------------------------------------------------------------------- /raganything/raganything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/raganything.py -------------------------------------------------------------------------------- /raganything/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/raganything/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/create_tiktoken_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/scripts/create_tiktoken_cache.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/RAG-Anything/HEAD/setup.py --------------------------------------------------------------------------------