File tree 3 files changed +22
-0
lines changed
3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,25 @@ See the quickstart guides for each service for more information:
38
38
- [ LlamaReport (beta/invite-only)] ( ./report.md )
39
39
- [ LlamaExtract (beta/invite-only)] ( ./extract.md )
40
40
41
+ ## Switch to EU SaaS 🇪🇺
42
+
43
+ If you are interested in using LlamaCloud services in the EU, you can adjust your base URL to ` https://api.cloud.eu.llamaindex.ai ` .
44
+
45
+ You can also create your API key in the EU region [ here] ( https://cloud.eu.llamaindex.ai ) .
46
+
47
+ ``` python
48
+ from llama_cloud_services import (
49
+ LlamaParse,
50
+ LlamaReport,
51
+ LlamaExtract,
52
+ EU_BASE_URL ,
53
+ )
54
+
55
+ parser = LlamaParse(api_key = " YOUR_API_KEY" , base_url = EU_BASE_URL )
56
+ report = LlamaReport(api_key = " YOUR_API_KEY" , base_url = EU_BASE_URL )
57
+ extract = LlamaExtract(api_key = " YOUR_API_KEY" , base_url = EU_BASE_URL )
58
+ ```
59
+
41
60
## Documentation
42
61
43
62
You can see complete SDK and API documentation for each service on [ our official docs] ( https://docs.cloud.llamaindex.ai/ ) .
Original file line number Diff line number Diff line change 1
1
from llama_cloud_services .parse import LlamaParse
2
2
from llama_cloud_services .report import ReportClient , LlamaReport
3
3
from llama_cloud_services .extract import LlamaExtract , ExtractionAgent
4
+ from llama_cloud_services .constants import EU_BASE_URL
4
5
5
6
__all__ = [
6
7
"LlamaParse" ,
7
8
"ReportClient" ,
8
9
"LlamaReport" ,
9
10
"LlamaExtract" ,
10
11
"ExtractionAgent" ,
12
+ "EU_BASE_URL" ,
11
13
]
Original file line number Diff line number Diff line change
1
+ EU_BASE_URL = "https://api.cloud.eu.llamaindex.ai"
You can’t perform that action at this time.
0 commit comments