freshcrate
Home > Frameworks > llama-cloud

llama-cloud

The official Python library for the llama-cloud API

Description

# Llama Cloud Python SDK [![PyPI version](https://img.shields.io/pypi/v/llama_cloud.svg?label=pypi%20(stable))](https://pypi.org/project/llama_cloud/) The official Python SDK for [LlamaParse](https://cloud.llamaindex.ai) - the enterprise platform for agentic OCR and document processing. With this SDK, create powerful workflows across many features: - **Parse** - Agentic OCR and parsing for 130+ formats - **Extract** - Structured data extraction with custom schemas - **Classify** - Document categorization with natural-language rules - **Agents** - Deploy document agents as APIs - **Index** - Document ingestion and embedding for RAG ## Documentation - [Get an API Key](https://cloud.llamaindex.ai) - [Getting Started Guide](https://developers.llamaindex.ai/python/cloud/) - [Full API Reference](https://developers.api.llamaindex.ai/api/python) ## Installation ```sh pip install llama_cloud ``` ## Quick Start ```python import os from llama_cloud import LlamaCloud client = LlamaCloud( api_key=os.environ.get("LLAMA_CLOUD_API_KEY"), # This is the default and can be omitted ) # Parse a document job = client.parsing.create( tier="agentic", version="latest", file_id="your-file-id", ) print(job.id) ``` ## File Uploads ```python from pathlib import Path from llama_cloud import LlamaCloud client = LlamaCloud() # Upload using a Path client.files.create( file=Path("/path/to/document.pdf"), purpose="parse", ) # Or using bytes with a tuple of (filename, contents, media_type) client.files.create( file=("document.txt", b"content", "text/plain"), purpose="parse", ) ``` ## Async Usage ```python import asyncio from llama_cloud import AsyncLlamaCloud client = AsyncLlamaCloud() async def main(): job = await client.parsing.create( tier="agentic", version="latest", file_id="your-file-id", ) print(job.id) asyncio.run(main()) ``` ## MCP Server Use the Llama Cloud MCP Server to enable AI assistants to interact with the API: [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=%40llamaindex%2Fllama-cloud-mcp&config=eyJuYW1lIjoiQGxsYW1haW5kZXgvbGxhbWEtY2xvdWQtbWNwIiwidHJhbnNwb3J0IjoiaHR0cCIsInVybCI6Imh0dHBzOi8vbGxhbWFjbG91ZC1wcm9kLnN0bG1jcC5jb20iLCJoZWFkZXJzIjp7IngtbGxhbWEtY2xvdWQtYXBpLWtleSI6Ik15IEFQSSBLZXkifX0) [![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40llamaindex%2Fllama-cloud-mcp%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fllamacloud-prod.stlmcp.com%22%2C%22headers%22%3A%7B%22x-llama-cloud-api-key%22%3A%22My%20API%20Key%22%7D%7D) ## Error Handling When the API returns a non-success status code, an `APIError` subclass is raised: ```python import llama_cloud from llama_cloud import LlamaCloud client = LlamaCloud() try: client.pipelines.list(project_id="my-project-id") except llama_cloud.APIError as e: print(e.status_code) # 400 print(e.__class__.__name__) # BadRequestError ``` | Status Code | Error Type | | ----------- | -------------------------- | | 400 | `BadRequestError` | | 401 | `AuthenticationError` | | 403 | `PermissionDeniedError` | | 404 | `NotFoundError` | | 422 | `UnprocessableEntityError` | | 429 | `RateLimitError` | | >=500 | `InternalServerError` | | N/A | `APIConnectionError` | ## Retries and Timeouts The SDK automatically retries requests 2 times on connection errors, timeouts, rate limits, and 5xx errors. Requests timeout after 1 minute by default. Functions that combine multiple API calls (e.g. `client.parsing.parse()`) will have larger timeouts by default to account for the multiple requests and polling. ```python client = LlamaCloud( max_retries=0, # Disable retries (default: 2) timeout=30.0, # 30 second timeout (default: 1 minute) ) ``` ## Pagination List methods support auto-pagination with `for` loops:

Release History

