Skip to content

Commit f1f00e9

Browse files
authored
Merge pull request #266441 from aahill/aoai-ga
Feedback
2 parents ee92651 + eba6e5d commit f1f00e9

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

articles/ai-services/openai/how-to/use-web-app.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ recommendations: false
1414

1515
# Use the Azure OpenAI web app
1616

17-
Along with Azure OpenAI Studio and the APIs, you can also use the available standalone web app to interact with chat models using a graphical user interface, which you can deploy using either Azure OpenAI studio or a [manual deployment](https://github.com/microsoft/sample-app-aoai-chatGPT).
17+
Along with Azure OpenAI Studio, APIs and SDKs, you can also use the available standalone web app to interact with Azure OpenAI models using a graphical user interface, which you can deploy using either Azure OpenAI studio or a [manual deployment](https://github.com/microsoft/sample-app-aoai-chatGPT).
1818

1919
![A screenshot of the web app interface.](../media/use-your-data/web-app.png)
2020

2121
## Important considerations
2222

2323
- Publishing creates an Azure App Service in your subscription. It might incur costs depending on the [pricing plan](https://azure.microsoft.com/pricing/details/app-service/windows/) you select. When you're done with your app, you can delete it from the Azure portal.
24-
- By default, the app will only be accessible to you. To add authentication (for example, restrict access to the app to members of your Azure tenant):
24+
- By default, the app will be deployed with the Microsoft identity provider already configured, restricting access to the app to members of your Azure tenant. To add or modify authentication:
2525

2626
1. Go to the [Azure portal](https://portal.azure.com/#home) and search for the app name you specified during publishing. Select the web app, and go to the **Authentication** tab on the left navigation menu. Then select **Add an identity provider**.
2727

@@ -33,18 +33,22 @@ Along with Azure OpenAI Studio and the APIs, you can also use the available stan
3333

3434
## Web app customization
3535

36-
You can customize the app's frontend and backend logic. For example, you could change the icon that appears in the center of the app by updating `/frontend/src/assets/Contoso.svg` and then redeploying the app [using the Azure CLI](https://github.com/microsoft/sample-app-aoai-chatGPT#deploy-with-the-azure-cli). See the source code for the web app, and more information [on GitHub](https://github.com/microsoft/sample-app-aoai-chatGPT).
36+
You can customize the app's frontend and backend logic. For example, you could change the icon that appears in the center of the app by updating `/frontend/src/assets/Contoso.svg` and then redeploying the app [using the Azure CLI](https://github.com/microsoft/sample-app-aoai-chatGPT#deploy-with-the-azure-cli). See the source code for the web app, and more information on [GitHub](https://github.com/microsoft/sample-app-aoai-chatGPT).
3737

3838
When customizing the app, we recommend:
3939

4040
- Resetting the chat session (clear chat) if the user changes any settings. Notify the user that their chat history will be lost.
4141

4242
- Clearly communicating how each setting you implement will affect the user experience.
4343

44-
- When you rotate API keys for your Azure OpenAI or Azure Cognitive Search resource, be sure to update the app settings for each of your deployed apps to use the new keys.
44+
- When you rotate API keys for your Azure OpenAI or Azure AI Search resource, be sure to update the app settings for each of your deployed apps to use the new keys.
4545

46-
- Pulling changes from the `main` branch for the web app's source code frequently to ensure you have the latest bug fixes and improvements.
46+
### Updating the web app
4747

48+
We recommend pulling changes from the `main` branch for the web app's source code frequently to ensure you have the latest bug fixes, API version, and improvements.
49+
50+
> [!NOTE]
51+
> After February 1, 2024, the web app requires the app startup command to be set to `python3 -m gunicorn app:app`. When updating an app that was published prior to February 1, 2024, you need to manually add the startup command from the **App Service Configuration** page.
4852
4953
## Chat history
5054

articles/ai-services/openai/includes/connect-your-data-studio.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ ms.service: azure-ai-openai
66
ms.topic: include
77
author: aahill
88
ms.author: aahi
9-
ms.date: 11/14/2023
9+
ms.date: 02/15/2024
1010
recommendations: false
1111
---
1212

1313
## Add your data using Azure OpenAI Studio
1414

1515
Navigate to [Azure OpenAI Studio](https://oai.azure.com/) and sign-in with credentials that have access to your Azure OpenAI resource. During or after the sign-in workflow, select the appropriate directory, Azure subscription, and Azure OpenAI resource.
1616

17-
1. Select the **Bring your data** tile.
17+
1. Select the **Bring your own data - ground your own data on advanced AI models to create conversational copilots** tile
1818

1919
:::image type="content" source="../media/use-your-data/bring-your-data-card.png" alt-text="A screenshot of the Azure OpenAI Studio landing page." lightbox="../media/use-your-data/bring-your-data-card.png":::
2020

21-
1. In the pane that appears, select **Upload files** under **Select data source**. Select **Upload files**. Azure OpenAI needs both a storage resource and a search resource to access and index your data.
21+
1. In the pane that appears, select **Upload files (preview)** under **Select data source**. Azure OpenAI needs both a storage resource and a search resource to access and index your data.
2222

2323
> [!TIP]
2424
> * See the following resource for more information:
2525
> * [Data source options](../concepts/use-your-data.md#supported-data-sources)
2626
> * [supported file types and formats](../concepts/use-your-data.md#data-formats-and-file-types)
2727
> * For documents and datasets with long text, we recommend using the available [data preparation script](https://go.microsoft.com/fwlink/?linkid=2244395).
2828
29-
1. For Azure OpenAI to access your storage account, you will need to turn on [Cross-origin resource sharing (CORS)](https://go.microsoft.com/fwlink/?linkid=2237228). If CORS isn't already turned on for the Azure Blob storage resource, select **Turn on CORS**.
29+
1. For Azure OpenAI to access your storage account, you will need to turn on [Cross-origin resource sharing (CORS)](https://go.microsoft.com/fwlink/?linkid=2237228). If CORS isn't already turned on for the Azure Blob Storage resource, select **Turn on CORS**.
3030

3131
1. Select your Azure AI Search resource, and select the acknowledgment that connecting it will incur usage on your account. Then select **Next**.
3232

@@ -39,7 +39,7 @@ Navigate to [Azure OpenAI Studio](https://oai.azure.com/) and sign-in with crede
3939

4040
> [!IMPORTANT]
4141
> * [Semantic search](/azure/search/semantic-search-overview#availability-and-pricing) and [vector search](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/) are subject to additional pricing. You need to choose **Basic or higher SKU** to enable semantic search or vector search. See [pricing tier difference](/azure/search/search-sku-tier) and [service limits](/azure/search/search-limits-quotas-capacity) for more information.
42-
> * To help improve the quality of the information retrieval and model response, we recommend enabling [semantic search](/azure/search/semantic-search-overview) for the following languages: English, French, Spanish, Portuguese, Italian, Germany, Chinese(Zh), Japanese, Korean, Russian, and Arabic.
42+
> * To help improve the quality of the information retrieval and model response, we recommend enabling [semantic search](/azure/search/semantic-search-overview) for the following data source languages: English, French, Spanish, Portuguese, Italian, Germany, Chinese(Zh), Japanese, Korean, Russian, and Arabic.
4343
4444
1. Review the details you entered, and select **Save and close**. You can now chat with the model and it will use information from your data to construct the response.
4545

articles/ai-services/openai/includes/deploy-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Studio by selecting the **Deploy to** button.
1515

1616
:::image type="content" source="../media/use-your-data/deploy-model.png" alt-text="A screenshot showing the model deployment button in Azure OpenAI Studio." lightbox="../media/use-your-data/deploy-model.png":::
1717

18-
This gives you the option to either deploy the model as a standalone web application, or Power Virtual Agents if you're [using your own data](../concepts/use-your-data.md#deployment) on the model.
18+
This gives you the option to either deploy to a standalone web application, or a copilot in Copilot Studio if you're [using your own data](../concepts/use-your-data.md#deployment) on the model.
1919

2020
As an example, if you choose to deploy a web app:
2121

-29.8 KB
Loading

articles/ai-services/openai/whats-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ignite-2023
1111
- references_regions
1212
ms.topic: whats-new
13-
ms.date: 2/6/2024
13+
ms.date: 02/15/2024
1414
recommendations: false
1515
---
1616

@@ -57,7 +57,7 @@ You can now use Azure OpenAI On Your Data in the following Azure region:
5757

5858
### Azure OpenAI On Your Data general availability
5959

60-
- [Azure OpenAI On Your Data](./concepts/use-your-data.md) is now generally available. It additionally provides public preview support for Pinecone and Elasticsearch databases.
60+
- [Azure OpenAI On Your Data](./concepts/use-your-data.md) is now generally available.
6161

6262
## December 2023
6363

0 commit comments

Comments
 (0)