MENU: FEATURES | GETTING STARTED | DEVELOPMENT | DEPLOYMENT | TRACING AND MONITORING | GUIDANCE
This solution contains a simple chat application that is deployed to Azure Container Apps. There are instructions for deployment through GitHub Codespaces, VS Code Dev Containers, and your local development environment.
This solution creates an Azure AI Foundry hub, project and connected resources including Azure AI Services, AI Search and more. For more details about the resources that are created, view the resources documentation. There are options to enable Retrieval-Augmented Generation (RAG) and use logging, tracing, and monitoring.
Github Codespaces and Dev Containers both allow you to download and deploy the code for development. Deploy to Azure will create the resources for later deployment. Detailed instructions for options to deploy this solution can be found in deployment.
If you do not have an Azure Subscription, you can sign up for a free Azure account and create an Azure Subscription.
To deploy this Azure environment successfully, your Azure account (the account you authenticate with) must have the following permissions and prerequisites on the targeted Azure Subscription:
- Microsoft.Authorization/roleAssignments/write permissions at the subscription scope.
(typically included if you have Role Based Access Control Administrator, User Access Administrator, or Owner role) - Microsoft.Resources/deployments/write permissions at the subscription scope.
You can view the permissions for your account and subscription by going to Azure portal, clicking 'Subscriptions' under 'Navigation' and then choosing your subscription from the list. If you try to search for your subscription and it does not come up, make sure no filters are selected. After selecting your subscription, select 'Access control (IAM)' and you can see the roles that are assigned to your account for this subscription. If you want to see more information about the roles, you can go to the 'Role assignments' tab and search by your account name and then click the role you want to view more information about.
Additionally the following are required for successful deployment:
- Sufficient quotas available to deploy the selected chat and embedding model.
- Regional availability: The chosen model must be available in the Azure region where your Azure AI Foundry environment is created. Verify region availability here.
Make sure the following tools are installed:
- Azure Developer CLI (azd) Install or update to the latest version. Instructions can be found on the linked page.
- Python 3.9+
- Git
- Docker Desktop
Download the project code:
git clone https://github.com/Azure-Samples/get-started-with-ai-chat.git
At this point you could make changes to the code if required. However, no changes are needed to deploy and test the app as shown in the next step.
If you want to enable logging to a file, uncomment the following line in Dockerfile located in the src directory:
ENV APP_LOG_FILE=app.log
By default the file name app.log is used. You can provide your own file name by replacing app.log with the desired log file name.
NOTE! Any changes to the Dockerfile require a re-deployment in order for the changes to take effect.
The provided file logging implementation is intended for development purposes only, specifically for testing with a single client/worker. It should not be used in production environments after the R&D phase.
To enable tracing to Azure Monitor, modify the value of ENABLE_AZURE_MONITOR_TRACING environment variable to true in Dockerfile found in src directory:
ENV ENABLE_AZURE_MONITOR_TRACING=true
Note that the optional App Insights resource is required for tracing to Azure Monitor (it is created by default).
To enable message contents to be included in the traces, set the following environment variable to true in the same Dockerfile. Note that the messages may contain personally identifiable information.
ENV AZURE_TRACING_GEN_AI_CONTENT_RECORDING_ENABLED=true
When you start a deployment, most parameters will have default values. You can change the following default settings:
Setting | Description | Default value |
---|---|---|
Azure Region | Select a region with quota which supports your selected model. | |
Model | Choose from the list of models supported by Azure AI Agent Service for your selected region | gpt-4o-mini |
Model Format | Choose from OpenAI or Microsoft, depending on your model | OpenAI |
Model Deployment Capacity | Configure capacity for your model. Recommended value is 100k. | 30k |
Embedding Model | Choose from text-embedding-3-large, text-embedding-3-small, and text-embedding-ada-002. | text-embedding-3-small |
Embedding Model Capacity | Configure capacity for your embedding model. | 30k |
For a detailed description of customizable fields and instructions, view the deployment customization guide.
The default for the model capacity in deployment is 30k tokens. For optimal performance, it is recommended to increase to 100k tokens. You can change the capacity by following the steps in setting capacity and deployment SKU.
- Navigate to the Azure AI Foundry Portal
- Select the AI Project you are using for this template if you are not already in the project.
- Select Management center from the bottom left navigation menu
- Select Quota, click the GlobalStandard dropdown and select the model and region you are using for this accelerator to see your available quota. Please note GPT-4o mini and text-embedding-ada-002 are used as default.
- Request more quota or delete any unused model deployments as needed.
The Retrieval-Augmented Generation (RAG) feature helps improve the responses from your application by combining the power of large language models (LLMs) with extra context retrieved from an external data source. Simply put, when you ask a question, the application first searches through a set of relevant documents (stored as embeddings) and then uses this context to provide a more accurate and relevant response. If no relevant context is found, the application returns the LLM response directly.
This feature is enabled by default. To configure or disable the RAG feature in your application, please refer to the following detailed documentation:
Retrieval-Augmented Generation (RAG) Setup Guide
Pick from the options below to see step-by-step instructions for: GitHub Codespaces, VS Code Dev Containers, and Local Environments.
GitHub Codespaces
You can run this template virtually by using GitHub Codespaces. The button will open a web-based VS Code instance in your browser:
-
Open the template (this may take several minutes):
-
Open a terminal window
-
Continue with the deploying steps
VS Code Dev Containers
A related option is VS Code Dev Containers, which will open the project in your local VS Code using the Dev Containers extension:
-
Start Docker Desktop (install it if not already installed Docker Desktop)
-
Open the project:
-
In the VS Code window that opens, once the project files show up (this may take several minutes), open a terminal window.
-
Continue with the deploying steps
Local Environment
- Confirm that you have the required tools installed from the prerequisites section and the code downloaded from the code section
- Open the project folder in your terminal or editor
- Continue with the deploying steps
Local Development Server
You can optionally use a local development server to test app changes locally. Make sure you first deployed the app to Azure by following the deploying steps before running the development server.
-
Create a Python virtual environment and activate it.
On Windows:
python -m venv .venv .venv\scripts\activate
On Linux:
python3 -m venv .venv source .venv/bin/activate
-
Navigate to the
src
directory:cd src
-
Install required Python packages:
python -m pip install -r requirements.txt
-
Tracing and logging:
To enable logging to a file, add the
APP_LOG_FILE
environment variable definition to the.env
file in thesrc
directory. See Logging for more information. As an example, to log to a file namedapp.log
add the following to the.env
file:APP_LOG_FILE=app.log
To enable Azure Monitor tracing, add the
ENABLE_AZURE_MONITOR_TRACING
andAZURE_TRACING_GEN_AI_CONTENT_RECORDING_ENABLED
environment variable definitions to the.env
file in thesrc
directory. See Tracing to Azure Monitor for more information. As an example, to enable tracing to Azure Monitor without tracing message contents, add the following to the '.env' file:ENABLE_AZURE_MONITOR_TRACING=true AZURE_TRACING_GEN_AI_CONTENT_RECORDING_ENABLED=false
-
Run the local server:
python -m uvicorn "api.main:create_app" --factory --reload
-
Click 'http://127.0.0.1:8000' in the terminal, which should open a new tab in the browser.
-
Enter your message in the box.
Once you've opened the project in Codespaces or in Dev Containers or locally, you can deploy it to Azure following the following steps.
-
Login to Azure:
azd auth login
-
(Optional) If you would like to customize the deployment to disable resources, customize resource names, customize the models or increase quota, you can follow those steps now.
-
Provision and deploy all the resources by running the following in get-started-with-ai-chat directory:
azd up
-
You will be prompted to provide an
azd
environment name (like "azureaiapp"), select a subscription from your Azure account, and select a location which has quota for all the resources. Then, it will provision the resources in your account and deploy the latest code.- For guidance on selecting a region with quota and model availability, follow the instructions in the quota recommendations section and ensure that your model is available in your selected region by checking the list of models supported by Azure AI Agent Service
- This deployment will take 8-12 minutes to provision the resources in your account and set up the solution with sample data.
- If you get an error or timeout with deployment, changing the location can help, as there may be availability constraints for the resources. You can do this by running
azd down
and deleting the.azure
folder from your code, and then runningazd up
again and selecting a new region.
NOTE! If you get authorization failed and/or permission related errors during the deployment, please refer to the Azure account requirements in the Prerequisites section. If you were recently granted these permissions, it may take a few minutes for the authorization to apply.
-
When
azd
has finished deploying, you'll see an endpoint URI in the command output. Visit that URI, and you should see the app! 🎉 You can view information about your deployment with:azd show
-
If you make further modification to the app code, you can deploy the updated version with:
azd deploy
You can get more detailed output with the
--debug
parameter.azd deploy --debug
Check for any errors during the deployment, since updated app code will not get deployed if errors occur.
-
You can optionally use a local development server to test app changes locally. To do so, follow the steps in local deployment server after your app is deployed.
-
When you are done using your application, you can now delete the resources by running
azd down
. This may take up to 20 minutes.
azd down
.
You can view console logs in Azure portal. You can get the link to the resource group with the azd tool:
azd show
Or if you want to navigate from the Azure portal main page, select your resource group from the 'Recent' list, or by clicking the 'Resource groups' and searching your resource group there.
After accessing you resource group in Azure portal, choose your container app from the list of resources. Then open 'Monitoring' and 'Log Stream'.
If you enabled logging to a file, you can view the log file by choosing 'Console' under the 'Monitoring' (same location as above for the console traces), opening the default console and then for example running the following command (replace app.log with the actual name of your log file):
more app.log
You can view the App Insights tracing in Azure AI Foundry. Select your project on the Azure AI Foundry page and then click 'Tracing'.
Pricing varies per region and usage, so it isn't possible to predict exact costs for your usage. The majority of the Azure resources used in this infrastructure are on usage-based pricing tiers. However, Azure Container Registry has a fixed cost per registry per day.
You can try the Azure pricing calculator for the resources:
- Azure AI Foundry: Free tier. Pricing
- Azure AI Search: Standard tier, S1. Pricing is based on the number of documents and operations. Pricing
- Azure Storage Account: Standard tier, LRS. Pricing is based on storage and operations. Pricing
- Azure Key Vault: Standard tier. Pricing is based on the number of operations. Pricing
- Azure AI Services: S0 tier, defaults to gpt-4o-mini and text-embedding-ada-002 models. Pricing is based on token count. Pricing
- Azure Container App: Consumption tier with 0.5 CPU, 1GiB memory/storage. Pricing is based on resource allocation, and each month allows for a certain amount of free usage. Pricing
- Azure Container Registry: Basic tier. Pricing
- Log analytics: Pay-as-you-go tier. Costs based on data ingested. Pricing
azd down
.
This template uses Azure AI Foundry connections to communicate between resources, which stores keys in Azure Key Vault. This template also uses Managed Identity for local development and deployment.
To ensure continued best practices in your own repository, we recommend that anyone creating solutions based on our templates ensure that the Github secret scanning setting is enabled.
You may want to consider additional security measures, such as:
- Enabling Microsoft Defender for Cloud to secure your Azure resources.
- Protecting the Azure Container Apps instance with a firewall and/or Virtual Network.
This template creates everything you need to get started with Azure AI Foundry:
- AI Hub Resource
- AI Project
- Azure AI Service: Default models deployed are gpt-4o-mini and text-embedding-ada-002, but any Azure AI models can be specified per the documentation.
- AI Search Service (Optional, disabled by default)
The template also includes dependent resources required by all AI Hub resources:
- Storage Account
- Key Vault
- Application Insights (Optional, enabled by default)
- Container Registry (Optional, enabled by default)