VersionChangesUrgencyDate
2.4.1Imported from PyPI (2.4.1)Low4/21/2026
v2.4.1## 2.4.1 (2026-04-17) Full Changelog: [v2.4.0...v2.4.1](https://github.com/run-llama/llama-cloud-py/compare/v2.4.0...v2.4.1) ### Bug Fixes * **api:** Also support agent data `.create` for consistency ([46656fa](https://github.com/run-llama/llama-cloud-py/commit/46656fa2fa257d8db3ce6aec7ff1ea174765055d)) * **beta:** re-add agent_data() alias for backwards compat ([#84](https://github.com/run-llama/llama-cloud-py/issues/84)) ([ff0efb0](https://github.com/run-llama/llama-cloud-py/commit/ff0efb0dHigh4/17/2026
v2.4.0## 2.4.0 (2026-04-16) Full Changelog: [v2.3.0...v2.4.0](https://github.com/run-llama/llama-cloud-py/compare/v2.3.0...v2.4.0) ### Features * **api:** api update ([9ae910d](https://github.com/run-llama/llama-cloud-py/commit/9ae910d188ce74a3c34d3b0ca646f826dd571d8b)) * **api:** api update ([2ef67a1](https://github.com/run-llama/llama-cloud-py/commit/2ef67a11dba6bf311d8653a1ba9a48014178163a)) * **api:** api update ([fc7d45d](https://github.com/run-llama/llama-cloud-py/commit/fc7d45d5792e53c34b060High4/16/2026
v2.3.0## 2.3.0 (2026-04-07) Full Changelog: [v2.2.0...v2.3.0](https://github.com/run-llama/llama-cloud-py/compare/v2.2.0...v2.3.0) ### Features * **api:** manual updates ([ef96778](https://github.com/run-llama/llama-cloud-py/commit/ef9677851bec9ffb3d1cfedd431efd881b3ef7f9)) ### Bug Fixes * **client:** preserve hardcoded query params when merging with user params ([53c3d0a](https://github.com/run-llama/llama-cloud-py/commit/53c3d0aa13ccb9b3d6aa7b18c1943b52802c1aaa)) * use agentic parse for citatiMedium4/7/2026
v2.2.0## 2.2.0 (2026-04-03) Full Changelog: [v2.1.0...v2.2.0](https://github.com/run-llama/llama-cloud-py/compare/v2.1.0...v2.2.0) ### Features * **api:** Add product configurations ([e72b9dc](https://github.com/run-llama/llama-cloud-py/commit/e72b9dc79919794f1f5859b4b64147c158531951)) ### Bug Fixes * pin cookbook test file URLs to main merge commit hash ([#77](https://github.com/run-llama/llama-cloud-py/issues/77)) ([12c70b4](https://github.com/run-llama/llama-cloud-py/commit/12c70b4a43e6a97889Medium4/3/2026
v2.1.0## 2.1.0 (2026-04-01) Full Changelog: [v2.0.0...v2.1.0](https://github.com/run-llama/llama-cloud-py/compare/v2.0.0...v2.1.0) ### Features * **api:** api update ([8d47ebf](https://github.com/run-llama/llama-cloud-py/commit/8d47ebfbe4428d5e8be9177f441c6923fd0bf583)) * **api:** api update ([06f4920](https://github.com/run-llama/llama-cloud-py/commit/06f49206aab97f1db1523bdd5d497ac604a8dcb1))Medium4/1/2026
v2.0.0## 2.0.0 (2026-03-31) Full Changelog: [v1.6.0...v2.0.0](https://github.com/run-llama/llama-cloud-py/compare/v1.6.0...v2.0.0) ### ⚠ BREAKING CHANGES * remove extraction v1 resource, extract v2 metadata restructure ### Features * add run() and wait_for_completion() convenience methods to extract resource ([e491e0e](https://github.com/run-llama/llama-cloud-py/commit/e491e0e3a2b04c9185b6ef0b2c3e9f59c2759be0)) * **api:** api update ([b55bf1d](https://github.com/run-llama/llama-cloud-py/commit/b5Medium3/31/2026
v1.6.0## 1.6.0 (2026-03-05) Full Changelog: [v1.5.0...v1.6.0](https://github.com/run-llama/llama-cloud-py/compare/v1.5.0...v1.6.0) ### Features * **api:** add better deprecation messages ([67d464b](https://github.com/run-llama/llama-cloud-py/commit/67d464b17ad38286fa67fe167f400a73f5ca937a)) * **api:** Add Classify V2 API ([48ecb15](https://github.com/run-llama/llama-cloud-py/commit/48ecb15528509b3a34607ef0cb968d2d38956c3b)) * **api:** api update ([5d70486](https://github.com/run-llama/llama-cloud-pLow3/5/2026
v1.5.0## 1.5.0 (2026-03-03) Full Changelog: [v1.4.1...v1.5.0](https://github.com/run-llama/llama-cloud-py/compare/v1.4.1...v1.5.0) ### Features * **api:** api update ([0537b16](https://github.com/run-llama/llama-cloud-py/commit/0537b16dd8f8588160d6c1469f0f9821dff6435e)) * **api:** api update ([0deee0e](https://github.com/run-llama/llama-cloud-py/commit/0deee0e231533b60f75e2fb44434bb3c8b287d93)) * **api:** api update ([dededce](https://github.com/run-llama/llama-cloud-py/commit/dededce0585c70ec82b3bLow3/3/2026
v1.4.1## 1.4.1 (2026-02-18) Full Changelog: [v1.4.0...v1.4.1](https://github.com/run-llama/llama-cloud-py/compare/v1.4.0...v1.4.1) ### Chores * format all `api.md` files ([32fcd56](https://github.com/run-llama/llama-cloud-py/commit/32fcd56e165cc69515a851fc50b99b429593751e)) * **internal:** fix lint error on Python 3.14 ([5db45de](https://github.com/run-llama/llama-cloud-py/commit/5db45decf8c416919e3a27f4c146ad791e43f9bb))Low2/18/2026
v1.4.0## 1.4.0 (2026-02-12) Full Changelog: [v1.3.0...v1.4.0](https://github.com/run-llama/llama-cloud-py/compare/v1.3.0...v1.4.0) ### Features * **api:** api update ([ba237e3](https://github.com/run-llama/llama-cloud-py/commit/ba237e3f1c2510c6af462f06f84c3184091a9c8b)) ### Bug Fixes * **types:** correctly define false enum ([9c9182f](https://github.com/run-llama/llama-cloud-py/commit/9c9182fa746a5811bc4d4e83e2a0ed633e83c597)) ### Chores * **api:** minor updates ([e1749b8](https://github.com/Low2/12/2026
v1.3.0## 1.3.0 (2026-02-04) Full Changelog: [v1.2.0...v1.3.0](https://github.com/run-llama/llama-cloud-py/compare/v1.2.0...v1.3.0) ### Features * **api:** api update ([39e243f](https://github.com/run-llama/llama-cloud-py/commit/39e243f710d7bdf60e8ab877ab12fcb69385f292)) * **api:** manual updates ([5a1a439](https://github.com/run-llama/llama-cloud-py/commit/5a1a4395a12fc5636503c5cd545feac413572661)) ### Bug Fixes * throw error on empty expand parameter in e2e parse method ([02fbe93](https://githuLow2/4/2026
v1.2.0## 1.2.0 (2026-01-30) Full Changelog: [v1.1.0...v1.2.0](https://github.com/run-llama/llama-cloud-py/compare/v1.1.0...v1.2.0) ### Features * **api:** api update ([5ae5d42](https://github.com/run-llama/llama-cloud-py/commit/5ae5d4233af1d4a32ffb517ccb53698ca12071b7)) * **api:** api update ([4950cda](https://github.com/run-llama/llama-cloud-py/commit/4950cdab74a4e3bb888027bc2ed31f637e16c207)) * **api:** api update ([69eaf93](https://github.com/run-llama/llama-cloud-py/commit/69eaf939dcd2d4bb6d396Low1/30/2026
v1.1.0## 1.1.0 (2026-01-24) Full Changelog: [v1.0.0...v1.1.0](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0...v1.1.0) ### Features * **api:** api update ([4c5af6d](https://github.com/run-llama/llama-cloud-py/commit/4c5af6d04a27a63c0674f563809a72d5bf6675dd)) * **api:** api update ([8cbc29f](https://github.com/run-llama/llama-cloud-py/commit/8cbc29f4547e01ab7b4b2a9a190a0edd57eead4f)) ### Chores * **ci:** upgrade `actions/github-script` ([0be2b3c](https://github.com/run-llama/llama-cloLow1/26/2026
v1.0.0## 1.0.0 (2026-01-21) Full Changelog: [v1.0.0-beta.7...v1.0.0](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0-beta.7...v1.0.0) ### Features * **api:** api update ([fcfeefb](https://github.com/run-llama/llama-cloud-py/commit/fcfeefbbe1905a3cb6f5514de065998d167b7968))Low1/21/2026
v1.0.0-beta.7## 1.0.0-beta.7 (2026-01-20) Full Changelog: [v1.0.0-beta.6...v1.0.0-beta.7](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0-beta.6...v1.0.0-beta.7)Low1/20/2026
v1.0.0-beta.6## 1.0.0-beta.6 (2026-01-19) Full Changelog: [v1.0.0-beta.5...v1.0.0-beta.6](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0-beta.5...v1.0.0-beta.6) ### Features * **api:** api update ([a2bbe4d](https://github.com/run-llama/llama-cloud-py/commit/a2bbe4de7b2827f99fb211059bebe7d3900f176d)) ### Chores * **internal:** update `actions/checkout` version ([77fe7c0](https://github.com/run-llama/llama-cloud-py/commit/77fe7c0d78fa243bba2b4aef380b4b6e62bd7212))Low1/19/2026
v1.0.0-beta.5## 1.0.0-beta.5 (2026-01-17) Full Changelog: [v1.0.0-beta.4...v1.0.0-beta.5](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0-beta.4...v1.0.0-beta.5) ### Features * **api:** api update ([60cad6a](https://github.com/run-llama/llama-cloud-py/commit/60cad6afcfbe4723baea80c0590826d9272676d0)) ### Bug Fixes * Parse example in comment ([d5c8ed7](https://github.com/run-llama/llama-cloud-py/commit/d5c8ed79d8ee05019ccff98fe52c5183670e2d67))Low1/17/2026
v1.0.0-beta.4## 1.0.0-beta.4 (2026-01-16) Full Changelog: [v1.0.0-beta.3...v1.0.0-beta.4](https://github.com/run-llama/llama-cloud-py/compare/v1.0.0-beta.3...v1.0.0-beta.4) ### Features * **api:** api update ([4a23421](https://github.com/run-llama/llama-cloud-py/commit/4a23421a36a23a765afffa3526ace922191c1300)) * **api:** Consolidate more pagination, rename functions ([0b099f3](https://github.com/run-llama/llama-cloud-py/commit/0b099f3f9b691b9045935e8dc0bd51b88f25eaf6)) * **api:** update via SDK Studio ([Low1/16/2026
v1.0.0-beta.3## 1.0.0-beta.3 (2026-01-14) Full Changelog: [v0.20.0...v1.0.0-beta.3](https://github.com/run-llama/llama-cloud-py/compare/v0.20.0...v1.0.0-beta.3) ### Features * **api:** manual updates ([c23da58](https://github.com/run-llama/llama-cloud-py/commit/c23da58fc7096b490c1083d98654cd9bc3db36c1)) * **client:** add support for binary request streaming ([d6cbf95](https://github.com/run-llama/llama-cloud-py/commit/d6cbf954f2c8b7a29a44b8929acc7c76501720fe)) ### Chores * **internal:** codegen relatedLow1/14/2026
v0.20.0## 0.20.0 (2026-01-14) Full Changelog: [v0.19.1...v0.20.0](https://github.com/run-llama/llama-cloud-py/compare/v0.19.1...v0.20.0) ### Features * **api:** api update ([725a04e](https://github.com/run-llama/llama-cloud-py/commit/725a04ec0adc9360b572027a8eaf95e9246e9639)) * **api:** parse v2alpha1 -> v2 ([83fa7c4](https://github.com/run-llama/llama-cloud-py/commit/83fa7c47a1681a4284ca06d8e61a67540c15d4c6)) * **api:** Removing false upload_file endpoint ([d05898c](https://github.com/run-llama/Low1/14/2026
v0.19.1## 0.19.1 (2026-01-10) Full Changelog: [v0.19.0...v0.19.1](https://github.com/run-llama/llama-cloud-py/compare/v0.19.0...v0.19.1)Low1/11/2026
v0.19.0## 0.19.0 (2026-01-10) Full Changelog: [v0.18.0...v0.19.0](https://github.com/run-llama/llama-cloud-py/compare/v0.18.0...v0.19.0) ### Features * **api:** api update ([028190e](https://github.com/run-llama/llama-cloud-py/commit/028190ed0b7c0f5e4eee8f913cb13f3745ad3ecc)) * **api:** manual updates ([3616730](https://github.com/run-llama/llama-cloud-py/commit/36167303b3980a45b56039d959435a35c6d866c8))Low1/10/2026
v0.18.0## 0.18.0 (2026-01-08) Full Changelog: [v0.17.0...v0.18.0](https://github.com/run-llama/llama-cloud-py/compare/v0.17.0...v0.18.0) ### Features * **api:** add list commands to pipeline file images ([e9ac62e](https://github.com/run-llama/llama-cloud-py/commit/e9ac62ecfee8b9020e169010cc910989dc491c78))Low1/8/2026
v0.17.0## 0.17.0 (2026-01-06) Full Changelog: [v0.16.0...v0.17.0](https://github.com/run-llama/llama-cloud-py/compare/v0.16.0...v0.17.0) ### Features * **api:** api update ([b4a17d8](https://github.com/run-llama/llama-cloud-py/commit/b4a17d84ae557c68ea5186481b1e2bf0bade435a))Low1/7/2026
v0.16.0## 0.16.0 (2026-01-06) Full Changelog: [v0.15.0...v0.16.0](https://github.com/run-llama/llama-cloud-py/compare/v0.15.0...v0.16.0) ### Features * **api:** add back pipeline files ([ca81b27](https://github.com/run-llama/llama-cloud-py/commit/ca81b27d04ee0bdeb0484d6638509197a6f9cb1b)) * **api:** add pipelines image utils ([dd26528](https://github.com/run-llama/llama-cloud-py/commit/dd26528422b7053e132470f4498fac26d4f6e168)) * **api:** api update ([31d2071](https://github.com/run-llama/llama-clouLow1/6/2026
v0.15.0## 0.15.0 (2026-01-06) Full Changelog: [v0.14.0...v0.15.0](https://github.com/run-llama/llama-cloud-py/compare/v0.14.0...v0.15.0) ### Features * **api:** api update ([1c43170](https://github.com/run-llama/llama-cloud-py/commit/1c43170b98fbad88a24295db44527cf06f4d2c2a)) * **api:** api update ([dec9b8b](https://github.com/run-llama/llama-cloud-py/commit/dec9b8b1b34f990821f7d967878dc362bfc5c19e)) ### Chores * **internal:** codegen related update ([fb629e4](https://github.com/run-llama/llama-cLow1/6/2026
v0.14.0## 0.14.0 (2025-12-23) Full Changelog: [v0.13.0...v0.14.0](https://github.com/run-llama/llama-cloud-py/compare/v0.13.0...v0.14.0) ### Features * **api:** api update ([f51c7dc](https://github.com/run-llama/llama-cloud-py/commit/f51c7dcd316db757103b8429a372bde2d4aaa0ea)) * **api:** api update ([ff5295d](https://github.com/run-llama/llama-cloud-py/commit/ff5295ddccab0cf23ce854c9e393ced2f114f8db)) * **api:** api update ([5335d08](https://github.com/run-llama/llama-cloud-py/commit/5335d085a7cded66Low12/25/2025
v0.13.0## 0.13.0 (2025-12-04) Full Changelog: [v0.12.0...v0.13.0](https://github.com/run-llama/llama-cloud-py/compare/v0.12.0...v0.13.0) ### Features * **api:** add list page screenshots/figures ([e4c618c](https://github.com/run-llama/llama-cloud-py/commit/e4c618c4046da38d0d4234f934c6a80f782839ce))Low12/4/2025
v0.12.0## 0.12.0 (2025-12-03) Full Changelog: [v0.11.0...v0.12.0](https://github.com/run-llama/llama-cloud-py/compare/v0.11.0...v0.12.0) ### Features * **api:** add split ([2219e71](https://github.com/run-llama/llama-cloud-py/commit/2219e712b4ab3a196b04e425a73b7e2af52bed43)) ### Chores * **docs:** use environment variables for authentication in code snippets ([f054d44](https://github.com/run-llama/llama-cloud-py/commit/f054d44d903f850e2503029f2399f4cee10606ae)) * update lockfile ([3f8db4e](https:Low12/3/2025
v0.11.0## 0.11.0 (2025-12-03) Full Changelog: [v0.10.0...v0.11.0](https://github.com/run-llama/llama-cloud-py/compare/v0.10.0...v0.11.0) ### Features * **api:** add some missing endpoints ([f5dbc21](https://github.com/run-llama/llama-cloud-py/commit/f5dbc213944ce8745026ca7beb65c407551b8a75)) * **api:** api update ([609d9be](https://github.com/run-llama/llama-cloud-py/commit/609d9be78a50a9dc982b251ab5a78540d2c183a6)) * **api:** api update ([293983f](https://github.com/run-llama/llama-cloud-py/commit/Low12/3/2025
v0.10.0## 0.10.0 (2025-12-01) Full Changelog: [v0.9.0...v0.10.0](https://github.com/run-llama/llama-cloud-py/compare/v0.9.0...v0.10.0) ### Features * **api:** api update ([981b2ea](https://github.com/run-llama/llama-cloud-py/commit/981b2ea0a185083d61519b1231f0a7d482e48054)) * **api:** fix readme example ([b615fbf](https://github.com/run-llama/llama-cloud-py/commit/b615fbf2b32e4dbf9e3eb162f25c145451cadc7a))Low12/1/2025
v0.9.0## 0.9.0 (2025-12-01) Full Changelog: [v0.8.0...v0.9.0](https://github.com/run-llama/llama-cloud-py/compare/v0.8.0...v0.9.0) ### Features * **api:** add pipeline.retrieve method ([cd02c34](https://github.com/run-llama/llama-cloud-py/commit/cd02c34bd8fc89c08a1baf05432fccef2bb2aee7)) * **api:** api update ([c86b1a4](https://github.com/run-llama/llama-cloud-py/commit/c86b1a48c483384179e8fa9aff1adecac8c11149))Low12/1/2025
v0.8.0## 0.8.0 (2025-11-28) Full Changelog: [v0.7.0...v0.8.0](https://github.com/run-llama/llama-cloud-py/compare/v0.7.0...v0.8.0) ### Features * **api:** add get page figure/screenshot methods ([388d86e](https://github.com/run-llama/llama-cloud-py/commit/388d86e0d6a749632ef2deb00ee1917b00df9aba))Low11/28/2025
v0.7.0## 0.7.0 (2025-11-28) Full Changelog: [v0.6.0...v0.7.0](https://github.com/run-llama/llama-cloud-py/compare/v0.6.0...v0.7.0) ### Features * **api:** add back projects list/get ([b6b41a1](https://github.com/run-llama/llama-cloud-py/commit/b6b41a1d0289452e64c3440d9c414854155d82dd)) * **api:** api update ([fdd82e0](https://github.com/run-llama/llama-cloud-py/commit/fdd82e082bdfc3b237a815dc9255b469fdb19dfe)) ### Bug Fixes * ensure streams are always closed ([7f1be5b](https://github.com/run-llaLow11/28/2025
v0.6.0## 0.6.0 (2025-11-27) Full Changelog: [v0.5.0...v0.6.0](https://github.com/run-llama/llama-cloud-py/compare/v0.5.0...v0.6.0) ### Features * **api:** api update ([652a7a8](https://github.com/run-llama/llama-cloud-py/commit/652a7a8ad5ada51a312c965d04e7726895f44f8c))Low11/27/2025
v0.5.0## 0.5.0 (2025-11-27) Full Changelog: [v0.4.0...v0.5.0](https://github.com/run-llama/llama-cloud-py/compare/v0.4.0...v0.5.0) ### Features * **api:** api update ([0c5e51f](https://github.com/run-llama/llama-cloud-py/commit/0c5e51fe3ea77ac4b2f4776dee77be261806eed8)) * **api:** manual updates ([2d593a1](https://github.com/run-llama/llama-cloud-py/commit/2d593a16432cbf54bad7ea74d80c095888204d7a))Low11/27/2025
v0.4.0## 0.4.0 (2025-11-26) Full Changelog: [v0.3.0...v0.4.0](https://github.com/run-llama/llama-cloud-py/compare/v0.3.0...v0.4.0) ### Features * **api:** api update ([1c11d9d](https://github.com/run-llama/llama-cloud-py/commit/1c11d9d8763217a43e660950b8646b4e649a96be)) * **api:** fix api key name ([85e9cb3](https://github.com/run-llama/llama-cloud-py/commit/85e9cb3c94000b7c639bdb5fcfe7b263bf1acc83)) * **api:** manual updates ([a03d412](https://github.com/run-llama/llama-cloud-py/commit/a03d41232feLow11/27/2025
v0.3.0## 0.3.0 (2025-11-23) Full Changelog: [v0.2.0...v0.3.0](https://github.com/run-llama/llama-cloud-py/compare/v0.2.0...v0.3.0) ### Features * **api:** Add missing api endpoints ([c8e9c07](https://github.com/run-llama/llama-cloud-py/commit/c8e9c0775a1fa6409e6fab5429d9fbaffed0526b)) * **api:** api update ([c4dac52](https://github.com/run-llama/llama-cloud-py/commit/c4dac5205f77ce7cf256a27b3c86d8a2b49828e7)) * **api:** api update ([e1ff8b1](https://github.com/run-llama/llama-cloud-py/commit/e1ff8bLow11/25/2025
v0.2.0## 0.2.0 (2025-11-19) Full Changelog: [v0.1.1...v0.2.0](https://github.com/run-llama/llama-cloud-py/compare/v0.1.1...v0.2.0) ### Features * **api:** api update ([02e9e08](https://github.com/run-llama/llama-cloud-py/commit/02e9e088adfe7842c3a098e816aa6930ae156e86)) ### Bug Fixes * **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([9784558](https://github.com/run-llama/llama-cloud-py/commit/97845584d969cf89fb7b28f4d5acea26055c0e50))Low11/19/2025
v0.1.1## 0.1.1 (2025-11-11) Full Changelog: [v0.1.0...v0.1.1](https://github.com/run-llama/llama-cloud-py/compare/v0.1.0...v0.1.1) ### Bug Fixes * compat with Python 3.14 ([198061d](https://github.com/run-llama/llama-cloud-py/commit/198061d9a14a632331aee4300e2c4fe3a39e10d8)) ### Chores * **package:** drop Python 3.8 support ([dba8e3a](https://github.com/run-llama/llama-cloud-py/commit/dba8e3a953a3f5d29a5357fd7c46babfd2e9b7cb))Low11/11/2025
v0.1.0## 0.1.0 (2025-11-07) Full Changelog: [v0.0.1...v0.1.0](https://github.com/run-llama/llama-cloud-py/compare/v0.0.1...v0.1.0) ### Features * **api:** add pagination config ([a09a6bf](https://github.com/run-llama/llama-cloud-py/commit/a09a6bf431ddd321b14a6c5574117690f7cbae00)) * **api:** api update ([5e2aade](https://github.com/run-llama/llama-cloud-py/commit/5e2aade9aefa461b215f37fe60239cea20c98cf8)) * **api:** api update ([64c9670](https://github.com/run-llama/llama-cloud-py/commit/64c9670fcfLow11/7/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

pre-commitA framework for managing and maintaining multi-language pre-commit hooks.v4.6.0
azure-core-tracing-opentelemetryMicrosoft Azure Azure Core OpenTelemetry plugin Library for Pythonazure-template_0.1.0b6187637
spdx-toolsSPDX parser and tools.0.8.5
lacesDjango components that know how to render themselves.0.1.2
django-tasksA backport of Django's built in Tasks framework0.12.0