To deploy this solution accelerator, ensure you have access to an Azure subscription with the necessary permissions to create resource groups, resources, app registrations, and assign roles at the resource group level. This should include Contributor role at the subscription level and Role Based Access Control role on the subscription and/or resource group level. Follow the steps in Azure Account Set Up.
Check the Azure Products by Region page and select a region where the following services are available:
- Azure OpenAI Service
- Azure Container Apps
- Azure Container Registry
- Azure Cosmos DB
- Azure Key Vault
- Azure AI Search
- GPT Model Capacity
Here are some example regions where the services are available: East US, East US2, Japan East, UK South, Sweden Central.
If you encounter issues running PowerShell scripts due to the policy of not being digitally signed, you can temporarily adjust the ExecutionPolicy by running the following command in an elevated PowerShell session:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy BypassThis will allow the scripts to run for the current session without permanently changing your system's policy.
Pick from the options below to see step-by-step instructions for GitHub Codespaces, VS Code Dev Containers, Local Environments, and Bicep deployments.
Deploy in GitHub Codespaces
You can run this solution using GitHub Codespaces. The button will open a web-based VS Code instance in your browser:
-
Open the solution accelerator (this may take several minutes):
-
Accept the default values on the create Codespaces page.
-
Open a terminal window if it is not already open.
-
Continue with the deploying steps.
Deploy in VS Code
You can run this solution in 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).
-
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.
Deploy in your local Environment
If you're not using one of the above options for opening the project, then you'll need to:
-
Make sure the following tools are installed:
- PowerShell (v7.0+) - available for Windows, macOS, and Linux.
- Azure Developer CLI (azd)
- Python 3.9+
- Docker Desktop
- Git
-
Clone the repository or download the project code via command-line:
azd init -t microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator/
-
Open the project folder in your terminal or editor.
-
Continue with the deploying steps.
Consider the following settings during your deployment to modify specific settings:
Configurable Deployment Settings
When you start the deployment, most parameters will have default values, but you can update the following settings:
| Setting | Description | Default value |
|---|---|---|
| Azure Region | The region where resources will be created. | East US |
| Secondary Location | A less busy region for Azure Cosmos DB, useful in case of availability constraints. | eastus2 |
| Deployment Type | Select from a drop-down list. | GlobalStandard |
| GPT Model | Choose from gpt-4, gpt-4o, gpt-4o-mini. | gpt-4o |
| GPT Model Deployment Capacity | Configure capacity for GPT models. | 140k |
[Optional] Quota Recommendations
By default, the GPT model capacity in deployment is set to 140k tokens.
To adjust quota settings, follow these steps.
Once you've opened the project in Codespaces, Dev Containers, or locally, you can deploy it to Azure by following these steps:
-
Login to Azure:
azd auth login
azd auth login --tenant-id <tenant-id>
-
Provision and deploy all the resources:
azd up
-
Provide an
azdenvironment name (e.g., "macaeapp"). -
Select a subscription from your Azure account and choose a location that has quota for all the resources.
- This deployment will take 4-6 minutes to provision the resources in your account and set up the solution with sample data.
- If you encounter an error or timeout during deployment, changing the location may help, as there could be availability constraints for the resources.
-
Once the deployment has completed successfully, open the Azure Portal, go to the deployed resource group, find the App Service, and get the app URL from
Default domain. -
If you are done trying out the application, you can delete the resources by running
azd down.
If you need to rebuild the source code and push the updated container to the deployed Azure Container Registry, follow these steps:
-
Set the environment variable
USE_LOCAL_BUILDtoTrue:-
Linux/macOS:
export USE_LOCAL_BUILD=True -
Windows (PowerShell):
$env:USE_LOCAL_BUILD = $true
-
-
Run the
az logincommandaz login
-
Run the
azd upcommand again to rebuild and push the updated container:azd up
This will rebuild the source code, package it into a container, and push it to the Azure Container Registry associated with your deployment.
This guide provides step-by-step instructions for deploying your application using Azure Container Registry (ACR) and Azure Container Apps.
There are several ways to deploy the solution. You can deploy to run in Azure in one click, or manually, or you can deploy locally.
When Deployment is complete, follow steps in Set Up Authentication in Azure App Service to add app authentication to your web app running on Azure App Service
Note for macOS Developers: If you are using macOS on Apple Silicon (ARM64) the DevContainer will not work. This is due to a limitation with the Azure Functions Core Tools (see here).
The easiest way to run this accelerator is in a 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)
-
In the VS Code window that opens, once the project files show up (this may take several minutes), open a terminal window
The solution contains a development container with all the required tooling to develop and deploy the accelerator. To deploy the Chat With Your Data accelerator using the provided development container you will also need:
If you are running this on Windows, we recommend you clone this repository in WSL
git clone https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-AcceleratorOpen the cloned repository in Visual Studio Code and connect to the development container.
code .!!! tip Visual Studio Code should recognize the available development container and ask you to open the folder using it. For additional details on connecting to remote containers, please see the Open an existing folder in a container quickstart.
When you start the development container for the first time, the container will be built. This usually takes a few minutes. Please use the development container for all further steps.
The files for the dev container are located in /.devcontainer/ folder.
-
Clone the repository.
-
Log into the Azure CLI:
- Check your login status using:
az account show
- If not logged in, use:
az login
- To specify a tenant, use:
az login --tenant <tenant_id>
- Check your login status using:
-
Create a Resource Group:
- You can create it either through the Azure Portal or the Azure CLI:
az group create --name <resource-group-name> --location EastUS2
- You can create it either through the Azure Portal or the Azure CLI:
-
Deploy the Bicep template:
-
You can use the Bicep extension for VSCode (Right-click the
.bicepfile, then select "Show deployment plane") or use the Azure CLI:az deployment group create -g <resource-group-name> -f deploy/macae-dev.bicep --query 'properties.outputs'
-
Note: You will be prompted for a
principalId, which is the ObjectID of your user in Entra ID. To find it, use the Azure Portal or run:az ad signed-in-user show --query id -o tsv
You will also be prompted for locations for Cosmos and OpenAI services. This is to allow separate regions where there may be service quota restrictions.
-
Additional Notes:
Role Assignments in Bicep Deployment:
The macae-dev.bicep deployment includes the assignment of the appropriate roles to AOAI and Cosmos services. If you want to modify an existing implementation—for example, to use resources deployed as part of the simple deployment for local debugging—you will need to add your own credentials to access the Cosmos and AOAI services. You can add these permissions using the following commands:
az cosmosdb sql role assignment create --resource-group <solution-accelerator-rg> --account-name <cosmos-db-account-name> --role-definition-name "Cosmos DB Built-in Data Contributor" --principal-id <aad-user-object-id> --scope /subscriptions/<subscription-id>/resourceGroups/<solution-accelerator-rg>/providers/Microsoft.DocumentDB/databaseAccounts/<cosmos-db-account-name>
az role assignment create --assignee <aad-user-upn> --role "Cognitive Services OpenAI User" --scope /subscriptions/<subscription-id>/resourceGroups/<solution-accelerator-rg>/providers/Microsoft.CognitiveServices/accounts/<azure-openai-account-name>
Using a Different Database in Cosmos:
You can set the solution up to use a different database in Cosmos. For example, you can name it something like macae-dev. To do this:
- Change the environment variable COSMOSDB_DATABASE to the new database name.
- You will need to create the database in the Cosmos DB account. You can do this from the Data Explorer pane in the portal, click on the drop down labeled "+ New Container" and provide all the necessary details.
-
-
Create a
.envfile:- Navigate to the
srcfolder and create a.envfile based on the provided.env.samplefile.
- Navigate to the
-
Fill in the
.envfile:- Use the output from the deployment or check the Azure Portal under "Deployments" in the resource group.
-
(Optional) Set up a virtual environment:
- If you are using
venv, create and activate your virtual environment for both the frontend and backend folders.
- If you are using
-
Install requirements - frontend:
- In each of the frontend and backend folders -
Open a terminal in the
srcfolder and run:pip install -r requirements.txt
- In each of the frontend and backend folders -
Open a terminal in the
-
Run the application:
- From the src/backend directory:
python app.py- In a new terminal from the src/frontend directory
python frontend_server.py- Open a browser and navigate to
http://localhost:3000 - To see swagger API documentation, you can navigate to
http://localhost:8000/docs
You can debug the API backend running locally with VSCode using the following launch.json entry:
{
"name": "Python Debugger: Backend",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}/src/backend",
"module": "uvicorn",
"args": ["app:app", "--reload"],
"jinja": true
}
To debug the python server in the frontend directory (frontend_server.py) and related, add the following launch.json entry:
{
"name": "Python Debugger: Frontend",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}/src/frontend",
"module": "uvicorn",
"args": ["frontend_server:app", "--port", "3000", "--reload"],
"jinja": true
}