Skip to content

Commit 495f172

Browse files
committed
fix links
1 parent 990b345 commit 495f172

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

diskann/02_Overview_Cosmos_DB/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ The focus for this developer guide is [Azure Cosmos DB for NoSQL](https://learn.
1616

1717
Azure Cosmos DB offers three capacity modes: provisioned throughput, serverless and autoscale modes. creating an Azure Cosmos DB account, it's essential to evaluate the workload's characteristics in order to choose the appropriate mode to optimize both performance and cost efficiency.
1818

19-
[**Serverless mode**](https://learn.microsoft.com/en-us/azure/cosmos-db/serverless) offers a more flexible and pay-as-you-go approach, where only the Request Units consumed are billed. This is particularly advantageous for applications with sporadic or unpredictable usage patterns, as it eliminates the need to provision resources upfront.
19+
[**Serverless mode**](https://learn.microsoft.com/azure/cosmos-db/serverless) offers a more flexible and pay-as-you-go approach, where only the Request Units consumed are billed. This is particularly advantageous for applications with sporadic or unpredictable usage patterns, as it eliminates the need to provision resources upfront.
2020

2121
[**Provisioned throughput mode**](https://learn.microsoft.com/azure/cosmos-db/set-throughput) allocates a fixed amount of resources, measured in [Request Units per second (RUs/s)](https://learn.microsoft.com/azure/cosmos-db/request-units), which is ideal for applications with predictable and steady workloads. This ensures consistent performance and can be more cost-effective when there is a constant or high demand for database operations. RU/s can be set at both the database and container levels, allowing for fine-grained control over resource allocation.
2222

2323
[**Autoscale mode**](https://learn.microsoft.com/azure/cosmos-db/provision-throughput-autoscale) builds upon the provisioned throughput mode but allows for the database or container automatically and instantly scale up or down resources based on demand, ensuring that the application can handle varying workloads efficiently. When configuring autoscale, a maximum (Tmax) value threshold is set for a predictable maximum cost. This mode is suitable for applications with fluctuating usage patterns or infrequently used applications.
2424

25-
[**Dynamic scaling**](https://learn.microsoft.com/en-us/azure/cosmos-db/autoscale-per-partition-region) allows for the automatic and independent scaling of non-uniform workloads across regions and partitions according to usage patterns. For instance, in a disaster recovery configuration with two regions, the primary region may experience high traffic while the secondary region can scale down to idle, thereby saving costs. This approach is also highly effective for multi-regional applications, where traffic patterns fluctuate based on the time of day in each region.
25+
[**Dynamic scaling**](https://learn.microsoft.com/azure/cosmos-db/autoscale-per-partition-region) allows for the automatic and independent scaling of non-uniform workloads across regions and partitions according to usage patterns. For instance, in a disaster recovery configuration with two regions, the primary region may experience high traffic while the secondary region can scale down to idle, thereby saving costs. This approach is also highly effective for multi-regional applications, where traffic patterns fluctuate based on the time of day in each region.

diskann/05_Explore_OpenAI_models/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Azure OpenAI Models
44

5-
[Azure OpenAI is powered by a diverse set of models](https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models) with different capabilities.
5+
[Azure OpenAI is powered by a diverse set of models](https://learn.microsoft.com/azure/ai-services/openai/concepts/models) with different capabilities.
66

77
| Model | Description |
88
| -- | --- |

diskann/12_User_Interface/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following screenshot shows where to find the front-end application URL:
1010

1111
Navigating to this URL in the browser accesses the front-end application. Through this front-end application User Interface, questions can be submitted to the Azure OpenAI model about the CosmicWorks company data, then it will generate responses accordingly.
1212

13-
![Front-end Web Application User Interface](images/2024-01-17-12-42-59.png)
13+
![Front-end Web Application User Interface](images/2024-10-15-11-48-17.png)
1414

1515
While the code for the SPA web application is outside the scope of this dev guide. It's worth noting that the Web App is configured with the URL for the Backend API using **App settings** with the variable named `API_ENDPOINT` under the **Settings** -> **Environment variables** pane. When the application was deployed as part of the Azure template deployment, it was automatically configured with this URL to connect the front-end SPA web application to the Backend API.
1616

diskann/Labs/deploy/azuredeploy.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Azure Cosmos DB + Azure OpenAI Python developer guide lab
33
******************************************************************
44
This Azure resource deployment template uses some of the following practices:
5-
- [Abbrevation examples for Azure resources](https://learn.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations)
5+
- [Abbrevation examples for Azure resources](https://learn.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations)
66
*/
77

88
/* *************************************************************** */
@@ -98,7 +98,7 @@ var appServiceSettings = {
9898
// Define a variable for the tag values
9999
var tags = {
100100
name: 'AzureCosmosDB-DevGuide'
101-
repo: 'https://github.com/solliancenet/cosmos-db-nosql-openai-python-dev-guide'
101+
repo: 'https://github.com/AzureCosmosDB/Azure-OpenAI-Python-Developer-Guide/blob/main/diskann/README.md'
102102
}
103103

104104
/* *************************************************************** */
@@ -126,7 +126,7 @@ resource cosmosAccount 'Microsoft.DocumentDB/databaseAccounts@2024-05-15' = {
126126
name: 'EnableServerless'
127127
}
128128
{
129-
/* https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/vector-search#enroll-in-the-vector-search-preview-feature */
129+
/* https://learn.microsoft.com/azure/cosmos-db/nosql/vector-search#enroll-in-the-vector-search-preview-feature */
130130
name: 'EnableNoSQLVectorSearch'
131131
}
132132
]

diskann/Labs/deploy/deploy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
Create a folder to house the repository. Open a terminal and navigate to the folder. Clone the repository, then navigate to the `Labs/deploy` folder within the repository.
1313

1414
```bash
15-
git clone https://github.com/solliancenet/Cosmos-DB-NoSQL-OpenAI-Python-Dev-Guide.git
15+
git clone https://github.com/AzureCosmosDB/Azure-OpenAI-Python-Developer-Guide.git
1616

1717
cd Cosmos-DB-NoSQL-OpenAI-Python-Dev-Guide
18+
cd diskann
1819
cd Labs
1920
cd deploy
2021
```

diskann/Labs/lab_5_backend_api.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ The information provided in this section assumes that the dependent infrastructu
66

77
## Overview
88

9-
The backend api is a Python FastAPI application that will expose endpoints for the frontend application to interact with. The backend api is a containerized application that will be deployed to [Azure Container Apps](https://learn.microsoft.com/en-us/azure/container-apps/overview).
9+
The backend api is a Python FastAPI application that will expose endpoints for the frontend application to interact with. The backend api is a containerized application that will be deployed to [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
1010

1111
## Clone the Backend API
1212

1313
Create a folder to house the repository. Open a terminal and navigate to the folder. Clone the repository, then navigate to the `Backend` folder within the repository.
1414

1515
```bash
16-
git clone https://github.com/solliancenet/cosmos-db-nosql-openai-python-dev-guide.git
16+
git clone https://github.com/AzureCosmosDB/Azure-OpenAI-Python-Developer-Guide.git
1717

1818
cd Azure-OpenAI-Python-Developer-Guide
19+
cd diskann
1920
cd Backend
2021
```
2122

vcore/Labs/deploy/azuredeploy.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Azure Cosmos DB + Azure OpenAI Python developer guide lab
33
******************************************************************
44
This Azure resource deployment template uses some of the following practices:
5-
- [Abbrevation examples for Azure resources](https://learn.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations)
5+
- [Abbrevation examples for Azure resources](https://learn.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations)
66
*/
77

88

vcore/Labs/deploy/deploy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Create a folder to house the repository. Open a terminal and navigate to the fol
1515
git clone https://github.com/AzureCosmosDB/Azure-OpenAI-Python-Developer-Guide.git
1616

1717
cd Azure-OpenAI-Python-Developer-Guide
18+
cd vcore
1819
cd Labs
1920
cd deploy
2021
```

vcore/Labs/lab_5_backend_api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The information provided in this section assumes that the dependent infrastructu
66

77
## Overview
88

9-
The backend api is a Python FastAPI application that will expose endpoints for the frontend application to interact with. The backend api is a containerized application that will be deployed to [Azure Container Apps](https://learn.microsoft.com/en-us/azure/container-apps/overview).
9+
The backend api is a Python FastAPI application that will expose endpoints for the frontend application to interact with. The backend api is a containerized application that will be deployed to [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
1010

1111
## Clone the Backend API
1212

@@ -16,6 +16,7 @@ Create a folder to house the repository. Open a terminal and navigate to the fol
1616
git clone https://github.com/AzureCosmosDB/Azure-OpenAI-Python-Developer-Guide.git
1717

1818
cd Azure-OpenAI-Python-Developer-Guide
19+
cd vcore
1920
cd Backend
2021
```
2122

0 commit comments

Comments
 (0)