llama-index 0.14.5


pip install llama-index

  Latest version

Released: Oct 15, 2025


Meta
Author: Jerry Liu
Maintainer: Andrei Fajardo, Haotian Zhang, Jerry Liu, Logan Markewich, Simon Suo, Sourabh Desai
Requires Python: <4.0,>=3.9

Classifiers

Topic
  • Scientific/Engineering :: Artificial Intelligence
  • Software Development :: Libraries :: Application Frameworks
  • Software Development :: Libraries :: Python Modules

๐Ÿ—‚๏ธ LlamaIndex ๐Ÿฆ™

PyPI - Downloads Build GitHub contributors Discord Twitter Reddit Ask AI

LlamaIndex (GPT Index) is a data framework for your LLM application. Building with LlamaIndex typically involves working with LlamaIndex core and a chosen set of integrations (or plugins). There are two ways to start building with LlamaIndex in Python:

  1. Starter: llama-index. A starter Python package that includes core LlamaIndex as well as a selection of integrations.

  2. Customized: llama-index-core. Install core LlamaIndex and add your chosen LlamaIndex integration packages on LlamaHub that are required for your application. There are over 300 LlamaIndex integration packages that work seamlessly with core, allowing you to build with your preferred LLM, embedding, and vector store providers.

The LlamaIndex Python library is namespaced such that import statements which include core imply that the core package is being used. In contrast, those statements without core imply that an integration package is being used.

# typical pattern
from llama_index.core.xxx import ClassABC  # core submodule xxx
from llama_index.xxx.yyy import (
    SubclassABC,
)  # integration yyy for submodule xxx

# concrete example
from llama_index.core.llms import LLM
from llama_index.llms.openai import OpenAI

Important Links

LlamaIndex.TS (Typescript/Javascript)

Documentation

X (formerly Twitter)

LinkedIn

Reddit

Discord

Ecosystem

๐Ÿš€ Overview

NOTE: This README is not updated as frequently as the documentation. Please check out the documentation above for the latest updates!

Context

  • LLMs are a phenomenal piece of technology for knowledge generation and reasoning. They are pre-trained on large amounts of publicly available data.
  • How do we best augment LLMs with our own private data?

We need a comprehensive toolkit to help perform this data augmentation for LLMs.

Proposed Solution

That's where LlamaIndex comes in. LlamaIndex is a "data framework" to help you build LLM apps. It provides the following tools:

  • Offers data connectors to ingest your existing data sources and data formats (APIs, PDFs, docs, SQL, etc.).
  • Provides ways to structure your data (indices, graphs) so that this data can be easily used with LLMs.
  • Provides an advanced retrieval/query interface over your data: Feed in any LLM input prompt, get back retrieved context and knowledge-augmented output.
  • Allows easy integrations with your outer application framework (e.g. with LangChain, Flask, Docker, ChatGPT, or anything else).

LlamaIndex provides tools for both beginner users and advanced users. Our high-level API allows beginner users to use LlamaIndex to ingest and query their data in 5 lines of code. Our lower-level APIs allow advanced users to customize and extend any module (data connectors, indices, retrievers, query engines, reranking modules), to fit their needs.

๐Ÿ’ก Contributing

Interested in contributing? Contributions to LlamaIndex core as well as contributing integrations that build on the core are both accepted and highly encouraged! See our Contribution Guide for more details.

New integrations should meaningfully integrate with existing LlamaIndex framework components. At the discretion of LlamaIndex maintainers, some integrations may be declined.

๐Ÿ“„ Documentation

Full documentation can be found here

Please check it out for the most up-to-date tutorials, how-to guides, references, and other resources!

๐Ÿ’ป Example Usage

# custom selection of integrations to work with core
pip install llama-index-core
pip install llama-index-llms-openai
pip install llama-index-llms-replicate
pip install llama-index-embeddings-huggingface

Examples are in the docs/examples folder. Indices are in the indices folder (see list of indices below).

To build a simple vector store index using OpenAI:

import os

