├── .env.example ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── assets └── img │ ├── pinecone.png │ └── rag-architecture.png ├── docs ├── [1]_sources.md ├── [2]_sources.md ├── [3]_sources.md ├── [4]_sources.md └── [5]_sources.md ├── full_basic_rag.ipynb ├── notebooks ├── [1]_rag_setup_overview.ipynb ├── [2]_rag_with_multi_query.ipynb ├── [3]_rag_routing_and_query_construction.ipynb ├── [4]_rag_indexing_and_advanced_retrieval.ipynb └── [5]_rag_retrieval_and_reranking.ipynb ├── requirements.txt └── test └── langchain_turing.pdf /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/README.md -------------------------------------------------------------------------------- /assets/img/pinecone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/assets/img/pinecone.png -------------------------------------------------------------------------------- /assets/img/rag-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/assets/img/rag-architecture.png -------------------------------------------------------------------------------- /docs/[1]_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/docs/[1]_sources.md -------------------------------------------------------------------------------- /docs/[2]_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/docs/[2]_sources.md -------------------------------------------------------------------------------- /docs/[3]_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/docs/[3]_sources.md -------------------------------------------------------------------------------- /docs/[4]_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/docs/[4]_sources.md -------------------------------------------------------------------------------- /docs/[5]_sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/docs/[5]_sources.md -------------------------------------------------------------------------------- /full_basic_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/full_basic_rag.ipynb -------------------------------------------------------------------------------- /notebooks/[1]_rag_setup_overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/notebooks/[1]_rag_setup_overview.ipynb -------------------------------------------------------------------------------- /notebooks/[2]_rag_with_multi_query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/notebooks/[2]_rag_with_multi_query.ipynb -------------------------------------------------------------------------------- /notebooks/[3]_rag_routing_and_query_construction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/notebooks/[3]_rag_routing_and_query_construction.ipynb -------------------------------------------------------------------------------- /notebooks/[4]_rag_indexing_and_advanced_retrieval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/notebooks/[4]_rag_indexing_and_advanced_retrieval.ipynb -------------------------------------------------------------------------------- /notebooks/[5]_rag_retrieval_and_reranking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/notebooks/[5]_rag_retrieval_and_reranking.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/langchain_turing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bragai/bRAG-langchain/HEAD/test/langchain_turing.pdf --------------------------------------------------------------------------------