Skip to content

Commit 00db30f

Browse files
authored
Various source/destination connectors: added how-to video links (#245)
1 parent f6be9f4 commit 00db30f

File tree

6 files changed

+93
-3
lines changed

6 files changed

+93
-3
lines changed

snippets/general-shared-text/azure-cognitive-search.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
The Azure AI Search (formerly Azure Cognitive Search) prerequisites:
22

3-
- The endpoint for Azure AI Search. [Get a search service endpoint](https://learn.microsoft.com/azure/search/search-get-started-vector#get-a-search-service-endpoint).
4-
- The API key for Azure AI Search. [Get an admin API key](https://learn.microsoft.com/azure/search/search-get-started-vector#option-1-use-keys).
3+
- The endpoint and API key for Azure AI Search. [Create an endpoint and API key](https://learn.microsoft.com/azure/search/search-create-service-portal).
54
- The name of the index in Azure AI Search. [Create an index](https://learn.microsoft.com/rest/api/searchservice/create-index).
65

6+
<iframe
7+
width="560"
8+
height="315"
9+
src="https://www.youtube.com/embed/WY8h8Gtyo7o"
10+
title="YouTube video player"
11+
frameborder="0"
12+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
13+
allowfullscreen
14+
></iframe>
15+
716
The Azure AI Search index that you use must have an index schema that is compatible with the schema of the documents
817
that Unstructured produces for you. Unstructured cannot provide a schema that is guaranteed to work in all
918
circumstances. This is because these schemas will vary based on your source files' types; how you

snippets/general-shared-text/chroma.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
The Chroma prerequisites:
22

33
- A Chroma server. See [Deployment](https://docs.trychroma.com/deployment).
4+
5+
For example, here is a video about how to deploy a Chroma server to AWS:
6+
7+
<iframe
8+
width="560"
9+
height="315"
10+
src="https://www.youtube.com/embed/4ApW6ZwqW20"
11+
title="YouTube video player"
12+
frameborder="0"
13+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
14+
allowfullscreen
15+
></iframe>
16+
417
- The Chroma server's hostname or IP address, and the server's port number.
518
- If you are not connecting to the server through HTTP, the path to the server instance.
619
- The name of the tenant that you want to access on the server.

snippets/general-shared-text/mongodb.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ The MongoDB prerequisites for a MongoDB Atlas deployment:
44

55
- A MongoDB Atlas cluster. [Create a cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster).
66

7+
<iframe
8+
width="560"
9+
height="315"
10+
src="https://www.youtube.com/embed/VkXvVOb99g0"
11+
title="YouTube video player"
12+
frameborder="0"
13+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
14+
allowfullscreen
15+
></iframe>
16+
717
- The cluster must be reachable from your application environment. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#network-and-firewall-requirements).
818

919
- The cluster must be configured to use your IP address. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#ip-access-list).
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
The Pinecone prerequisites:
22

33
- A Pinecone account. [Get an account](https://app.pinecone.io/).
4+
5+
<iframe
6+
width="560"
7+
height="315"
8+
src="https://www.youtube.com/embed/uPoa7PLcuZ4"
9+
title="YouTube video player"
10+
frameborder="0"
11+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
12+
allowfullscreen
13+
></iframe>
14+
415
- A Pinecone API key. [Get an API key](https://docs.pinecone.io/guides/get-started/authentication#find-your-pinecone-api-key).
516
- A Pinecone serverless index. [Create a serverless index](https://docs.pinecone.io/guides/indexes/create-an-index).
Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
The Salesforce prerequisites:
22

3-
- A Salesforce account. [Create an account](https://www.salesforce.com/form/signup/freetrial-salesforce-starter/?d=pb).
3+
- A Salesforce account. [Create an account](https://developer.salesforce.com/signup).
4+
5+
<iframe
6+
width="560"
7+
height="315"
8+
src="https://www.youtube.com/embed/PIVPq2J1OMA"
9+
title="YouTube video player"
10+
frameborder="0"
11+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
12+
allowfullscreen
13+
></iframe>
14+
415
- The Salesforce categories (objects) that you want to access, specified as a comma-separated list. Available categories include `Account`, `Case`, `Campaign`, `EmailMessage`, and `Lead`.
516
- The OAuth consumer key (client ID) and private key (PEM) for the Salesforce connected app. The PEM is a string that begins with `—–BEGIN RSA PRIVATE KEY—–` and ends with `—–END RSA PRIVATE KEY—–`. [Create a connected app](https://help.salesforce.com/s/articleView?id=sf.connected_app_create.htm&type=5). [Get the consumer key](https://help.salesforce.com/s/articleView?id=sf.connected_app_rotate_consumer_details.htm&type=5). [Get the private key](https://help.salesforce.com/s/articleView?id=sf.task_create_a_certificate_and_private_key.htm&type=5).
17+
18+
<iframe
19+
width="560"
20+
height="315"
21+
src="https://www.youtube.com/embed/GcbcMsMV4oY"
22+
title="YouTube video player"
23+
frameborder="0"
24+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
25+
allowfullscreen
26+
></iframe>
27+
28+
<iframe
29+
width="560"
30+
height="315"
31+
src="https://www.youtube.com/embed/hFV2Ao4aXAY"
32+
title="YouTube video player"
33+
frameborder="0"
34+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
35+
allowfullscreen
36+
></iframe>
37+
38+
39+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
The SFTP prerequisites:
22

33
- The SFTP server hostname, port, username, and password.
4+
5+
SFTP servers are offered by several vendors. For example, the following video shows how to create and set up an SFTP server by using AWS Transfer Family:
6+
7+
<iframe
8+
width="560"
9+
height="315"
10+
src="https://www.youtube.com/embed/3_HHSnoFsoM"
11+
title="YouTube video player"
12+
frameborder="0"
13+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
14+
allowfullscreen
15+
></iframe>
16+
417
- The directory path to start accessing data from, specified as `sftp://<path>/<to>/<directory>`.
518

619
See the [SFTP documentation](https://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol).

0 commit comments

Comments
 (0)