llamaindex

Featured

Data framework for building LLM applications with RAG. Specializes in document ingestion (300+ connectors), indexing, and querying. Features vector indices, query engines, agents, and multi-modal support. Use for document Q&A, chatbots, knowledge retrieval, or building RAG pipelines. Best for data-centric LLM applications.

AI & Automation 27,705 stars 2858 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# LlamaIndex - Data Framework for LLM Applications The leading framework for connecting LLMs with your data. ## When to use LlamaIndex **Use LlamaIndex when:** - Building RAG (retrieval-augmented generation) applications - Need document question-answering over private data - Ingesting data from multiple sources (300+ connectors) - Creating knowledge bases for LLMs - Building chatbots with enterprise data - Need structured data extraction from documents **Metrics**: - **45,100+ GitHub stars** - **23,000+ repositories** use LlamaIndex - **300+ data connectors** (LlamaHub) - **1,715+ contributors** - **v0.14.7** (stable) **Use alternatives instead**: - **LangChain**: More general-purpose, better for agents - **Haystack**: Production search pipelines - **txtai**: Lightweight semantic search - **Chroma**: Just need vector storage ## Quick start ### Installation ```bash # Starter package (recommended) pip install llama-index # Or minimal core + specific integrations pip install llama-index-core pip install llama-index-llms-openai pip install llama-index-embeddings-openai ``` ### 5-line RAG example ```python from llama_index.core import VectorStoreIndex, SimpleDirectoryReader # Load documents documents = SimpleDirectoryReader("data").load_data() # Create index index = VectorStoreIndex.from_documents(documents) # Query query_engine = index.as_query_engine() response = query_engine.query("What did the author do growing up?") print(response) ``` ## Core concepts ### 1. ...

Details

Author
davila7
Repository
davila7/claude-code-templates
Created
11 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

llamaindex

Data framework for building LLM applications with RAG. Specializes in document ingestion (300+ connectors), indexing, and querying. Features vector indices, query engines, agents, and multi-modal support. Use for document Q&A, chatbots, knowledge retrieval, or building RAG pipelines. Best for data-centric LLM applications.

9,182 Updated 1 months ago
Orchestra-Research
AI & Automation Solid

llamaindex-agent

LlamaIndex agent and query engine setup for RAG-powered agents

1,160 Updated today
a5c-ai
AI & Automation Listed

rag-implementation

Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.

22 Updated 6 days ago
HermeticOrmus
AI & Automation Listed

rag-implementation

Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.

335 Updated today
aiskillstore
Data & Documents Listed

rlama

Local RAG system management with RLAMA. Create semantic knowledge bases from local documents (PDF, MD, code, etc.), query them using natural language, and manage document lifecycles. This skill should be used when building local knowledge bases, searching personal documents, or performing document Q&A. Runs 100% locally with Ollama - no cloud, no data leaving your machine.

33 Updated 2 days ago
tdimino