If you’re new to Unstructured, read this note first.Before you can create a destination connector, you must first sign in to your Unstructured account:
- If you do not already have an Unstructured account, sign up for free. After you sign up, you are automatically signed in to your new Unstructured Starter account, at https://platform.unstructured.io. To sign up for a Team or Enterprise account instead, contact Unstructured Sales, or learn more.
- If you already have an Unstructured Starter or Team account and are not already signed in, sign in to your account at https://platform.unstructured.io. For an Enterprise account, see your Unstructured account administrator for instructions, or email Unstructured Support at support@unstructured.io.
- For the Unstructured UI or the Unstructured API, only Qdrant Cloud is supported.
- For Unstructured Ingest, Qdrant Cloud, Qdrant local, and Qdrant client-server are supported.
-
For Qdrant local, the path to the local Qdrant installation, for example:
/qdrant/local
-
For Qdrant client-server, the Qdrant server URL, for example:
http://localhost:6333
-
For Qdrant Cloud:
- A Qdrant account.
- A Qdrant cluster.
-
The cluster’s URL. To get this URL, do the following:
- Sign in to your Qdrant Cloud account.
- On the sidebar, under Dashboard, click Clusters.
- Click the cluster’s name.
- Note the value of the Endpoint field, for example:
https://<random-guid>.<region-id>.<cloud-provider>.cloud.qdrant.io
.
- A Qdrant API key.
-
The name of the target collection on the Qdrant local installation,
Qdrant server, or Qdrant Cloud cluster.
Qdrant requires the target collection to exist before Unstructured can write to the collection.
The following example code demonstrates the use of the Python Qdrant Client to create
a collection on a Qdrant Cloud cluster, configuring the collection for vectors with 3072 dimensions:
Python
- On the sidebar, click Connectors.
- Click Destinations.
- Cick New or Create Connector.
- Give the connector some unique Name.
- In the Provider area, click Qdrant.
- Click Continue.
- Follow the on-screen instructions to fill in the fields as described later on this page.
- Click Save and Test.
- Name (required): A unique name for this connector.
- URL (required): The target Qdrant cluster’s URL.
- Collection Name (required): The name of the target collection on the cluster.
- Batch Size The maximum number of records to be transmitted per batch. The default is
50
if not otherwise specified. - API Key (required): The Qdrant API key value.