Project — Advanced RAG on AWS
TeleNova Support Assistant
A production-grade Retrieval-Augmented Generation pipeline for a fictional telecom's customer support. Ask a question and watch every stage run live — query transformation, hybrid retrieval (dense vectors + BM25), reciprocal-rank fusion, two re-rankers side by side, and a grounded, cited answer with a faithfulness check.
Architecture. Dense vectors live in Amazon S3 Vectors
(1024-dim Titan v2 embeddings, cosine) in us-east-1; sparse retrieval is an
in-Lambda BM25 over the same chunks. The managed re-ranker (Cohere Rerank 3.5)
is called cross-region in us-west-2 because Bedrock Rerank isn't offered in
us-east-1 — shown side by side with an in-region LLM-as-judge re-ranker. When the live
backend is unavailable (or rate-limited), this page runs a client-side
simulation so the pipeline is always explorable.