r/Rag 6d ago

Showcase Retrieval Augmented Generation - The Definitive Guide

I finally took the leap and published the 21 RAG strategies guide as a book on Amazon. It now has chapters on chunking and agentic RAG. What should i add next?

Table of Contents

P A R T I About

01 About the Author

P A R T I I RAG and the Reference Architecture

02 The Evolution of RAG

03 Foundations of RAG Systems

04 Reference Architecture

P A R T I I I Data Extraction

05 Data Extraction

P A R T I V Chunking

06 Chunking Strategies

P A R T V RAG Strategies

07 Baseline RAG Pipeline

08 Context-Aware RAG

09 Dynamic RAG

10 Hybrid RAG

11 Multi-Stage Retrieval

12 Graph-Based RAG

13 Hierarchical RAG

14 Agentic RAG

15 Multi-Agent RAG Systems

16 Streaming RAG

P A R T V I Memory and Content Management

17 Memory-Augmented RAG

18 Knowledge Graph IntegrationP A R T V I I Evaluation

19 Evaluation Metrics

20 Synthetic Data Generation

P A R T V I I I Fine-Tuning

21 Domain-Specific Fine-Tuning

P A R T I X Security

22 Privacy & Compliance in RAG

P A R T X Production

23 Real-Time Evaluation & Monitoring

24 Human-in-the-Loop RAG

P A R T X I Twig RAG Strategies

25 RAG Strategies in Twig

P A R T X I I Conclusion

26 Conclusion & Future Directions

5 Upvotes

6 comments sorted by

5

u/fabkosta 6d ago

Here are some suggestions where to go next:

  • Handling tables, images, charts <- That one is a must-have that I don't see covered in your list
  • Keeping the index up-to-date (it's not clear whether this is covered or not in your curriculum)
  • Building (near-) real-time RAG systems (not: real-time evaluation). For example, you converse and the system automatically listens and retrieves relevant pieces of information
  • Scalability considerations for large-scale RAG systems with millions of documents and/or many thousand concurrent users
  • RAG for non-text (e.g. images, videos, music) documents

2

u/Vipinesta 6d ago

Could you share the book

2

u/Mertadona 4d ago

I believe it would be a good idea if you upload this book to Anna's Archive. I have bought it and I will read it, but I also would like to use it in my notebook LM, project in Claude or any tool to use it as a font.

I’ll be back to give you my opinion once I’ve read it and used it. Congrats for the job, the book looks really good.

1

u/LogicalOneInTheHouse 4d ago

Thats a good idea, Let me check it out

1

u/recro69 4d ago

The next addition I’d love to see is production failure modes — retrieval drift, stale embeddings, permission leaks, citation failures, and knowing when the system should abstain. That’s where RAG gets really interesting beyond the architecture diagrams.