├── .github └── workflows │ └── ruff.yml ├── .gitignore ├── LICENSE ├── README.md ├── byaldi.webp ├── byaldi ├── RAGModel.py ├── __init__.py ├── colpali.py ├── integrations │ ├── __init__.py │ └── _langchain.py └── objects.py ├── examples ├── chat_with_your_pdf.ipynb ├── docs │ ├── attention.pdf │ ├── attention_table.png │ ├── attention_with_a_mustache.pdf │ ├── financial_report.pdf │ └── product_c.png └── quick_overview.ipynb ├── outside_world └── docs │ ├── attention.pdf │ └── attention_with_a_mustache.pdf ├── pyproject.toml └── tests ├── all.py ├── test_colpali.py ├── test_colqwen.py └── test_e2e_rag.py /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/README.md -------------------------------------------------------------------------------- /byaldi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi.webp -------------------------------------------------------------------------------- /byaldi/RAGModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/RAGModel.py -------------------------------------------------------------------------------- /byaldi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/__init__.py -------------------------------------------------------------------------------- /byaldi/colpali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/colpali.py -------------------------------------------------------------------------------- /byaldi/integrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/integrations/__init__.py -------------------------------------------------------------------------------- /byaldi/integrations/_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/integrations/_langchain.py -------------------------------------------------------------------------------- /byaldi/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/byaldi/objects.py -------------------------------------------------------------------------------- /examples/chat_with_your_pdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/chat_with_your_pdf.ipynb -------------------------------------------------------------------------------- /examples/docs/attention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/docs/attention.pdf -------------------------------------------------------------------------------- /examples/docs/attention_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/docs/attention_table.png -------------------------------------------------------------------------------- /examples/docs/attention_with_a_mustache.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/docs/attention_with_a_mustache.pdf -------------------------------------------------------------------------------- /examples/docs/financial_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/docs/financial_report.pdf -------------------------------------------------------------------------------- /examples/docs/product_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/docs/product_c.png -------------------------------------------------------------------------------- /examples/quick_overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/examples/quick_overview.ipynb -------------------------------------------------------------------------------- /outside_world/docs/attention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/outside_world/docs/attention.pdf -------------------------------------------------------------------------------- /outside_world/docs/attention_with_a_mustache.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/outside_world/docs/attention_with_a_mustache.pdf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/tests/all.py -------------------------------------------------------------------------------- /tests/test_colpali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/tests/test_colpali.py -------------------------------------------------------------------------------- /tests/test_colqwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/tests/test_colqwen.py -------------------------------------------------------------------------------- /tests/test_e2e_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/byaldi/HEAD/tests/test_e2e_rag.py --------------------------------------------------------------------------------