├── LICENSE.txt ├── README.md ├── advanced_rag_techniques ├── basic_unstructured_rag.ipynb ├── contextual_rag.ipynb ├── fusion_rag.ipynb ├── hybrid_rag.ipynb ├── hyde_rag.ipynb ├── naive_rag.ipynb ├── parent_document_retriever.ipynb └── rewrite_retrieve_read.ipynb ├── agent_techniques ├── react.ipynb ├── reflexion.ipynb └── rewoo.ipynb ├── agentic_rag_techniques ├── adaptive_rag.ipynb ├── agentic_rag_using_deepseek_qdrant_and_langchain.ipynb ├── basic_agentic_rag.ipynb ├── corrective_rag.ipynb └── self_rag.ipynb └── data ├── context.csv └── tesla_q3.pdf /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/README.md -------------------------------------------------------------------------------- /advanced_rag_techniques/basic_unstructured_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/basic_unstructured_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/contextual_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/contextual_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/fusion_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/fusion_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/hybrid_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/hybrid_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/hyde_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/hyde_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/naive_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/naive_rag.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/parent_document_retriever.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/parent_document_retriever.ipynb -------------------------------------------------------------------------------- /advanced_rag_techniques/rewrite_retrieve_read.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/advanced_rag_techniques/rewrite_retrieve_read.ipynb -------------------------------------------------------------------------------- /agent_techniques/react.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agent_techniques/react.ipynb -------------------------------------------------------------------------------- /agent_techniques/reflexion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agent_techniques/reflexion.ipynb -------------------------------------------------------------------------------- /agent_techniques/rewoo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agent_techniques/rewoo.ipynb -------------------------------------------------------------------------------- /agentic_rag_techniques/adaptive_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agentic_rag_techniques/adaptive_rag.ipynb -------------------------------------------------------------------------------- /agentic_rag_techniques/agentic_rag_using_deepseek_qdrant_and_langchain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agentic_rag_techniques/agentic_rag_using_deepseek_qdrant_and_langchain.ipynb -------------------------------------------------------------------------------- /agentic_rag_techniques/basic_agentic_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agentic_rag_techniques/basic_agentic_rag.ipynb -------------------------------------------------------------------------------- /agentic_rag_techniques/corrective_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agentic_rag_techniques/corrective_rag.ipynb -------------------------------------------------------------------------------- /agentic_rag_techniques/self_rag.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/agentic_rag_techniques/self_rag.ipynb -------------------------------------------------------------------------------- /data/context.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/data/context.csv -------------------------------------------------------------------------------- /data/tesla_q3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athina-ai/rag-cookbooks/HEAD/data/tesla_q3.pdf --------------------------------------------------------------------------------