From 1221699d505b9e48dff7ada1a6de49b9eba799ac Mon Sep 17 00:00:00 2001 From: Reevan Miranda Date: Thu, 2 May 2024 20:15:11 -0400 Subject: [PATCH 1/2] Updated the Cosmos DB Endpoint example value --- Instructions/00-env-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/00-env-file.md b/Instructions/00-env-file.md index f557962..006b1fb 100644 --- a/Instructions/00-env-file.md +++ b/Instructions/00-env-file.md @@ -29,7 +29,7 @@ The **.env** file contains key-value pairs, each defining a specific configurati | **skipCreatingCosmosDBPublicIPFirewallRule** | If true, skips creating a public IP firewall rule for Cosmos DB. | **true** | | **cosmosCluster** | The name of the Cosmos DB cluster. | **example-cosmos-cluster** | | **cosmosClusterLocation** | The location for the Cosmos DB cluster. | **eastus** | -| **cosmosDbEndpoint** | The endpoint URL for the Cosmos DB cluster. | **https://example.documents.azure.com:443/** | +| **cosmosDbEndpoint** | The endpoint URL for the Cosmos DB cluster. | **mongodb+srv://:@example.mongocluster.cosmos.azure.com/** | | **cosmosClusterAdmin** | The admin username for the Cosmos DB cluster. | **adminUser** | | **cosmosClusterPassword** | The password for the Cosmos DB cluster. | **SecurePassword!** | | **cosmosdbDatabase** | The name of the Cosmos DB database. Defaults to **cosmicworks**. | **cosmicworks** | From fbe83b07430c22385e110c306da61b834b3d6bb1 Mon Sep 17 00:00:00 2001 From: Reevan Miranda Date: Thu, 2 May 2024 20:21:55 -0400 Subject: [PATCH 2/2] Added pip install commands for missing libraries --- Instructions/04-vector-search.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Instructions/04-vector-search.md b/Instructions/04-vector-search.md index c330749..ee710d0 100644 --- a/Instructions/04-vector-search.md +++ b/Instructions/04-vector-search.md @@ -733,6 +733,9 @@ After completing the setup and configuration steps, you're now ready to explore cd ./python pip install -v "pymongo==4.6.2" pip install -v "openai==1.13.3" + pip install tenacity + pip install azure-storage-blob + pip install python-dotenv py load-and-vectorize-data.py ```