llama-cloud-services


Namellama-cloud-services JSON
Version 0.6.49 PyPI version JSON
download
home_pageNone
SummaryTailored SDK clients for LlamaCloud services.
upload_time2025-07-16 23:47:31
maintainerNone
docs_urlNone
authorLogan Markewich
requires_python<4.0,>=3.9
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI - Downloads](https://img.shields.io/pypi/dm/llama-cloud-services)](https://pypi.org/project/llama-cloud-services/)
[![GitHub contributors](https://img.shields.io/github/contributors/run-llama/llama_cloud_services)](https://github.com/run-llama/llama_cloud_services/graphs/contributors)
[![Discord](https://img.shields.io/discord/1059199217496772688)](https://discord.gg/dGcwcsnxhU)

# Llama Cloud Services

This repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud.

This includes:

- [LlamaParse](./parse.md) - A GenAI-native document parser that can parse complex document data for any downstream LLM use case (Agents, RAG, data processing, etc.).
- [LlamaReport (beta/invite-only)](./report.md) - A prebuilt agentic report builder that can be used to build reports from a variety of data sources.
- [LlamaExtract](./extract.md) - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.

## Getting Started

Install the package:

```bash
pip install llama-cloud-services
```

Then, get your API key from [LlamaCloud](https://cloud.llamaindex.ai/).

Then, you can use the services in your code:

```python
from llama_cloud_services import LlamaParse, LlamaReport, LlamaExtract

parser = LlamaParse(api_key="YOUR_API_KEY")
report = LlamaReport(api_key="YOUR_API_KEY")
extract = LlamaExtract(api_key="YOUR_API_KEY")
```

See the quickstart guides for each service for more information:

- [LlamaParse](./parse.md)
- [LlamaReport (beta/invite-only)](./report.md)
- [LlamaExtract](./extract.md)

## 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](https://cloud.eu.llamaindex.ai).

```python
from llama_cloud_services import (
    LlamaParse,
    LlamaReport,
    LlamaExtract,
    EU_BASE_URL,
)

parser = LlamaParse(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
report = LlamaReport(api_key="YOUR_API_KEY", base_url=EU_BASE_URL)
extract = LlamaExtract(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](https://docs.cloud.llamaindex.ai/).

## Terms of Service

See the [Terms of Service Here](./TOS.pdf).

## Get in Touch (LlamaCloud)

You can get in touch with us by following our [contact link](https://www.llamaindex.ai/contact).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "llama-cloud-services",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Logan Markewich",
    "author_email": "logan@runllama.ai",
    "download_url": "https://files.pythonhosted.org/packages/ab/2a/510be737940c45cbfed7e806336cd8790c1adc5214e48d7aed052a8e996a/llama_cloud_services-0.6.49.tar.gz",
    "platform": null,
    "description": "[![PyPI - Downloads](https://img.shields.io/pypi/dm/llama-cloud-services)](https://pypi.org/project/llama-cloud-services/)\n[![GitHub contributors](https://img.shields.io/github/contributors/run-llama/llama_cloud_services)](https://github.com/run-llama/llama_cloud_services/graphs/contributors)\n[![Discord](https://img.shields.io/discord/1059199217496772688)](https://discord.gg/dGcwcsnxhU)\n\n# Llama Cloud Services\n\nThis repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud.\n\nThis includes:\n\n- [LlamaParse](./parse.md) - A GenAI-native document parser that can parse complex document data for any downstream LLM use case (Agents, RAG, data processing, etc.).\n- [LlamaReport (beta/invite-only)](./report.md) - A prebuilt agentic report builder that can be used to build reports from a variety of data sources.\n- [LlamaExtract](./extract.md) - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.\n\n## Getting Started\n\nInstall the package:\n\n```bash\npip install llama-cloud-services\n```\n\nThen, get your API key from [LlamaCloud](https://cloud.llamaindex.ai/).\n\nThen, you can use the services in your code:\n\n```python\nfrom llama_cloud_services import LlamaParse, LlamaReport, LlamaExtract\n\nparser = LlamaParse(api_key=\"YOUR_API_KEY\")\nreport = LlamaReport(api_key=\"YOUR_API_KEY\")\nextract = LlamaExtract(api_key=\"YOUR_API_KEY\")\n```\n\nSee the quickstart guides for each service for more information:\n\n- [LlamaParse](./parse.md)\n- [LlamaReport (beta/invite-only)](./report.md)\n- [LlamaExtract](./extract.md)\n\n## Switch to EU SaaS \ud83c\uddea\ud83c\uddfa\n\nIf you are interested in using LlamaCloud services in the EU, you can adjust your base URL to `https://api.cloud.eu.llamaindex.ai`.\n\nYou can also create your API key in the EU region [here](https://cloud.eu.llamaindex.ai).\n\n```python\nfrom llama_cloud_services import (\n    LlamaParse,\n    LlamaReport,\n    LlamaExtract,\n    EU_BASE_URL,\n)\n\nparser = LlamaParse(api_key=\"YOUR_API_KEY\", base_url=EU_BASE_URL)\nreport = LlamaReport(api_key=\"YOUR_API_KEY\", base_url=EU_BASE_URL)\nextract = LlamaExtract(api_key=\"YOUR_API_KEY\", base_url=EU_BASE_URL)\n```\n\n## Documentation\n\nYou can see complete SDK and API documentation for each service on [our official docs](https://docs.cloud.llamaindex.ai/).\n\n## Terms of Service\n\nSee the [Terms of Service Here](./TOS.pdf).\n\n## Get in Touch (LlamaCloud)\n\nYou can get in touch with us by following our [contact link](https://www.llamaindex.ai/contact).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Tailored SDK clients for LlamaCloud services.",
    "version": "0.6.49",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ec4256a03b6e48fdd2401d731576b67c38e9394554fa99ae5c8bc37fb672e4a",
                "md5": "763d0c07d7df7bb337072a459dcb2fd5",
                "sha256": "29758878d507297f2a1c256247955f3eef9f2e06f4148cb3ef3b46262f35f8d5"
            },
            "downloads": -1,
            "filename": "llama_cloud_services-0.6.49-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "763d0c07d7df7bb337072a459dcb2fd5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 48452,
            "upload_time": "2025-07-16T23:47:30",
            "upload_time_iso_8601": "2025-07-16T23:47:30.531934Z",
            "url": "https://files.pythonhosted.org/packages/7e/c4/256a03b6e48fdd2401d731576b67c38e9394554fa99ae5c8bc37fb672e4a/llama_cloud_services-0.6.49-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab2a510be737940c45cbfed7e806336cd8790c1adc5214e48d7aed052a8e996a",
                "md5": "4bbf86905e1ac99da74805721759e92f",
                "sha256": "ab29c1bdc1b0a02bf8f49d4f0324b490f7cb0f553fe32985116f44e258e76a7e"
            },
            "downloads": -1,
            "filename": "llama_cloud_services-0.6.49.tar.gz",
            "has_sig": false,
            "md5_digest": "4bbf86905e1ac99da74805721759e92f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 41438,
            "upload_time": "2025-07-16T23:47:31",
            "upload_time_iso_8601": "2025-07-16T23:47:31.370677Z",
            "url": "https://files.pythonhosted.org/packages/ab/2a/510be737940c45cbfed7e806336cd8790c1adc5214e48d7aed052a8e996a/llama_cloud_services-0.6.49.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-16 23:47:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-cloud-services"
}
        
Elapsed time: 0.74469s