{"id":25226521,"url":"https://github.com/run-llama/llama_cloud_services","last_synced_at":"2026-02-14T01:13:35.039Z","repository":{"id":220563773,"uuid":"751000531","full_name":"run-llama/llama_cloud_services","owner":"run-llama","description":"Knowledge Agents and Management in the Cloud","archived":false,"fork":false,"pushed_at":"2025-05-06T21:32:17.000Z","size":48353,"stargazers_count":3956,"open_issues_count":239,"forks_count":405,"subscribers_count":24,"default_branch":"main","last_synced_at":"2025-05-07T23:39:15.507Z","etag":null,"topics":["document","document-parser","document-parsing","docx-to-markdown","parsing","pdf","pdf-document-processor","pdf-to-excel","pdf-to-json","pdf-to-markdown","pdf-to-text","ppt-to-json","ppt-to-markdown","pptx","structured-data","tables"],"latest_commit_sha":null,"homepage":"https://cloud.llamaindex.ai","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/run-llama.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-31T18:33:07.000Z","updated_at":"2025-05-07T19:44:52.000Z","dependencies_parsed_at":"2024-04-23T05:11:42.702Z","dependency_job_id":"82fcc15f-e622-4be8-98c0-58ef9119fbea","html_url":"https://github.com/run-llama/llama_cloud_services","commit_stats":{"total_commits":212,"total_committers":27,"mean_commits":7.851851851851852,"dds":0.7075471698113207,"last_synced_commit":"6d62fb89c31926d1834e787c349ba90cf4df7bd4"},"previous_names":["run-llama/llama_parser","run-llama/llama_parse","run-llama/llama_cloud_services"],"tags_count":52,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/run-llama%2Fllama_cloud_services","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/run-llama%2Fllama_cloud_services/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/run-llama%2Fllama_cloud_services/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/run-llama%2Fllama_cloud_services/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/run-llama","download_url":"https://codeload.github.com/run-llama/llama_cloud_services/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253507084,"owners_count":21919149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["document","document-parser","document-parsing","docx-to-markdown","parsing","pdf","pdf-document-processor","pdf-to-excel","pdf-to-json","pdf-to-markdown","pdf-to-text","ppt-to-json","ppt-to-markdown","pptx","structured-data","tables"],"created_at":"2025-02-11T06:02:05.590Z","updated_at":"2026-02-14T01:13:35.019Z","avatar_url":"https://github.com/run-llama.png","language":"Python","funding_links":[],"categories":["TypeScript","📥 Data Ingestion \u0026 Parsing"],"sub_categories":["Frameworks"],"readme":"[![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\u003e **⚠️ DEPRECATION NOTICE**\n\u003e\n\u003e This repository and its packages are deprecated and will be maintained until **May 1, 2026**.\n\u003e\n\u003e **Please migrate to the new packages:**\n\u003e - **Python**: `pip install llama-cloud\u003e=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))\n\u003e - **TypeScript**: `npm install @llamaindex/llama-cloud` ([GitHub](https://github.com/run-llama/llama-cloud-ts))\n\u003e\n\u003e The new packages provide the same functionality with improved performance, better support, and active development.\n\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)\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 🇪🇺\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frun-llama%2Fllama_cloud_services","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frun-llama%2Fllama_cloud_services","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frun-llama%2Fllama_cloud_services/lists"}