Live Workshop · Limited Seats

RAG Workshop
From Zero to Production

One-day intensive workshop. Build production-ready RAG pipelines hands-on, then master 9 advanced RAG patterns — Hybrid, Graph, Multi-Hop, Agentic, Self-Corrective, Multimodal & more.

📅28 March 2026
10:00 AM – 7:00 PM IST
💻Live Online (Zoom)
Register Now — ₹10,000

17 exercises · 19 notebooks · Lifetime recording access

17
Hands-on Exercises
9
Advanced RAG Patterns
19
Colab Notebooks
9
Hours of Learning

What You'll Learn

From your first hallucination demo to production-ready architecture — in one intensive day.

💥

Why RAG Matters

See LLM hallucination firsthand, then fix it with RAG. Understand why RAG beats fine-tuning.

✂️

Chunking & Embeddings

Master fixed, recursive, and semantic chunking. Build vector indexes with FAISS and ChromaDB.

🚀

Build a RAG Pipeline

Load → Chunk → Embed → Store → Retrieve → Generate. End-to-end, from scratch.

Advanced Retrieval

HyDE, Multi-Query, BM25+Dense Hybrid Search, RRF Fusion, MMR diversity, Cross-Encoder Reranking.

🧠

9 RAG Patterns

Hybrid, Graph, Multi-Hop, Agentic, Self-Corrective, Multimodal, Hierarchical RAG — all covered.

🏭

Evaluation & Production

RAGAS metrics, semantic caching, PII scrubbing, guardrails, and the 6-layer production architecture.

Your Learning Journey

One intense day. Two distinct phases. You leave with working code and deep understanding.

Hands-on coding
Advanced concepts
Phase 1 — Build10 AM – 5 PM
8 exercises · Google Colab notebooks · You code every line
10:00 AM

Break the LLM

Exercise 1

See GPT hallucinate on your own documents. Understand why RAG exists and when to use it vs. fine-tuning.

✂️10:45 AM

Chunking Strategies

Exercise 2 & 2b

Fixed-size, recursive, and semantic chunking. Learn to split documents so retrieval actually works.

🧠11:55 AM

Embeddings & Vector Stores

Exercise 3

Turn text into vectors that capture meaning. Build indexes with FAISS, ChromaDB, and Pinecone.

🚀12:30 PM

Your First RAG Pipeline

Exercise 4

Load → Chunk → Embed → Store → Retrieve → Generate. Build a complete Q&A bot end-to-end.

🎯2:00 PM

Advanced Retrieval

Exercise 5

HyDE (hypothetical documents), Multi-Query expansion, and Cross-Encoder reranking to boost precision.

🔄2:40 PM

Hybrid Search + MMR

Exercise 5b

Combine BM25 keyword search with dense embeddings using Reciprocal Rank Fusion. Maximize diversity with MMR.

📊3:25 PM

RAGAS Evaluation

Exercise 6

Measure your pipeline: Faithfulness, Relevancy, Context Precision & Recall. Find and fix the weakest link.

🛠️3:55 PM

LangChain & LlamaIndex

Frameworks

The two dominant RAG frameworks compared. Build the same pipeline in both, understand when to pick which.

11:15 Tea Break|1:00–2:00 Lunch|3:10 Tea Break|4:35 Tea Break
Phase 2 — Master5 PM – 7 PM
9 advanced RAG architectures · taught in depth · with visual demos
🔄

Hybrid RAG

Advanced BM25 + Dense fusion with score normalization and learned weights

🕸️

Graph RAG

Knowledge graphs, entity extraction, relationship triples with NetworkX

🔗

Multi-Hop RAG

Bridge-fact questions, iterative retrieval, and query decomposition chains

🤖

Agentic RAG

ReAct pattern — LLM decides when to retrieve, which tools to use, and when to stop

🔍

Self-Corrective RAG

CRAG: grade retrieved docs, refine queries, and fallback to web search automatically

🖼️

Multimodal RAG

Caption-first pattern — index images alongside text using vision models

🏗️

Hierarchical RAG

Parent-child chunks, sentence windows, and 3-level summary pyramids

📊

