├── .gitignore ├── Agentic_RAG_Redis_LlamaIndex.ipynb ├── LICENSE ├── README.md ├── env.json └── images ├── architecture.png ├── bedrock.png ├── llamaindex.png ├── llamaindex_agentic_rag_architecture.png └── redis.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | data 3 | -------------------------------------------------------------------------------- /Agentic_RAG_Redis_LlamaIndex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/Agentic_RAG_Redis_LlamaIndex.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/README.md -------------------------------------------------------------------------------- /env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/env.json -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/images/bedrock.png -------------------------------------------------------------------------------- /images/llamaindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/images/llamaindex.png -------------------------------------------------------------------------------- /images/llamaindex_agentic_rag_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/images/llamaindex_agentic_rag_architecture.png -------------------------------------------------------------------------------- /images/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis-developer/agentic-rag/HEAD/images/redis.png --------------------------------------------------------------------------------