Compare commits

...

4 Commits

Author SHA1 Message Date
Emanuel Ferreira 2176ac117d docs 2025-04-01 13:42:03 -03:00
Emanuel Ferreira c327d26b7b wip 2025-04-01 13:07:50 -03:00
Emanuel Ferreira 9188af5e89 newline 2025-04-01 12:59:33 -03:00
Emanuel Ferreira 1c39e9c85f wip 2025-04-01 12:56:21 -03:00
3 changed files with 22 additions and 0 deletions
+19
View File
@@ -38,6 +38,25 @@ See the quickstart guides for each service for more information:
- [LlamaReport (beta/invite-only)](./report.md)
- [LlamaExtract (beta/invite-only)](./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/).
+2
View File
@@ -1,6 +1,7 @@
from llama_cloud_services.parse import LlamaParse
from llama_cloud_services.report import ReportClient, LlamaReport
from llama_cloud_services.extract import LlamaExtract, ExtractionAgent
from llama_cloud_services.constants import EU_BASE_URL
__all__ = [
"LlamaParse",
@@ -8,4 +9,5 @@ __all__ = [
"LlamaReport",
"LlamaExtract",
"ExtractionAgent",
"EU_BASE_URL",
]
+1
View File
@@ -0,0 +1 @@
EU_BASE_URL = "https://api.cloud.eu.llamaindex.ai"