Skip to content

BeeKrowd/llama_cloud_services

 
 

Repository files navigation

PyPI - Downloads GitHub contributors Discord

Llama Cloud Services

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.).
  • LlamaReport (beta/invite-only) - A prebuilt agentic report builder that can be used to build reports from a variety of data sources.
  • LlamaExtract - A prebuilt agentic data extractor that can be used to transform data into a structured JSON representation.

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

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,
    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.

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.

About

Knowledge Agents and Management in the Cloud

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.3%
  • HTML 8.4%
  • Makefile 0.3%