This page was recently updated. What do you think about it? Let us know!.
- An OpenSearch instance, such as an AWS OpenSearch instance… …or a local instance. In all cases, the OpenSearch version must be compatible with the client version of the opensearch-py package on PyPI.
-
The instance’s hostname and port number. To learn how, see:
- Creating and managing Amazon OpenSearch Service domains for AWS OpenSearch instances.
- Communicate with OpenSearch for local OpenSearch instances.
-
The name of the search index on the instance. Create an index.
The OpenSearch index that you use must have a schema that is compatible with the schema of the documents
that Unstructured produces for you. Unstructured cannot provide a schema that is guaranteed to work in all
circumstances. This is because these schemas will vary based on your source files’ types; how you
want Unstructured to partition, chunk, and generate embeddings; any custom post-processing code that you run; and other factors.
You can adapt the following index schema example for your own needs:
See also:
- If you’re using basic authentication to the instance, the user’s name and password.
-
If you’re using certificates for authentication instead:
- The path to the Certificate Authority (CA) bundle, if you use intermediate CAs with your root CA.
- The path to the combined private key and certificate file, or
- The paths to the separate private key and certificate file.
- For AWS OpenSearch instances, see Tutorial: Configure a domain with the internal user database and HTTP basic authentication and Creating a custom endpoint for Amazon OpenSearch Service.
- For local OpenSearch instances, see Authentication backends, HTTP basic authentication, and Client certificate authentication.
CLI, Python
OPENSEARCH_HOST
- The hostname and port number, defined as<hostname>:<port-number>
and represented by--hosts
(CLI) orhosts
(Python).OPENSEARCH_INDEX_NAME
- The name of the search index, represented by--index-name
(CLI) orindex_name
(Python).
OPENSEARCH_USERNAME
- The user’s name, represented by--username
(CLI) orusername
(Python).OPENSEARCH_PASSWORD
- The user’s password, represented by--password
(CLI) orpassword
(Python).
OPENSEARCH_CA_CERTS
- The path to the Certificate Authority (CA) bundle, if you use intermediate CAs with your root CA. This is represented by--ca-certs
(CLI) orca_certs
(Python).OPENSEARCH_CLIENT_CERT
- The path to the combined private key and certificate file, or the path to just the certificate file. This is represented by--client-cert
(CLI) orclient_cert
(Python).OPENSEARCH_CLIENT_KEY
- The path to the private key file, ifOPENSEARCH_CLIENT_CERT
refers to just the certificate file. This is represented by--client-key
(CLI) orclient_key
(Python).
--use-ssl
(CLI) oruse_ssl=True
(Python) to use SSL for the connection.--verify-certs
(CLI) orverify_certs=True
(Python) to verify SSL certificates.--ssl-show-warn
(CLI) orssl_show_warn=True
(Python) to show a warning when verifying SSL certificates is disabled.
--partition-by-api
option (CLI) or partition_by_api
(Python) parameter to specify where files are processed:
-
To do local file processing, omit
--partition-by-api
(CLI) orpartition_by_api
(Python), or explicitly specifypartition_by_api=False
(Python). Local file processing does not use an Unstructured API key or API URL, so you can also omit the following, if they appear:--api-key $UNSTRUCTURED_API_KEY
(CLI) orapi_key=os.getenv("UNSTRUCTURED_API_KEY")
(Python)--partition-endpoint $UNSTRUCTURED_API_URL
(CLI) orpartition_endpoint=os.getenv("UNSTRUCTURED_API_URL")
(Python)- The environment variables
UNSTRUCTURED_API_KEY
andUNSTRUCTURED_API_URL
-
To send files to the Unstructured Partition Endpoint for processing, specify
--partition-by-api
(CLI) orpartition_by_api=True
(Python). Unstructured also requires an Unstructured API key and API URL, by adding the following:--api-key $UNSTRUCTURED_API_KEY
(CLI) orapi_key=os.getenv("UNSTRUCTURED_API_KEY")
(Python)--partition-endpoint $UNSTRUCTURED_API_URL
(CLI) orpartition_endpoint=os.getenv("UNSTRUCTURED_API_URL")
(Python)- The environment variables
UNSTRUCTURED_API_KEY
andUNSTRUCTURED_API_URL
, representing your API key and API URL, respectively.
You must specify the API URL only if you are not using the default API URL for Unstructured Ingest, which applies to Starter and Team accounts.The default API URL for Unstructured Ingest ishttps://api.unstructuredapp.io/general/v0/general
, which is the API URL for the Unstructured Partition Endpoint. However, you should always use the URL that was provided to you when your Unstructured account was created. If you do not have this URL, email Unstructured Support at support@unstructured.io.If you do not have an API key, get one now.If you are using an Enterprise account, the process for generating Unstructured API keys, and the Unstructured API URL that you use, are different. For instructions, see your Unstructured account administrator, or email Unstructured Support at support@unstructured.io.