os.environ["OPENAI_API_KEY"] = "YOUR_OPENAI_API_KEY"

from llama_index.core import VectorStoreIndex, SimpleDirectoryReader

documents = SimpleDirectoryReader("YOUR_DATA_DIRECTORY").load_data()
index = VectorStoreIndex.from_documents(documents)

To build a simple vector store index using non-OpenAI LLMs, e.g. Llama 2 hosted on Replicate, where you can easily create a free trial API token:

import os

os.environ["REPLICATE_API_TOKEN"] = "YOUR_REPLICATE_API_TOKEN"

from llama_index.core import Settings, VectorStoreIndex, SimpleDirectoryReader
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
from llama_index.llms.replicate import Replicate
from transformers import AutoTokenizer

# set the LLM
llama2_7b_chat = "meta/llama-2-7b-chat:8e6975e5ed6174911a6ff3d60540dfd4844201974602551e10e9e87ab143d81e"
Settings.llm = Replicate(
    model=llama2_7b_chat,
    temperature=0.01,
    additional_kwargs={"top_p": 1, "max_new_tokens": 300},
)

# set tokenizer to match LLM
Settings.tokenizer = AutoTokenizer.from_pretrained(
    "NousResearch/Llama-2-7b-chat-hf"
)

# set the embed model
Settings.embed_model = HuggingFaceEmbedding(
    model_name="BAAI/bge-small-en-v1.5"
)

documents = SimpleDirectoryReader("YOUR_DATA_DIRECTORY").load_data()
index = VectorStoreIndex.from_documents(
    documents,
)

To query:

query_engine = index.as_query_engine()
query_engine.query("YOUR_QUESTION")

By default, data is stored in-memory. To persist to disk (under ./storage):

index.storage_context.persist()

To reload from disk:

from llama_index.core import StorageContext, load_index_from_storage

# rebuild storage context
storage_context = StorageContext.from_defaults(persist_dir="./storage")
# load index
index = load_index_from_storage(storage_context)

๐Ÿ”ง Dependencies

We use poetry as the package manager for all Python packages. As a result, the dependencies of each Python package can be found by referencing the pyproject.toml file in each of the package's folders.

cd <desired-package-folder>
pip install poetry
poetry install --with dev

A note on Verification of Build Assets

By default, llama-index-core includes a _static folder that contains the nltk and tiktoken cache that is included with the package installation. This ensures that you can easily run llama-index in environments with restrictive disk access permissions at runtime.

To verify that these files are safe and valid, we use the github attest-build-provenance action. This action will verify that the files in the _static folder are the same as the files in the llama-index-core/llama_index/core/_static folder.

To verify this, you can run the following script (pointing to your installed package):

#!/bin/bash
STATIC_DIR="venv/lib/python3.13/site-packages/llama_index/core/_static"
REPO="run-llama/llama_index"

find "$STATIC_DIR" -type f | while read -r file; do
    echo "Verifying: $file"
    gh attestation verify "$file" -R "$REPO" || echo "Failed to verify: $file"
done

๐Ÿ“– Citation

Reference to cite if you use LlamaIndex in a paper:

