freshcrate
Skin:/
Home > RAG & Memory > llama-index-indices-managed-llama-cloud

llama-index-indices-managed-llama-cloud

llama-index indices llama-cloud integration

Why this rank:Release freshnessHealthy release cadence

Description

# LlamaCloud Index + Retriever **NOTE:** This package has been deprecated and is no longer maintained. Please use the [llama-cloud package](https://github.com/run-llama/llama-cloud-py) 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.](https://www.llamaindex.ai/contact) If you have access to LlamaCloud, you can visit [LlamaCloud](https://cloud.llamaindex.ai) 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): ```python 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: ```python # 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: ```python 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, retrieve `k` nodes using dense retrieval - `sparse_similarity_top_k`: Optional[int] -- If greater than 0, retrieve `k` nodes using sparse retrieval - `enable_reranking`: Optional[bool] -- Whether to enable reranking or not. Sacrifices some speed for accuracy - `rerank_top_n`: Optional[int] -- The number of nodes to return after reranking initial retrieval results - `alpha` Optional[float] -- The weighting between dense and sparse retrieval. 1 = Full dense retrieval, 0 = Full sparse retrieval.

Release History

VersionChangesUrgencyDate
0.11.1Imported from PyPI (0.11.1)Low4/21/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

ghapiA python client for the GitHub API2.0.3
diff-coverRun coverage and linting reports on diffsv10.4.0
biopythonFreely available tools for computational molecular biology.master@2026-07-20
azure-search-documentsMicrosoft Azure Cognitive Search Client Library for Pythonazure-mgmt-consumption_11.0.0
xgrammarEfficient, Flexible and Portable Structured Generationv0.2.4

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in RAG & Memory

edgequakeEdegQuake ๐ŸŒ‹ High-performance GraphRAG inspired from LightRag written in Rust; Transform documents into intelligent knowledge graphs for superior retrieval and generation
vllmA high-throughput and memory-efficient inference and serving engine for LLMs
awesome-opensource-aiCurated list of the best truly open-source AI projects, models, tools, and infrastructure.
rust-sdkThe official Rust SDK for the Model Context Protocol