Skip to content

Commit a99af21

Browse files
committed
touchup
1 parent 1f3d31f commit a99af21

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

articles/app-service/includes/tutorial-ai-openai-chatbot/create-openai-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In this section, you use Azure CLI in GitHub Codespaces to create an Azure OpenA
3737
```
3838

3939
> [!IMPORTANT]
40-
> The location is tied to the regional availability of the chosen model. Model and [deployment type](/azure/ai-foundry/foundry-models/concepts/deployment-types) availability vary among regions and billing tiers. This tutorial uses `gpt-4o-mini`, which is available in several regions under the Standard deployment type.
40+
> The location is tied to the regional availability of the chosen model. Model and [deployment type](/azure/ai-foundry/foundry-models/concepts/deployment-types) availability vary among Azure regions and billing tiers. This tutorial uses `gpt-4o-mini`, which is available in several regions under the Standard deployment type.
4141
>
4242
> Before selecting a location, consult the [Model summary and region availability table](/azure/ai-services/openai/concepts/models#model-summary-table-and-region-availability) to verify model support in your preferred region.
4343

articles/app-service/tutorial-ai-openai-chatbot-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.service: azure-app-service
1818

1919
# Tutorial: Build a chatbot with Azure App Service and Azure OpenAI (Flask)
2020

21-
In this tutorial, you build an intelligent AI application by integrating Azure OpenAI with a Python web application and deploying it to Azure App Service. You create a Flask app that sends chat completion requests to a model in Azure OpenAI, and connect to the service using a managed identity.
21+
In this tutorial, you build an intelligent AI application by integrating Azure OpenAI with a Python web application and deploy it to Azure App Service. You create a Flask app that sends chat completion requests to a model in Azure OpenAI, and connect to the service using a managed identity.
2222

2323
You learn how to:
2424

@@ -50,7 +50,7 @@ You learn how to:
5050
pip freeze > requirements.txt
5151
```
5252

53-
1. In the workspace root, create an file named *app.py* containing the following code for a simple chat completion call with Azure OpenAI.
53+
1. In the workspace root, create a file named *app.py* containing the following code for a simple chat completion call with Azure OpenAI.
5454

5555
```python
5656
import os
@@ -92,7 +92,7 @@ You learn how to:
9292
app.run()
9393
```
9494
95-
1. Create a *templates* directory and an *index.html* file in it. Paste the following code for creating a simple chat interface into the *index.html* file.
95+
1. Create a *templates* directory and an *index.html* file in it. Paste in the following code for creating a simple chat interface.
9696
9797
```html
9898
<!doctype html>

0 commit comments

Comments
 (0)