Evaluation Deep Dive

Golden datasets, quality-latency curves, cost vs. accuracy trade-offs

🏭

Production RAG

6-layer architecture: guardrails, caching, PII scrubbing, observability, and deployment

🏆
6:30 – 7:00 PMInteractive Quiz, Recap & Next Steps

Test your knowledge with a live quiz, get your certificate, and take home all notebooks + resources.

Curriculum Deep Dive

8 hands-on exercises you code along, plus 9 advanced patterns taught in depth.

Phase 1Hands-On Exercises— you build, you learn
1

Break the LLM

  • Why LLMs hallucinate — knowledge cutoff, no access to private data
  • RAG vs. Fine-Tuning vs. Prompt Engineering — when to use each
  • Your first RAG motivation: see the problem, then fix it
Exercise

Ask GPT about private documents — watch it hallucinate, then fix it with RAG.

2

Chunking Strategies

  • Fixed-size vs. Recursive Character Text Splitter (industry default)
  • Chunk size & overlap tuning — small (precise) vs. large (context-rich)
  • Semantic chunking: embedding-based splitting at topic boundaries
Exercise

Compare 3 chunking strategies on the same document and measure retrieval quality.

3

Embeddings & Vector Stores

  • What embeddings are — vectors that capture meaning, not just keywords
  • Cosine similarity, embedding models (text-embedding-3-small)
  • FAISS (in-memory), ChromaDB (persistent), Pinecone/Weaviate (cloud-scale)
Exercise

Build a vector index, query it, and see how 'refund' matches 'money back'.

4

Basic RAG Pipeline

  • The full pipeline: Load → Chunk → Embed → Store → Retrieve → Generate
  • Prompt engineering for grounded answers ('say I don’t know')
  • Top-k tuning, source citations, conversation memory
Exercise

Build a complete Q&A bot and benchmark it against 10 test questions.

5

Advanced Retrieval

  • HyDE: generate hypothetical answer, embed that for better retrieval
  • Multi-Query: generate query variants to catch different phrasings
  • Cross-Encoder Reranking: retrieve 20, rerank to top 5
Exercise

Implement HyDE + reranking and measure precision improvement.

5b

Hybrid Search + MMR

  • BM25 (keyword) + Dense (semantic) — best of both worlds
  • Reciprocal Rank Fusion (RRF): combining rankings from multiple retrievers
  • MMR: balance relevance and diversity to avoid duplicate passages
Exercise

Build a hybrid retriever with tunable alpha and measure recall improvement.

6

RAGAS Evaluation

  • 4 metrics: Faithfulness, Answer Relevancy, Context Precision, Context Recall
  • LLM-as-judge: automated evaluation at scale without human annotation
  • Diagnostic loop: find lowest metric → fix specific cause → re-evaluate
Exercise

Run RAGAS on your pipeline, get a baseline, improve one thing, measure the delta.

Phase 29 Advanced RAG Patterns— concepts, architecture, when to use each
🔄

Hybrid RAG

Advanced BM25 + Dense fusion with score normalization and learned weights

🕸️

Graph RAG

Knowledge graphs, entity extraction, relationship triples with NetworkX

🔗

Multi-Hop RAG

Bridge-fact questions, iterative retrieval, query decomposition

🤖

Agentic RAG

ReAct pattern — LLM decides when to retrieve and which tools to use

🔍

Self-Corrective RAG

CRAG: grade retrieved docs, refine queries, fallback to web search

🖼️

Multimodal RAG

Caption-first pattern — index images alongside text with vision models

🏗️

Hierarchical RAG

Parent-child chunks, sentence windows, 3-level summary pyramid

📊

Evaluation Comparison

Golden datasets, quality-latency curves, cost vs. accuracy trade-offs

🏭

Production Readiness

6-layer architecture: guardrails, caching, PII scrubbing, observability

Your Workshop Toolkit

Three custom-built apps to accelerate your learning.

🔬

RAG Playground

ragplayground.futureproofindia.com

Interactive demos of all RAG patterns + LangChain & LlamaIndex cheatsheets

🤖

RAG Buddy

