Skip to content

Commit 941531e

Browse files
authored
Merge pull request microsoft#50 from microsoft/readMEupdate
updated readMe images
2 parents 83320d3 + 048ee09 commit 941531e

File tree

12 files changed

+93
-2
lines changed

12 files changed

+93
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The sample data used in this repository is synthetic and generated using Azure O
6161

6262
This diagram double-clicks into the agentic framework for the code conversion process. The conversion uses an agentic approach with each agent playing a specialized role in the process. The system gets a list of SQL files which are targeted for conversion. 
6363

64-
**Step 1:** The system loops through the list of SQL files, converting each file, starting by passing the SQL to the Migrator agent. This agent will create several candidate SQL files that should be equivalent. It does this to ensure that the system acknowledges that most of these queries could be converted in a number of different ways. *Note that the processing time can vary depending on OpenAI and cloud services.*
64+
**Step 1:** The system loops through the list of SQL files, converting each file, starting by passing the SQL to the Migrator agent. This agent will create several candidate SQL files that should be equivalent. It does this to ensure that the system acknowledges that most of these queries could be converted in a number of different ways. *Note that the processing time can vary depending on Azure OpenAI service and cloud services.*
6565

6666
**Step 2:** The Picker agent then examines these various possibilities and picks the one it believes is best using criteria such as simplicity, clarity of syntax, etc.
6767

@@ -106,7 +106,7 @@ When you start the deployment, most parameters will have **default values**, but
106106
|------------|----------------| ------------|
107107
| **Azure Region** | The region where resources will be created. | East US|
108108
| **Resource Prefix** | Prefix for all resources created by this template. This prefix will be used to create unique names for all resources. The prefix must be unique within the resource group. | None |
109-
| **Ai Location** | Location for all Ai services resources. This location can be different from the resource group location | None |
109+
| **AI Location** | Location for all AI services resources. This location can be different from the resource group location | None |
110110
| **Capacity** | Configure capacity for **GPT models**. | 5k |
111111

112112
### [Optional] Quota Recommendations

docs/CustomizingAzdParameters.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
By default this template will use the environment name as the prefix to prevent naming collisions within Azure. The parameters below show the default values. You only need to run the statements below if you need to change the values.
2+
3+
4+
> To override any of the parameters, run `azd env set <key> <value>` before running `azd up`. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-20 charaters alphanumeric unique name.
5+
6+
7+
Change the Secondary Location (example: eastus2, westus2, etc.)
8+
9+
```shell
10+
azd env set AZURE_ENV_SECONDARY_LOCATION eastus2
11+
```
12+
13+
Change the Model Deployment Type (allowed values: Standard, GlobalStandard)
14+
15+
```shell
16+
azd env set AZURE_ENV_MODEL_DEPLOYMENT_TYPE Standard
17+
```
18+
19+
Set the Model Name (allowed values: gpt-4, gpt-4o)
20+
21+
```shell
22+
azd env set AZURE_ENV_MODEL_NAME gpt-4o
23+
```
24+
25+
Change the Model Capacity (choose a number based on available GPT model capacity in your subscription)
26+
27+
```shell
28+
azd env set AZURE_ENV_MODEL_CAPACITY 30
29+
```
30+
31+
Change the Embedding Model
32+
33+
```shell
34+
azd env set AZURE_ENV_EMBEDDING_MODEL_NAME text-embedding-ada-002
35+
```
36+
37+
Change the Embedding Deployment Capacity (choose a number based on available embedding model capacity in your subscription)
38+
39+
```shell
40+
azd env set AZURE_ENV_EMBEDDING_MODEL_CAPACITY 80

docs/DeleteResourceGroup.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Deleting Resources After a Failed Deployment in Azure Portal
2+
3+
If your deployment fails and you need to clean up the resources manually, follow these steps in the Azure Portal.
4+
5+
---
6+
7+
## **1. Navigate to the Azure Portal**
8+
1. Open [Azure Portal](https://portal.azure.com/).
9+
2. Sign in with your Azure account.
10+
11+
---
12+
13+
## **2. Find the Resource Group**
14+
1. In the search bar at the top, type **"Resource groups"** and select it.
15+
2. Locate the **resource group** associated with the failed deployment.
16+
17+
![Resource Groups](images/delete_resource/resourcegroup.png)
18+
19+
![Resource Groups](images/delete_resource/resource-groups.png)
20+
21+
---
22+
23+
## **3. Delete the Resource Group**
24+
1. Click on the **resource group name** to open it.
25+
2. Click the **Delete resource group** button at the top.
26+
27+
![Delete Resource Group](images/delete_resource/DeleteRG.png)
28+
29+
3. Type the resource group name in the confirmation box and click **Delete**.
30+
31+
📌 **Note:** Deleting a resource group will remove all resources inside it.
32+
33+
---
34+
35+
## **4. Delete Individual Resources (If Needed)**
36+
If you don’t want to delete the entire resource group, follow these steps:
37+
38+
1. Open **Azure Portal** and go to the **Resource groups** section.
39+
2. Click on the specific **resource group**.
40+
3. Select the **resource** you want to delete (e.g., App Service, Storage Account).
41+
4. Click **Delete** at the top.
42+
43+
![Delete Individual Resource](images/delete_resource/deleteservices.png)
44+
45+
---
46+
47+
## **5. Verify Deletion**
48+
- After a few minutes, refresh the **Resource groups** page.
49+
- Ensure the deleted resource or group no longer appears.
50+
51+
📌 **Tip:** If a resource fails to delete, check if it's **locked** under the **Locks** section and remove the lock.
-5.5 KB
Loading
14.4 KB
Loading
-2.24 KB
Loading
76.6 KB
Loading
116 KB
Loading
51.5 KB
Loading
30.4 KB
Loading

0 commit comments

Comments
 (0)