What problem does it solve? Connecting LLMs to private data requires building ingestion, indexing, and retrieval infrastructure from scratch. This Skill provides guidance for implementing retrieval-augmented generation with LlamaIndex, covering document loading, vector indexing, querying, and agent construction. ## Core Features & Use Cases - Document Ingestion: Load data from 300+ connectors including files, web pages, GitHub repositories, databases, and APIs. - Indexing & Querying: Create vector, list, and tree indices, then query them with configurable response modes, streaming, metadata filtering, and reranking. - Agents & Chat Engines: Build function-calling agents with RAG tools and conversational chat engines with memory. - Use Case: Build a document Q&A chatbot over your company's internal documentation by loading files with SimpleDirectoryReader, indexing them with VectorStoreIndex, and serving multi-turn conversations through a chat engine. ## Quick Start Use the llamaindex skill to build a RAG pipeline that loads documents from a folder and answers questions about them.