Skip to content

Commit 0b78bf5

Browse files
authored
Style changes
1 parent b069aed commit 0b78bf5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Follow these instructions to deploy this example to your Azure subscription, try
4747

4848
- An [Azure subscription](https://azure.microsoft.com/free/).
4949

50-
- The subscription must have the following resource providers [registered](https://learn.microsoft.com/azure/azure-resource-manager/management/resource-providers-and-types#register-resource-provider)
50+
- The subscription must have the following resource providers [registered](https://learn.microsoft.com/azure/azure-resource-manager/management/resource-providers-and-types#register-resource-provider).
5151

5252
- `Microsoft.AlertsManagement`
5353
- `Microsoft.CognitiveServices`
@@ -59,7 +59,7 @@ Follow these instructions to deploy this example to your Azure subscription, try
5959
- `Microsoft.OperationalInsights`
6060
- `Microsoft.Storage`
6161

62-
- The subscription selected must have the following quota available in the location you'll select to deploy this implementation:
62+
- The subscription selected must have the following quota available in the location you'll select to deploy this implementation.
6363

6464
- Azure OpenAI: Standard, GPT-35-Turbo, 25K TPM
6565
- Storage Accounts: 1
@@ -111,7 +111,7 @@ The following steps are required to deploy the infrastructure from the command l
111111
RESOURCE_GROUP=rg-chat-basic-${LOCATION}
112112
az group create -l $LOCATION -n $RESOURCE_GROUP
113113

114-
PRINCIPAL_ID=$(az ad signed-in-user show --query id --output tsv)
114+
PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv)
115115

116116
# This takes about 10 minutes to run.
117117
az deployment group create -f ./infra-as-code/bicep/main.bicep \
@@ -196,8 +196,8 @@ Here you'll take your tested flow and deploy it to a managed online endpoint.
196196

197197
1. Set the following Advanced settings, and click **Next**.
198198

199-
- **Deployment tags**: You can leave blank
200-
- **Environment**: Use environment of current flow definition
199+
- **Deployment tags**: You can leave blank.
200+
- **Environment**: Use environment of current flow definition.
201201
- **Application Insights diagnostics**: Enabled
202202

203203
1. Ensure the Output & connections settings are still set to the same connection name and deployment name as configured in the Prompt flow, and click **Next**.
@@ -232,19 +232,19 @@ Workloads build chat functionality into an application. Those interfaces usually
232232
```bash
233233
APPSERVICE_NAME=app-$BASE_NAME
234234

235-
az webapp deploy --resource-group $RESOURCE_GROUP --name $APPSERVICE_NAME --type zip --src-url https://raw.githubusercontent.com/Azure-Samples/openai-end-to-end-basic/main/website/chatui.zip
235+
az webapp deploy -g $RESOURCE_GROUP -n $APPSERVICE_NAME --type zip --src-url https://raw.githubusercontent.com/Azure-Samples/openai-end-to-end-basic/main/website/chatui.zip
236236
```
237237

238238
> Sometimes the prior deployment will fail with a `GatewayTimeout`. If you receive that error, you're safe to simply execute the command again.
239239
240240
## :checkered_flag: Try it out. Test the deployed application.
241241

242-
After the deployment is complete, you can try the deployed application by navigating to the Web App's URL in a web browser. The URL is https:\//BASE_NAME.azurewebapps.net.
242+
After the deployment is complete, you can try the deployed application by navigating to the Web App's URL in a web browser.
243243

244-
You can also execute the following from your workstation. This command usually does not work from Azure Cloud Shell.
244+
You can also execute the following from your workstation. Unfortunately, this command does not reliably work from Azure Cloud Shell.
245245

246246
```bash
247-
az webapp browse --resource-group $RESOURCE_GROUP --name $APPSERVICE_NAME
247+
az webapp browse -g $RESOURCE_GROUP -n $APPSERVICE_NAME
248248
```
249249

250250
Once you're there, ask your solution a question. Like before, you question should ideally involve recent data or events, something that would only be known by the RAG process including content from Wikipedia.
@@ -256,11 +256,11 @@ Most Azure resources deployed in the prior steps will incur ongoing charges unle
256256
> **Note:** This will completely delete any data you may have included in this example and it will be unrecoverable.
257257
258258
```bash
259-
az group delete --name $RESOURCE_GROUP -y
259+
az group delete -n $RESOURCE_GROUP -y
260260

261261
# Purge the soft delete resources
262262
az keyvault purge -n kv-${BASE_NAME} -l $LOCATION
263-
az cognitiveservices account purge -g $RESOURCE_GROUP -l $LOCATION --name oai-${BASE_NAME}
263+
az cognitiveservices account purge -g $RESOURCE_GROUP -l $LOCATION -n oai-${BASE_NAME}
264264
```
265265

266266
## Contributions

0 commit comments

Comments
 (0)