llama-index indices llama-cloud integration
Project description
LlamaCloud Index + Retriever
NOTE: This package has been deprecated and is no longer maintained. Please use the llama-cloud-services package instead.
LlamaCloud is a new generation of managed parsing, ingestion, and retrieval services, designed to bring production-grade context-augmentation to your LLM and RAG applications.
Currently, LlamaCloud supports
- Managed Ingestion API, handling parsing and document management
- Managed Retrieval API, configuring optimal retrieval for your RAG system
Access
We are opening up a private beta to a limited set of enterprise partners for the managed ingestion and retrieval API. If you’re interested in centralizing your data pipelines and spending more time working on your actual RAG use cases, come talk to us.
If you have access to LlamaCloud, you can visit LlamaCloud to sign in and get an API key.
Setup
First, make sure you have the latest LlamaIndex version installed.
pip uninstall llama-index # run this if upgrading from v0.9.x or older
pip install -U llama-index --upgrade --no-cache-dir --force-reinstall
The llama-index-indices-managed-llama-cloud package is included with the above install, but you can also install directly
pip install -U llama-index-indices-managed-llama-cloud
Usage
You can create an index on LlamaCloud using the following code. By default, new indexes use managed embeddings (OpenAI text-embedding-3-small, 1536 dimensions, 1 credit/page):
import os
os.environ[
"LLAMA_CLOUD_API_KEY"
] = "llx-..." # can provide API-key in env or in the constructor later on
from llama_index.core import SimpleDirectoryReader
from llama_index.indices.managed.llama_cloud import LlamaCloudIndex
# create a new index (uses managed embeddings by default)
index = LlamaCloudIndex.from_documents(
documents,
"my_first_index",
project_name="default",
api_key="llx-...",
verbose=True,
)
# connect to an existing index
index = LlamaCloudIndex("my_first_index", project_name="default")
You can also configure a retriever for managed retrieval:
# from the existing index
index.as_retriever()
# from scratch
from llama_index.indices.managed.llama_cloud import LlamaCloudRetriever
retriever = LlamaCloudRetriever("my_first_index", project_name="default")
And of course, you can use other index shortcuts to get use out of your new managed index:
query_engine = index.as_query_engine(llm=llm)
chat_engine = index.as_chat_engine(llm=llm)
Retriever Settings
A full list of retriever settings/kwargs is below:
dense_similarity_top_k: Optional[int] -- If greater than 0, retrieveknodes using dense retrievalsparse_similarity_top_k: Optional[int] -- If greater than 0, retrieveknodes using sparse retrievalenable_reranking: Optional[bool] -- Whether to enable reranking or not. Sacrifices some speed for accuracyrerank_top_n: Optional[int] -- The number of nodes to return after reranking initial retrieval resultsalphaOptional[float] -- The weighting between dense and sparse retrieval. 1 = Full dense retrieval, 0 = Full sparse retrieval.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_indices_managed_llama_cloud-0.11.0.tar.gz.
File metadata
- Download URL: llama_index_indices_managed_llama_cloud-0.11.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e685ea34e279510dd4b9d5bf1a344762beac300f1294a217366fa16f3a47bb
|
|
| MD5 |
d3b92bc8a8e7fc66187962a000936989
|
|
| BLAKE2b-256 |
758394407c7baf5a28602fec7f081be1b1b8c0fb19edd1b3fc7a8592d59a9c56
|
File details
Details for the file llama_index_indices_managed_llama_cloud-0.11.0-py3-none-any.whl.
File metadata
- Download URL: llama_index_indices_managed_llama_cloud-0.11.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84b7cd4c01a4c8eb2a502588ee5e8d6f84a0d0b987cae05f2e84194361850b69
|
|
| MD5 |
c3fc88d5e880f9074cd22fc899102a04
|
|
| BLAKE2b-256 |
47025d04cd99c395d23f4ca7cfab4577e21af3c2edddf0e91906adf362804fe8
|