What problem does it solve? LLMs hallucinate and lack access to private or up-to-date documents. This Skill guides you through building RAG pipelines that ground LLM answers in your own knowledge base, from document ingestion to production evaluation. ## Core Features & Use Cases - End-to-End RAG Pipeline: Load and parse documents (PDF, TXT, CSV, HTML), chunk them with recursive or semantic strategies, embed with OpenAI or Sentence Transformers, and index into Chroma, Pinecone, Qdrant, pgvector, or FAISS. - Retrieval Optimization: Combine BM25 with dense embeddings via hybrid search, apply cross-encoder or Cohere reranking, and use query transformations like HyDE, multi-query, and step-back prompting. - Evaluation & Debugging: Measure retrieval quality (Recall@K, MRR, NDCG) and generation quality (F1, BLEU, ROUGE-L, faithfulness) with the included evaluation script, plus a failure-mode debugging checklist. - Use Case: You need a Q&A system over your company's internal documentation. Use this Skill to index the docs into a vector store, retrieve relevant chunks with hybrid search, rerank them, and generate cited answers with an LLM. ## Quick Start Build a RAG pipeline that indexes the documents in my docs folder into Chroma and answers questions about them.