llama-cloud-services


Namellama-cloud-services JSON
Version 0.6.64 PyPI version JSON
download
home_pageNone
SummaryTailored SDK clients for LlamaCloud services.
upload_time2025-09-06 00:29:55
maintainerNone
docs_urlNone
authorNone
requires_python<4.0,>=3.9
licenseNone
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.).
- [LlamaExtract](../extract.md) - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.
- [LlamaCloud Index](../index.md) - A widely customizable and fully automated document ingestion pipeline that also serves retrieval purposes.

## 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,
    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:

- [LlamaParse](../parse.md)
- [LlamaExtract](../extract.md)
- [LlamaCloud Index](../index.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,
    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](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": null,
    "author_email": "Logan Markewich <logan@runllama.ai>",
    "download_url": "https://files.pythonhosted.org/packages/4e/57/7ccd7ba629f02b2006d337b8a071b1c46af55944a63df70a9c4e465e399d/llama_cloud_services-0.6.64.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- [LlamaExtract](../extract.md) - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.\n- [LlamaCloud Index](../index.md) - A widely customizable and fully automated document ingestion pipeline that also serves retrieval purposes.\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 (\n    LlamaParse,\n    LlamaExtract,\n    LlamaCloudIndex,\n)\nfrom llama_cloud_services import LlamaParse, LlamaExtract\n\nparser = LlamaParse(api_key=\"YOUR_API_KEY\")\nextract = LlamaExtract(api_key=\"YOUR_API_KEY\")\nindex = LlamaCloudIndex(\n    \"my_first_index\", project_name=\"default\", api_key=\"YOUR_API_KEY\"\n)\n```\n\nSee the quickstart guides for each service for more information:\n\n- [LlamaParse](../parse.md)\n- [LlamaExtract](../extract.md)\n- [LlamaCloud Index](../index.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    LlamaExtract,\n    EU_BASE_URL,\n)\n\nparser = LlamaParse(api_key=\"YOUR_API_KEY\", base_url=EU_BASE_URL)\nextract = LlamaExtract(api_key=\"YOUR_API_KEY\", base_url=EU_BASE_URL)\nindex = LlamaCloudIndex(\n    \"my_first_index\",\n    project_name=\"default\",\n    api_key=\"YOUR_API_KEY\",\n    base_url=EU_BASE_URL,\n)\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": null,
    "summary": "Tailored SDK clients for LlamaCloud services.",
    "version": "0.6.64",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76efc5fc98d32078a866257e4ed1bbf316e075c88c052b33156b2591470ad696",
                "md5": "b3c8371f644f277546e2451f46d224e2",
                "sha256": "c66a662741234e1d4d72af34282c00503412a815bee396c675d0e24f0658eea7"
            },
            "downloads": -1,
            "filename": "llama_cloud_services-0.6.64-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b3c8371f644f277546e2451f46d224e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 64808,
            "upload_time": "2025-09-06T00:29:54",
            "upload_time_iso_8601": "2025-09-06T00:29:54.345586Z",
            "url": "https://files.pythonhosted.org/packages/76/ef/c5fc98d32078a866257e4ed1bbf316e075c88c052b33156b2591470ad696/llama_cloud_services-0.6.64-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e577ccd7ba629f02b2006d337b8a071b1c46af55944a63df70a9c4e465e399d",
                "md5": "a600066415cb745f41aaba839694f71f",
                "sha256": "cfba9a71b84751ec3368d2b4487b515497ef28248c4ee524b238eb4caec6af1c"
            },
            "downloads": -1,
            "filename": "llama_cloud_services-0.6.64.tar.gz",
            "has_sig": false,
            "md5_digest": "a600066415cb745f41aaba839694f71f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 54044,
            "upload_time": "2025-09-06T00:29:55",
            "upload_time_iso_8601": "2025-09-06T00:29:55.645649Z",
            "url": "https://files.pythonhosted.org/packages/4e/57/7ccd7ba629f02b2006d337b8a071b1c46af55944a63df70a9c4e465e399d/llama_cloud_services-0.6.64.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-06 00:29:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-cloud-services"
}
        
Elapsed time: 0.82643s