Install
pip install llama-index llama-index-coreThe data framework for LLM apps. LlamaIndex turns unstructured data into agent-queryable knowledge — document loaders, vector indices, query engines, tools, and multi-agent orchestration via llama-agents.
Install
pip install llama-index llama-index-coreVersion
llama-index-core v0.14.21 · April 2026 · Python 3.10+
Best for
RAG systems, document Q&A, enterprise knowledge agents.
llama-agents package for multi-agent orchestration.LlamaHub integrations (100+ data connectors).from llama_index.core import VectorStoreIndex, SimpleDirectoryReaderfrom llama_index.core.agent import ReActAgentfrom llama_index.core.tools import QueryEngineTool
documents = SimpleDirectoryReader("data").load_data()index = VectorStoreIndex.from_documents(documents)
tool = QueryEngineTool.from_defaults( query_engine=index.as_query_engine(), name="knowledge_base", description="Answer questions about the documents",)
agent = ReActAgent.from_tools([tool])response = agent.chat("What are the key findings?")print(response)Ready? Start Zero → Hero Step 1 →
| Date | Version | Changes |
|---|---|---|
| 2026-04-21 | 0.14.20 | Index redesigned with Zero → Hero + Jump-to-topic grid. |
| April 3, 2026 | 0.14.20 | llama-agents stabilisation; streaming; LlamaHub growth. |
| November 2025 | 0.14.8 | Initial documented version. |
Note: TypeScript implementation lives at LlamaIndex (TypeScript).