Tailored SDK clients for LlamaCloud services.
Project description
Llama Cloud Services
⚠️ DEPRECATION NOTICE
This repository and its packages are deprecated and will be maintained until May 1, 2026.
Please migrate to the new packages:
- Python:
pip install llama-cloud>=1.0(GitHub)- TypeScript:
npm install @llamaindex/llama-cloud(GitHub)The new packages provide the same functionality with improved performance, better support, and active development.
This repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud.
This includes:
- LlamaParse - A GenAI-native document parser that can parse complex document data for any downstream LLM use case (Agents, RAG, data processing, etc.).
- LlamaExtract - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.
- LlamaCloud Index - A widely customizable and fully automated document ingestion pipeline that also serves retrieval purposes.
Getting Started
Install the package:
pip install llama-cloud-services
Then, get your API key from LlamaCloud.
Then, you can use the services in your code:
from llama_cloud_services import (
LlamaParse,
LlamaExtract,
LlamaCloudIndex,
)
from llama_cloud_services import LlamaParse, LlamaExtract
parser = LlamaParse(api_key="YOUR_API_KEY")
extract = LlamaExtract(api_key="YOUR_API_KEY")
index = LlamaCloudIndex(
"my_first_index", project_name="default", api_key="YOUR_API_KEY"
)
See the quickstart guides for each service for more information:
Switch to EU SaaS 🇪🇺
If you are interested in using LlamaCloud services in the EU, you can adjust your base URL to https://api.cloud.eu.llamaindex.ai.
You can also create your API key in the EU region here.
from llama_cloud_services import (
LlamaParse,
LlamaExtract,
EU_BASE_URL,
)
parser = LlamaParse(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
extract = LlamaExtract(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
index = LlamaCloudIndex(
"my_first_index",
project_name="default",
api_key="YOUR_API_KEY",
base_url=EU_BASE_URL,
)
Documentation
You can see complete SDK and API documentation for each service on our official docs.
Terms of Service
See the Terms of Service Here.
Get in Touch (LlamaCloud)
You can get in touch with us by following our contact link.
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_cloud_services-0.6.94.tar.gz.
File metadata
- Download URL: llama_cloud_services-0.6.94.tar.gz
- Upload date:
- Size: 64.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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 |
127b8440d3d3a964d0c4b3f5fe7fcac3ead482f7645971cc8ae30768dcf63306
|
|
| MD5 |
7a07fc8e2651c69ac41d602daf91adde
|
|
| BLAKE2b-256 |
d391c3c94a58c44d0a12e0df2d5038b188fc283877f56cf2f6c41c60f43258e6
|
File details
Details for the file llama_cloud_services-0.6.94-py3-none-any.whl.
File metadata
- Download URL: llama_cloud_services-0.6.94-py3-none-any.whl
- Upload date:
- Size: 77.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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 |
ac89785f3689d71298511f751bcf4ca16952a616bd75ff06e0ff164f04b0775b
|
|
| MD5 |
93ffbdeb822d5b169f1540b9d7a248fb
|
|
| BLAKE2b-256 |
14ab876486e4f1c137cfeca8f876abd18eeec35a66a0fd8adb15afba7b28aa8c
|