Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Instructions/00-env-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -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://<user>:<password>@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** |
Expand Down
3 changes: 3 additions & 0 deletions Instructions/04-vector-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
</details>
Expand Down