@software{Liu_LlamaIndex_2022,
author = {Liu, Jerry},
doi = {10.5281/zenodo.1234},
month = {11},
title = {{LlamaIndex}},
url = {https://github.com/jerryjliu/llama_index},
year = {2022}
}
0.14.5 Oct 15, 2025
0.14.4 Oct 03, 2025
0.14.3 Sep 24, 2025
0.14.2 Sep 16, 2025
0.14.1 Sep 15, 2025
0.14.0 Sep 08, 2025
0.13.6 Sep 07, 2025
0.13.5 Sep 04, 2025
0.13.4 Sep 02, 2025
0.13.3 Aug 22, 2025
0.13.2 Aug 14, 2025
0.13.1 Aug 08, 2025
0.13.0 Jul 31, 2025
0.12.52 Jul 23, 2025
0.12.51 Jul 22, 2025
0.12.50 Jul 19, 2025
0.12.49 Jul 14, 2025
0.12.48 Jul 09, 2025
0.12.47 Jul 07, 2025
0.12.46 Jul 03, 2025
0.12.45 Jul 01, 2025
0.12.44 Jun 26, 2025
0.12.43 Jun 19, 2025
0.12.42 Jun 12, 2025
0.12.41 Jun 07, 2025
0.12.40 Jun 03, 2025
0.12.39 May 30, 2025
0.12.38 May 29, 2025
0.12.37 May 19, 2025
0.12.36 May 15, 2025
0.12.35 May 08, 2025
0.12.34 May 01, 2025
0.12.33 Apr 23, 2025
0.12.32 Apr 22, 2025
0.12.31 Apr 17, 2025
0.12.30 Apr 11, 2025
0.12.29 Apr 09, 2025
0.12.28 Apr 02, 2025
0.12.27 Mar 30, 2025
0.12.26 Mar 26, 2025
0.12.25 Mar 18, 2025
0.12.24 Mar 14, 2025
0.12.23 Mar 07, 2025
0.12.22 Mar 01, 2025
0.12.21 Feb 28, 2025
0.12.20 Feb 25, 2025
0.12.19 Feb 18, 2025
0.12.18 Feb 17, 2025
0.12.17 Feb 12, 2025
0.12.16 Feb 05, 2025
0.12.15 Jan 31, 2025
0.12.14 Jan 25, 2025
0.12.13 Jan 23, 2025
0.12.12 Jan 20, 2025
0.12.11 Jan 15, 2025
0.12.10 Jan 07, 2025
0.12.9 Dec 31, 2024
0.12.8 Dec 21, 2024
0.12.7 Dec 20, 2024
0.12.6 Dec 18, 2024
0.12.5 Dec 09, 2024
0.12.4 Dec 08, 2024
0.12.3 Dec 06, 2024
0.12.2 Nov 26, 2024
0.12.1 Nov 21, 2024
0.12.0 Nov 18, 2024
0.11.23 Nov 12, 2024
0.11.22 Nov 05, 2024
0.11.21 Nov 01, 2024
0.11.20 Oct 25, 2024
0.11.19 Oct 19, 2024
0.11.18 Oct 15, 2024
0.11.17 Oct 09, 2024
0.11.16 Oct 04, 2024
0.11.15 Oct 02, 2024
0.11.14 Sep 26, 2024
0.11.13 Sep 24, 2024
0.11.12 Sep 23, 2024
0.11.11 Sep 20, 2024
0.11.10 Sep 16, 2024
0.11.9 Sep 12, 2024
0.11.8 Sep 10, 2024
0.11.7 Sep 07, 2024
0.11.6 Sep 05, 2024
0.11.5 Sep 04, 2024
0.11.4 Sep 02, 2024
0.11.3 Aug 30, 2024
0.11.2 Aug 28, 2024
0.11.1 Aug 23, 2024
0.11.0 Aug 22, 2024
0.10.68 Aug 21, 2024
0.10.67.post1 Aug 19, 2024
0.10.65 Aug 12, 2024
0.10.64 Aug 09, 2024
0.10.63 Aug 09, 2024
0.10.62 Aug 07, 2024
0.10.61 Aug 06, 2024
0.10.59 Aug 01, 2024
0.10.58 Jul 24, 2024
0.10.57 Jul 23, 2024
0.10.56 Jul 19, 2024
0.10.55 Jul 12, 2024
0.10.54.post1 Jul 11, 2024
0.10.54 Jul 10, 2024
0.10.53 Jul 08, 2024
0.10.52 Jul 03, 2024
0.10.51 Jun 29, 2024
0.10.50 Jun 24, 2024
0.10.49 Jun 23, 2024
0.10.48.post1 Jun 21, 2024
0.10.48 Jun 21, 2024
0.10.47 Jun 20, 2024
0.10.46 Jun 18, 2024
0.10.45.post1 Jun 17, 2024
0.10.45 Jun 14, 2024
0.10.44 Jun 10, 2024
0.10.43 Jun 03, 2024
0.10.42 May 31, 2024
0.10.41 May 31, 2024
0.10.40 May 29, 2024
0.10.39 May 25, 2024
0.10.38 May 22, 2024
0.10.37 May 14, 2024
0.10.36 May 09, 2024
0.10.35 May 07, 2024
0.10.34 May 03, 2024
0.10.33 Apr 28, 2024
0.10.32 Apr 26, 2024
0.10.31 Apr 24, 2024
0.10.30 Apr 17, 2024
0.10.29 Apr 14, 2024
0.10.28 Apr 09, 2024
0.10.27 Apr 04, 2024
0.10.26 Apr 01, 2024
0.10.25 Mar 27, 2024
0.10.24 Mar 27, 2024
0.10.23 Mar 23, 2024
0.10.22 Mar 22, 2024
0.10.20 Mar 15, 2024
0.10.19 Mar 12, 2024
0.10.18 Mar 08, 2024
0.10.17 Mar 07, 2024
0.10.16 Mar 05, 2024
0.10.15 Mar 01, 2024
0.10.14 Feb 28, 2024
0.10.13.post1 Feb 26, 2024
0.10.13 Feb 26, 2024
0.10.12 Feb 22, 2024
0.10.11 Feb 21, 2024
0.10.10 Feb 21, 2024
0.10.9 Feb 20, 2024
0.10.8 Feb 20, 2024
0.10.7 Feb 19, 2024
0.10.6 Feb 18, 2024
0.10.5 Feb 16, 2024
0.10.5a1 Feb 16, 2024
0.10.4 Feb 13, 2024
0.10.3 Feb 13, 2024
0.10.1 Feb 12, 2024
0.10.0 Feb 12, 2024
0.9.48 Feb 12, 2024
0.9.47 Feb 11, 2024
0.9.46 Feb 08, 2024
0.9.45.post1 Feb 07, 2024
0.9.45 Feb 07, 2024
0.9.44 Feb 05, 2024
0.9.43 Feb 03, 2024
0.9.42.post2 Feb 03, 2024
0.9.42.post1 Feb 02, 2024
0.9.42 Feb 02, 2024
0.9.41 Feb 01, 2024
0.9.40 Jan 30, 2024
0.9.39 Jan 26, 2024
0.9.38 Jan 25, 2024
0.9.37.post1 Jan 25, 2024
0.9.37 Jan 25, 2024
0.9.36 Jan 23, 2024
0.9.35 Jan 23, 2024
0.9.34 Jan 19, 2024
0.9.33 Jan 17, 2024
0.9.33a6 Feb 10, 2024
0.9.33a5 Feb 02, 2024
0.9.33a4 Feb 02, 2024
0.9.33a3 Jan 18, 2024
0.9.33a2 Jan 18, 2024
0.9.32 Jan 16, 2024
0.9.31 Jan 15, 2024
0.9.30 Jan 12, 2024
0.9.29 Jan 10, 2024
0.9.28.post2 Jan 10, 2024
0.9.28.post1 Jan 09, 2024
0.9.28 Jan 09, 2024
0.9.27 Jan 08, 2024
0.9.26 Jan 06, 2024
0.9.25.post1 Jan 03, 2024
0.9.25 Jan 03, 2024
0.9.25a2 Jan 04, 2024
0.9.25a1 Jan 04, 2024
0.9.24 Dec 30, 2023
0.9.23 Dec 29, 2023
0.9.22 Dec 26, 2023
0.9.21 Dec 22, 2023
0.9.20 Dec 22, 2023
0.9.19 Dec 20, 2023
0.9.18 Dec 20, 2023
0.9.17 Dec 19, 2023
0.9.17.dev1 Dec 20, 2023
0.9.16.post1 Dec 18, 2023
0.9.16 Dec 18, 2023
0.9.16.dev2 Dec 19, 2023
0.9.16.dev1 Dec 19, 2023
0.9.15.post2 Dec 15, 2023
0.9.15.post1 Dec 15, 2023
0.9.15 Dec 13, 2023
0.9.14.post3 Dec 12, 2023
0.9.14.post2 Dec 12, 2023
0.9.14.post1 Dec 12, 2023
0.9.14 Dec 11, 2023
0.9.13 Dec 06, 2023
0.9.12 Dec 05, 2023
0.9.12a6 Dec 19, 2023
0.9.12a5 Dec 14, 2023
0.9.12a4 Dec 14, 2023
0.9.12a3 Dec 07, 2023
0.9.12a2 Dec 06, 2023
0.9.12a1 Dec 06, 2023
0.9.11.post1 Dec 04, 2023
0.9.11 Dec 03, 2023
0.9.10 Nov 30, 2023
0.9.10a2 Dec 01, 2023
0.9.10a1 Nov 30, 2023
0.9.9 Nov 29, 2023
0.9.8.post1 Nov 27, 2023
0.9.8 Nov 26, 2023
0.9.7 Nov 24, 2023
0.9.6.post2 Nov 23, 2023
0.9.6.post1 Nov 22, 2023
0.9.6 Nov 22, 2023
0.9.5 Nov 21, 2023
0.9.4 Nov 20, 2023
0.9.3.post1 Nov 17, 2023
0.9.3 Nov 17, 2023
0.9.2 Nov 16, 2023
0.9.1 Nov 16, 2023
0.9.0.post1 Nov 15, 2023
0.9.0 Nov 15, 2023
0.9.0a3 Nov 11, 2023
0.9.0a2 Nov 10, 2023
0.9.0a1 Nov 10, 2023
0.8.69.post2 Nov 14, 2023
0.8.69.post1 Nov 14, 2023
0.8.69 Nov 14, 2023
0.8.68 Nov 11, 2023
0.8.67 Nov 10, 2023
0.8.66 Nov 09, 2023
0.8.65 Nov 08, 2023
0.8.64.post1 Nov 07, 2023
0.8.64 Nov 07, 2023
0.8.63.post2 Nov 07, 2023
0.8.63.post1 Nov 07, 2023
0.8.62 Nov 06, 2023
0.8.61 Nov 05, 2023
0.8.59 Nov 02, 2023
0.8.58 Nov 02, 2023
0.8.57 Nov 01, 2023
0.8.56 Oct 31, 2023
0.8.55 Oct 29, 2023
0.8.54 Oct 28, 2023
0.8.53.post3 Oct 26, 2023
0.8.53 Oct 26, 2023
0.8.52 Oct 26, 2023
0.8.51.post1 Oct 26, 2023
0.8.51 Oct 25, 2023
0.8.50 Oct 24, 2023
0.8.49 Oct 23, 2023
0.8.48 Oct 20, 2023
0.8.47 Oct 19, 2023
0.8.46 Oct 18, 2023
0.8.45.post1 Oct 13, 2023
0.8.45 Oct 13, 2023
0.8.44 Oct 12, 2023
0.8.43.post1 Oct 11, 2023
0.8.43 Oct 11, 2023
0.8.42 Oct 10, 2023
0.8.41 Oct 07, 2023
0.8.40 Oct 05, 2023
0.8.39.post2 Oct 04, 2023
0.8.39 Oct 04, 2023
0.8.38 Oct 02, 2023
0.8.37 Sep 30, 2023
0.8.36 Sep 27, 2023
0.8.35 Sep 27, 2023
0.8.34 Sep 26, 2023
0.8.33 Sep 25, 2023
0.8.32 Sep 24, 2023
0.8.31 Sep 22, 2023
0.8.30 Sep 21, 2023
0.8.29.post1 Sep 18, 2023
0.8.29 Sep 18, 2023
0.8.28 Sep 16, 2023
0.8.28a1 Sep 15, 2023
0.8.27 Sep 14, 2023
0.8.26.post1 Sep 13, 2023
0.8.26 Sep 13, 2023
0.8.25 Sep 12, 2023
0.8.24.post1 Sep 11, 2023
0.8.24 Sep 11, 2023
0.8.23.post1 Sep 09, 2023
0.8.23 Sep 09, 2023
0.8.22 Sep 08, 2023
0.8.21 Sep 06, 2023
0.8.20 Sep 04, 2023
0.8.19 Sep 03, 2023
0.8.18 Sep 03, 2023
0.8.17 Sep 02, 2023
0.8.16 Sep 01, 2023
0.8.15 Aug 31, 2023
0.8.14 Aug 30, 2023
0.8.13 Aug 29, 2023
0.8.12 Aug 28, 2023
0.8.11.post3 Aug 27, 2023
0.8.11.post2 Aug 27, 2023
0.8.11.post1 Aug 27, 2023
0.8.11 Aug 27, 2023
0.8.10.post1 Aug 26, 2023
0.8.10 Aug 26, 2023
0.8.9 Aug 24, 2023
0.8.8 Aug 23, 2023
0.8.7 Aug 22, 2023
0.8.6 Aug 22, 2023
0.8.5.post2 Aug 21, 2023
0.8.5.post1 Aug 19, 2023
0.8.5 Aug 18, 2023
0.8.4 Aug 17, 2023
0.8.3 Aug 16, 2023
0.8.2.post1 Aug 15, 2023
0.8.2 Aug 14, 2023
0.8.1.post1 Aug 13, 2023
0.8.1 Aug 13, 2023
0.8.0 Aug 11, 2023
0.7.24.post1 Aug 11, 2023
0.7.23 Aug 10, 2023
0.7.22 Aug 08, 2023
0.7.21 Aug 07, 2023
0.7.20 Aug 06, 2023
0.7.19 Aug 04, 2023
0.7.18 Aug 03, 2023
0.7.17 Aug 02, 2023
0.7.16 Jul 30, 2023
0.7.15 Jul 29, 2023
0.7.14 Jul 28, 2023
0.7.13 Jul 26, 2023
0.7.12 Jul 25, 2023
0.7.11.post1 Jul 20, 2023
0.7.11 Jul 20, 2023
0.7.10.post1 Jul 18, 2023
0.7.10 Jul 18, 2023
0.7.9 Jul 16, 2023
0.7.8 Jul 14, 2023
0.7.7 Jul 13, 2023
0.7.6 Jul 12, 2023
0.7.5 Jul 12, 2023
0.7.4 Jul 08, 2023
0.7.3 Jul 08, 2023
0.7.2 Jul 06, 2023
0.7.1 Jul 05, 2023
0.7.0 Jul 04, 2023
0.6.38.post1 Jul 02, 2023
0.6.38 Jul 02, 2023
0.6.37 Jun 30, 2023
0.6.36 Jun 30, 2023
0.6.35 Jun 28, 2023
0.6.34.post1 Jun 26, 2023
0.6.34 Jun 26, 2023
0.6.33 Jun 25, 2023
0.6.32 Jun 23, 2023
0.6.31 Jun 22, 2023
0.6.30 Jun 21, 2023
0.6.29 Jun 20, 2023
0.6.28 Jun 19, 2023
0.6.27 Jun 17, 2023
0.6.26 Jun 14, 2023
0.6.25.post1 Jun 13, 2023
0.6.25 Jun 13, 2023
0.6.24 Jun 12, 2023
0.6.23 Jun 11, 2023
0.6.22 Jun 10, 2023
0.6.21.post1 Jun 07, 2023
0.6.20 Jun 05, 2023
0.6.19 Jun 04, 2023
0.6.18 Jun 03, 2023
0.6.17 Jun 02, 2023
0.6.16.post1 Jun 01, 2023
0.6.16 Jun 01, 2023
0.6.15 May 31, 2023
0.6.14 May 30, 2023
0.6.13 May 28, 2023
0.6.12 May 27, 2023
0.6.11 May 25, 2023
0.6.10.post1 May 24, 2023
0.6.10 May 24, 2023
0.6.9 May 19, 2023
0.6.8 May 16, 2023
0.6.7 May 14, 2023
0.6.6 May 13, 2023
0.6.5 May 11, 2023
0.6.4 May 10, 2023
0.6.2 May 08, 2023
0.6.1 May 05, 2023
0.6.0 May 02, 2023
0.6.0a7 May 02, 2023
0.6.0a6 May 02, 2023
0.6.0a5 May 01, 2023
0.6.0a4 May 01, 2023
0.6.0a3 Apr 30, 2023
0.6.0a2 Apr 29, 2023
0.6.0a1 Apr 28, 2023
0.5.27 Apr 28, 2023
0.5.26 Apr 28, 2023
0.5.25 Apr 26, 2023
0.5.23.post1 Apr 24, 2023
0.5.23 Apr 23, 2023
0.5.22 Apr 23, 2023
0.5.21 Apr 21, 2023
0.5.20 Apr 20, 2023
0.5.19 Apr 20, 2023
0.5.18 Apr 19, 2023
0.5.17.post1 Apr 18, 2023
0.5.17 Apr 18, 2023
0.5.16 Apr 17, 2023
0.5.15 Apr 13, 2023
0.5.13.post1 Apr 12, 2023
0.5.13 Apr 12, 2023
0.5.12 Apr 10, 2023
0.5.11 Apr 09, 2023
0.5.10 Apr 07, 2023
0.5.9 Apr 06, 2023
0.5.8 Apr 05, 2023
0.5.7 Apr 04, 2023
0.5.6 Apr 03, 2023
0.5.5 Apr 02, 2023
0.5.4 Mar 31, 2023
0.5.3 Mar 31, 2023
0.5.2 Mar 30, 2023
0.5.1 Mar 29, 2023
0.5.0 Mar 28, 2023
0.4.40 Mar 27, 2023
0.4.39 Mar 26, 2023
0.4.38 Mar 25, 2023
0.4.37 Mar 24, 2023
0.4.36 Mar 23, 2023
0.4.35.post1 Mar 22, 2023
0.4.35 Mar 22, 2023
0.4.34 Mar 21, 2023
0.4.33 Mar 20, 2023
0.4.32 Mar 19, 2023
0.4.31 Mar 19, 2023
0.4.30 Mar 18, 2023
0.4.29 Mar 16, 2023
0.4.28 Mar 14, 2023
0.4.27 Mar 13, 2023
0.4.26 Mar 11, 2023
0.4.25 Mar 10, 2023
0.4.24 Mar 09, 2023
0.4.23 Mar 08, 2023
0.4.22.post1 Mar 07, 2023
0.4.22 Mar 07, 2023
0.4.21 Mar 06, 2023
0.4.20 Mar 04, 2023
0.4.19 Mar 03, 2023
0.4.18 Mar 02, 2023
0.4.17 Mar 01, 2023
0.4.16 Mar 01, 2023
0.4.15 Feb 28, 2023
0.4.14 Feb 26, 2023
0.4.13 Feb 25, 2023
0.4.12 Feb 24, 2023
0.4.11 Feb 24, 2023
0.4.10 Feb 24, 2023
0.4.9 Feb 23, 2023
0.4.8 Feb 21, 2023
0.4.7 Feb 20, 2023
0.4.6 Feb 19, 2023
0.4.5 Feb 18, 2023
0.4.4.post2 Feb 16, 2023
0.4.4.post1 Feb 16, 2023
0.4.4 Feb 16, 2023

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras: None
Dependencies:
llama-index-cli (<0.6,>=0.5.0)
llama-index-core (<0.15.0,>=0.14.5)
llama-index-embeddings-openai (<0.6,>=0.5.0)
llama-index-indices-managed-llama-cloud (>=0.4.0)
llama-index-llms-openai (<0.7,>=0.6.0)
llama-index-readers-file (<0.6,>=0.5.0)
llama-index-readers-llama-parse (>=0.4.0)
nltk (>3.8.1)