This reference implementation illustrates a basic approach for authoring and running a chat application in a single region with Prompt flow and Azure OpenAI. This reference implementation supports the Basic Azure OpenAI end-to-end chat reference architecture.
The implementation will have you build and test a Prompt flow in Azure AI Studio and deploy the flow to an Azure Machine Learning online managed endpoint. You'll be exposed to common generative AI chat application characteristics such as:
- Creating prompts
- Querying data stores for grounding data
- Python code
- Calling language models (such as GPT models)
The reference implementation illustrates a basic example of a chat application. For a reference implementation that implements more enterprise requirements, please see the OpenAI end-to-end baseline reference implementation. That implementation addresses many of the production readiness changes identified in this code.
The implementation covers the following scenarios:
- Authoring a flow - Authoring a flow using Prompt flow in Azure AI Studio
- Deploying a flow - The client UI is hosted in Azure App Service and accesses the Azure OpenAI Service via a Managed online endpoint.
The architecture diagram illustrates how a front-end web application connects to a managed online endpoint hosting the Prompt flow logic.
Azure patterns & practices team is transitioning this and related content from Azure Machine Learning workspaces to Azure AI Studio hub + projects. During ths transition period some of the assets might be out of sync with each other technology wise. Architecturally, these two technologies are very similar to each other, even down to the resource provider level. Pardon our dust as we make this transition across the assets. Here is the current status.
Asset | Workspace |
---|---|
Basic implementation (this repo) | ☑️ AI Studio project |
Basic architecture on Microsoft Learn | ☑️ AI Studio project |
Baseline implementation | ☑️ AI Studio project |
Baseline architecture on Microsoft Learn | 🔳 AML workspace |
Azure landing zone implementation | 🔳 AML workspace |
Azure landing zone architecture on Microsoft Learn | 🔳 AML workspace |
Follow these instructions to deploy this example to your Azure subscription, try out what you've deployed, and learn how to clean up those resources.
-
-
The subscription must have the following resource providers registered.
Microsoft.AlertsManagement
Microsoft.CognitiveServices
Microsoft.ContainerRegistry
Microsoft.KeyVault
Microsoft.Insights
Microsoft.MachineLearningServices
Microsoft.ManagedIdentity
Microsoft.OperationalInsights
Microsoft.Storage
-
The subscription selected must have the following quota available in the location you'll select to deploy this implementation.
- Azure OpenAI: Standard, GPT-35-Turbo, 25K TPM
- Storage Accounts: 1
- Total Cluster Dedicated Regional vCPUs: 4
- Standard DASv4 Family Cluster Dedicated vCPUs: 4
-
-
Your deployment user must have the following permissions at the subscription scope.
- Ability to assign Azure roles on newly created resource groups and resources. (E.g.
User Access Administrator
orOwner
) - Ability to purge deleted AI services resources. (E.g.
Contributor
orCognitive Services Contributor
)
- Ability to assign Azure roles on newly created resource groups and resources. (E.g.
The following steps are required to deploy the infrastructure from the command line.
-
In your shell, clone this repo and navigate to the root directory of this repository.
git clone https://github.com/Azure-Samples/openai-end-to-end-basic cd openai-end-to-end-basic
-
Log in and set your target subscription.
az login az account set --subscription xxxxx
-
Set the deployment location to one with available quota in your subscription.
This deployment has been tested in the following locations:
australiaeast
,eastus
,eastus2
,francecentral
,japaneast
,southcentralus
,swedencentral
,switzerlandnorth
, oruksouth
. You might be successful in other locations as well.LOCATION=eastus2
-
Set the base name value that will be used as part of the Azure resource names for the resources deployed in this solution.
BASE_NAME=<base resource name, between 6 and 8 lowercase characters, all DNS names will include this text, so it must be unique.>
-
Create a resource group and deploy the infrastructure.
RESOURCE_GROUP=rg-chat-basic-${LOCATION} az group create -l $LOCATION -n $RESOURCE_GROUP PRINCIPAL_ID=$(az ad signed-in-user show --query id -o tsv) # This takes about 10 minutes to run. az deployment group create -f ./infra-as-code/bicep/main.bicep \ -g $RESOURCE_GROUP \ -p baseName=${BASE_NAME} \ -p yourPrincipalId=$PRINCIPAL_ID
To test this architecture, you'll be deploying a pre-built Prompt flow. The Prompt flow is "Chat with Wikipedia" which adds a Wikipedia search as grounding data.
-
Open Azure AI Studio's projects by going to https://ai.azure.com/allProjects.
-
Click on the 'Chat with Wikipedia project' project name. This is the project where you'll deploy your flow.
-
Click on Prompt flow in the left navigation.
-
On the Flows tab, click + Create.
-
Under Explore gallery, find "Chat with Wikipedia" and click Clone.
-
Set the Folder name to
chat_wiki
and click Clone.This copies a starter Prompt flow template into your Azure Files storage account. This action is performed by the managed identity of the project. After the files are copied, then you're directed to a Prompt flow editor. That editor experience uses your own identity for access to Azure Files.
-
Connect the the
extract_query_from_question
Prompt flow step to your Azure OpenAI model deployment.- For Connection, select 'aoai' from the dropdown menu. This is your deployed Azure OpenAI instance.
- For deployment_name, select 'gpt35' from the dropdown menu. This is the model you've deployed in that Azure OpenAI instance.
- For response_format, select '{"type":"text"}' from the dropdown menu
-
Connect the the
augmented_chat
Prompt flow step to your Azure OpenAI model deployment.- For Connection, select the same 'aoai' from the dropdown menu.
- For deployment_name, select the same 'gpt35' from the dropdown menu.
- For response_format, also select '{"type":"text"}' from the dropdown menu.
-
Work around a telemetry issue that results in an error at the point of inferencing.
At the time of this writing, there is a Prompt flow + OpenTelemetry related bug that manifests itself after the Prompt flow is deployed to a managed online endpoint. Proper requests to the
/score
endpoint result in an error response ofunsupported operand type(s) for +: 'NoneType' and 'NoneType'
. To correct that, perform the following steps.- Open the Files view.
- Select 'requirements.txt'.
- The file should be empty, add one line containing just
promptflow-tracing>=1.16.1
. - Click Save only and close the file.
-
Click Save on the flow.
Here you'll test your flow by invoking it directly from the Azure AI Studio. The flow still requires you to bring compute to execute it from. The compute you'll use when in the portal is the default Serverless offering, which is only used for portal-based Prompt flow experiences. The interactions against Azure OpenAI are performed by your identity; the bicep template has already granted your user data plane access.
-
Click Start compute session.
-
🕗 Wait for that button to change to Compute session running. This may take about five minutes.
If you get an error related to pip and dependency resolver, this is because of the temporary workaround you followed in the prior steps, this is safe to ignore.
Do not advance until the serverless compute is running.
-
Click the enabled Chat button on the UI.
-
Enter a question that would require grounding data through recent Wikipedia content, such as a notable current event.
-
A grounded response to your question should appear on the UI.
Here you'll take your tested flow and deploy it to a managed online endpoint.
-
Click the Deploy button in the UI.
-
Choose Existing endpoint and select the one called ept-chat-BASE_NAME.
-
Set the following Basic settings, and click Next.
- Deployment name: ept-chat-deployment
- Virtual machine: Choose a small virtual machine size from which you have quota. 'Standard_D2as_v4' is plenty for this sample.
- Instance count: 3. This is the recommended minimum count.
- Inferencing data collection: Enabled
-
Set the following Advanced settings, and click Next.
- Deployment tags: You can leave blank.
- Environment: Use environment of current flow definition.
- Application Insights diagnostics: Enabled
-
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.
-
Click the Create button.
There is a notice on the final screen that says:
Following connection(s) are using Microsoft Entra ID based authentication. You need to manually grant the endpoint identity access to the related resource of these connection(s).
- aoai
This has already been taken care of by your IaC deployment. The managed online endpoint identity already has this permission to Azure OpenAI, so there is no action for you to take.
-
🕘 Wait for the deployment to finish creating.
The deployment can take over ten minutes to create. To check on the process, navigate to the Deployments screen using the link in the left navigation. Eventually 'ept-chat-deployment' will be on this list and then eventually the deployment will be listed with a State of 'Succeeded'. Use the Refresh button as needed.
Do not advance until this deployment is complete.
-
Click on the deployment name, 'ept-chat-deployment'.
-
Click on the Test tab.
-
Verify the managed online endpoint is working by asking a similar question that you did from the Prompt flow screen.
Workloads build chat functionality into an application. Those interfaces usually call APIs which in turn call into Prompt flow. This implementation comes with such an interface. You'll deploy it to Azure App Service using its run from package capabilities.
APPSERVICE_NAME=app-$BASE_NAME
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
Sometimes the prior deployment will fail with a
GatewayTimeout
. If you receive that error, you're safe to simply execute the command again.
After the deployment is complete, you can try the deployed application by navigating to the Web App's URL in a web browser.
You can also execute the following from your workstation. Unfortunately, this command does not reliably work from Azure Cloud Shell.
az webapp browse -g $RESOURCE_GROUP -n $APPSERVICE_NAME
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.
Most Azure resources deployed in the prior steps will incur ongoing charges unless removed. Additionally, a few of the resources deployed go into a soft delete status which may restrict the ability to redeploy another resource with the same name and may not release quota, so it is best to purge any soft deleted resources once you are done exploring. Use the following commands to delete the deployed resources and resource group and to purge each of the resources with soft delete.
Note: This will completely delete any data you may have included in this example and it will be unrecoverable.
az group delete -n $RESOURCE_GROUP -y
# Purge the soft delete resources
az keyvault purge -n kv-${BASE_NAME} -l $LOCATION
az cognitiveservices account purge -g $RESOURCE_GROUP -l $LOCATION -n oai-${BASE_NAME}
Please see our Contributor guide.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
With ❤️ from Azure Patterns & Practices, Azure Architecture Center.