ragbuddy.futureproofindia.com

AI chatbot trained on the workshop curriculum — ask it anything during exercises

🧠

Live Quiz

ragplayground.futureproofindia.com/quiz

Fun interactive quiz covering all 17 exercises — test your knowledge with confetti

Your Instructor

Sridhar Jammalamadaka

Founder, Future Proof India | AI Architect

  • 16 years in IT with deep expertise in enterprise AI, cloud architecture, and scalable systems
  • AI Architect — former Software Architect at Oracle, M.Tech from IIIT Bangalore
  • Trained 1,400+ professionals in Agentic AI, RAG, and LLM Engineering
  • Built 30+ AI agents and 50+ AI chatbots for enterprise clients across healthcare, finance, and legal domains
  • Trainer at IIIT Bangalore Executive Education & AI Consultant serving India, Dubai, and USA
  • Weekly Agentathon organizer — participants build and ship an AI agent every Saturday

Who Is This For?

👨‍💻

Software Engineers

Want to add RAG capabilities to your applications and understand the full pipeline.

💼

Tech Leaders & Architects

Need to evaluate RAG solutions, make architecture decisions, and lead AI initiatives.

🎓

Data Scientists & ML Engineers

Looking to move beyond model training into building retrieval-augmented AI systems.

🌟

AI Enthusiasts

Have basic Python skills and want to learn the most in-demand AI engineering skill of 2026.

What's Included

9 hours of live instruction with Q&A
8 hands-on coding exercises (Google Colab)
9 advanced RAG patterns taught in depth
19 complete Jupyter notebooks to keep
LangChain & LlamaIndex cheatsheets
Interactive RAG Playground & Quiz app
AI workshop assistant (RAG Buddy chatbot)
Production-ready RAG codebase to take home
Lifetime access to workshop recording
Certificate of completion
Access to private workshop Telegram Group
Post-workshop support for 1 week

Prerequisites

Basic Python familiarity— variables, functions, loops, and pip install. No advanced Python needed.
A laptop with a browser— all exercises run on Google Colab. No local setup required.
OpenAI API key— we'll guide you through getting one if you don't have it yet. Costs ~$2 for the full workshop.
No prior AI/ML experience required. We start from the fundamentals.

Invest in Your AI Career

One day that transforms your ability to build production AI systems.

Workshop Pass
₹10,000/ person
  • Full-day live workshop (9 hours)
  • 17 exercises + 19 Colab notebooks
  • 9 advanced RAG patterns taught
  • 3 custom workshop apps (Playground, Buddy, Quiz)
  • Workshop recording (lifetime access)
  • Certificate of completion
  • 1-week post-workshop support
  • Private Telegram Group access
Register Now

GST included. Full refund available up to 24 hours before the event.

Frequently Asked Questions

Is this workshop online or offline?+
This is a live online workshop conducted via Zoom. You can attend from anywhere.
Will I get a recording?+
Yes! You get lifetime access to the complete workshop recording, so you can revisit any module anytime.
What if I'm a complete beginner in AI?+
This workshop is designed for beginners. We start from the fundamentals and build up. Basic Python knowledge is the only prerequisite.
What tools do I need?+
Just a laptop with a browser. All exercises run on Google Colab (free). You'll also need an OpenAI API key (costs about $2 for the full workshop).
Can I get a refund?+
Yes, full refund is available up to 24 hours before the workshop. No questions asked.
Will I be able to build a RAG app after this?+
Absolutely. You'll build one during the workshop itself, and take home 19 production-ready notebooks you can adapt for your own use case.
What are the 9 advanced RAG patterns?+
Hybrid RAG, Graph RAG, Multi-Hop RAG, Agentic RAG, Self-Corrective RAG, Multimodal RAG, Hierarchical RAG, Evaluation Comparison, and Production Readiness with the 6-layer architecture.

Ready to Master RAG?

28 March 2026 · 10 AM – 7 PM IST · Live Online

Limited seats to ensure hands-on attention for every participant.

Register Now — ₹10,000

Questions? Reach out to us:

📧 connect@futureproofindia.com · 📱 WhatsApp: +91 63603 19758