mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-17 22:15:55 +00:00
11 lines
281 B
Python
11 lines
281 B
Python
![]() |
import json
|
||
|
|
||
|
CLUSTER_URL = "http://localhost:9200"
|
||
|
INDEX_NAME = "ingest-test-destination"
|
||
|
USER = "admin"
|
||
|
PASSWORD = "admin"
|
||
|
MAPPING_PATH = "docs/source/ingest/destination_connectors/data/opensearch_elements_mappings.json"
|
||
|
|
||
|
with open(MAPPING_PATH) as f:
|
||
|
mappings = json.load(f)
|