Skip to content

Commit c412c08

Browse files
Merge branch 'main' into dev
2 parents 6b85ef2 + 49896f9 commit c412c08

29 files changed

+323
-28
lines changed

.github/workflows/CAdeploy.yml

+47-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI-Validate Deployment-Client Advisor
1+
name: Validate Deployment - Client Advisor
22

33
on:
44
push:
@@ -16,6 +16,50 @@ jobs:
1616
steps:
1717
- name: Checkout Code
1818
uses: actions/checkout@v3
19+
20+
- name: Run Quota Check
21+
id: quota-check
22+
run: |
23+
export AZURE_CLIENT_ID=${{ secrets.AZURE_CLIENT_ID }}
24+
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
25+
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
26+
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
27+
export GPT_MIN_CAPACITY="11"
28+
export TEXT_EMBEDDING_MIN_CAPACITY="45"
29+
30+
chmod +x ClientAdvisor/Deployment/scripts/checkquota.sh
31+
if ! ClientAdvisor/Deployment/scripts/checkquota.sh; then
32+
# If quota check fails due to insufficient quota, set the flag
33+
if grep -q "No region with sufficient quota found" ClientAdvisor/Deployment/scripts/checkquota.sh; then
34+
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
35+
fi
36+
exit 1 # Fail the pipeline if any other failure occurs
37+
fi
38+
39+
40+
- name: Send Notification on Quota Failure
41+
if: env.QUOTA_FAILED == 'true'
42+
run: |
43+
RUN_URL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
44+
EMAIL_BODY=$(cat <<EOF
45+
{
46+
"body": "<p>Dear Team,</p><p>The quota check has failed, and the pipeline cannot proceed.</p><p><strong>Build URL:</strong> ${RUN_URL}</p><p>Please take necessary action.</p><p>Best regards,<br>Your Automation Team</p>"
47+
}
48+
EOF
49+
)
50+
51+
curl -X POST "${{ secrets.LOGIC_APP_URL }}" \
52+
-H "Content-Type: application/json" \
53+
-d "$EMAIL_BODY" || echo "Failed to send notification"
54+
55+
- name: Fail Pipeline if Quota Check Fails
56+
if: env.QUOTA_FAILED == 'true'
57+
run: exit 1
58+
59+
- name: Set Deployment Region
60+
run: |
61+
echo "Deployment Region: $VALID_REGION"
62+
echo "AZURE_LOCATION=$VALID_REGION" >> $GITHUB_ENV
1963
2064
- name: Setup Azure CLI
2165
run: |
@@ -48,7 +92,7 @@ jobs:
4892
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }})
4993
if [ "$rg_exists" = "false" ]; then
5094
echo "Resource group does not exist. Creating..."
51-
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location uksouth || { echo "Error creating resource group"; exit 1; }
95+
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location ${{ env.AZURE_LOCATION }} || { echo "Error creating resource group"; exit 1; }
5296
else
5397
echo "Resource group already exists."
5498
fi
@@ -71,7 +115,7 @@ jobs:
71115
az deployment group create \
72116
--resource-group ${{ env.RESOURCE_GROUP_NAME }} \
73117
--template-file ClientAdvisor/Deployment/bicep/main.bicep \
74-
--parameters solutionPrefix=${{ env.SOLUTION_PREFIX }} cosmosLocation=eastus2
118+
--parameters solutionPrefix=${{ env.SOLUTION_PREFIX }} cosmosLocation=${{ env.AZURE_LOCATION }}
75119
76120
- name: List KeyVaults and Store in Array
77121
id: list_keyvaults

.github/workflows/RAdeploy.yml

+47-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI-Validate Deployment-Research Assistant
1+
name: Validate Deployment - Researcher
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77
paths:
88
- 'ResearchAssistant/**'
99
schedule:
10-
- cron: '0 6,18 * * *' # Runs at 6:00 AM and 6:00 PM GMT
10+
- cron: '0 7,19 * * *' # Runs at 7:00 AM and 7:00 PM GMT
1111

1212
jobs:
1313
deploy:
@@ -16,6 +16,45 @@ jobs:
1616
- name: Checkout Code
1717
uses: actions/checkout@v3
1818

19+
- name: Run Quota Check
20+
id: quota-check
21+
run: |
22+
export AZURE_CLIENT_ID=${{ secrets.AZURE_CLIENT_ID }}
23+
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
24+
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
25+
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
26+
export GPT_MIN_CAPACITY="30"
27+
export TEXT_EMBEDDING_MIN_CAPACITY="45"
28+
29+
chmod +x ResearchAssistant/Deployment/scripts/checkquota.sh
30+
if ! ResearchAssistant/Deployment/scripts/checkquota.sh; then
31+
# If quota check fails due to insufficient quota, set the flag
32+
if grep -q "No region with sufficient quota found" ResearchAssistant/Deployment/scripts/checkquota.sh; then
33+
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
34+
fi
35+
exit 1 # Fail the pipeline if any other failure occurs
36+
fi
37+
38+
39+
- name: Send Notification on Quota Failure
40+
if: env.QUOTA_FAILED == 'true'
41+
run: |
42+
RUN_URL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
43+
EMAIL_BODY=$(cat <<EOF
44+
{
45+
"body": "<p>Dear Team,</p><p>The quota check has failed, and the pipeline cannot proceed.</p><p><strong>Build URL:</strong> ${RUN_URL}</p><p>Please take necessary action.</p><p>Best regards,<br>Your Automation Team</p>"
46+
}
47+
EOF
48+
)
49+
50+
curl -X POST "${{ secrets.LOGIC_APP_URL }}" \
51+
-H "Content-Type: application/json" \
52+
-d "$EMAIL_BODY" || echo "Failed to send notification"
53+
54+
- name: Fail Pipeline if Quota Check Fails
55+
if: env.QUOTA_FAILED == 'true'
56+
run: exit 1
57+
1958
- name: Setup Azure CLI
2059
run: |
2160
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
@@ -28,6 +67,11 @@ jobs:
2867
- name: Install Bicep CLI
2968
run: az bicep install
3069

70+
- name: Set Deployment Region
71+
run: |
72+
echo "Selected Region: $VALID_REGION"
73+
echo "AZURE_LOCATION=$VALID_REGION" >> $GITHUB_ENV
74+
3175
- name: Generate Resource Group Name
3276
id: generate_rg_name
3377
run: |
@@ -46,7 +90,7 @@ jobs:
4690
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }})
4791
if [ "$rg_exists" = "false" ]; then
4892
echo "Resource group does not exist. Creating..."
49-
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location eastus2 || { echo "Error creating resource group"; exit 1; }
93+
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location ${{ env.AZURE_LOCATION }} || { echo "Error creating resource group"; exit 1; }
5094
else
5195
echo "Resource group already exists."
5296
fi

.github/workflows/build-clientadvisor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build ClientAdvisor Docker Images
1+
name: Build Docker and Optional Push - Client Advisor
22

33
on:
44
push:
@@ -15,6 +15,7 @@ on:
1515
paths:
1616
- ClientAdvisor/**
1717
merge_group:
18+
workflow_dispatch:
1819

1920
jobs:
2021
docker-build:

.github/workflows/build-docker.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,18 @@ jobs:
5050

5151
- name: Determine Tag Name Based on Branch
5252
id: determine_tag
53-
run: echo "tagname=${{ github.ref_name == 'main' && 'latest' || github.ref_name == 'dev' && 'dev' || github.ref_name == 'demo' && 'demo' || github.head_ref || 'default' }}" >> $GITHUB_OUTPUT
53+
run: |
54+
if [[ "${{ github.ref_name }}" == "main" ]]; then
55+
echo "tagname=latest" >> $GITHUB_OUTPUT
56+
elif [[ "${{ github.ref_name }}" == "dev" ]]; then
57+
echo "tagname=dev" >> $GITHUB_OUTPUT
58+
elif [[ "${{ github.ref_name }}" == "demo" ]]; then
59+
echo "tagname=demo" >> $GITHUB_OUTPUT
60+
else
61+
echo "tagname=default" >> $GITHUB_OUTPUT
62+
63+
fi
64+
5465
5566
- name: Build Docker Image and optionally push
5667
uses: docker/build-push-action@v6

.github/workflows/build-researchassistant.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build ResearchAssistant Docker Images
1+
name: Build Docker and Optional Push - Researcher
22

33
on:
44
push:
@@ -15,6 +15,7 @@ on:
1515
paths:
1616
- ResearchAssistant/**
1717
merge_group:
18+
workflow_dispatch:
1819

1920
jobs:
2021
docker-build:

.github/workflows/pr-title-checker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "pr-title-checker"
1+
name: "PR Title Checker"
22

33
on:
44
pull_request_target:

.github/workflows/pylint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pylint
1+
name: PyLint
22

33
on: [push]
44

.github/workflows/stale-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Close stale issues and PRs'
1+
name: 'Stale Bot'
22
on:
33
schedule:
44
- cron: '30 1 * * *'

.github/workflows/test_client_advisor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Unit Tests - Client Advisor
1+
name: Test Workflow with Coverage - Client Advisor
22

33
on:
44
push:

.github/workflows/test_research_assistant.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Unit Tests - Research Assistant
1+
name: Test Workflow with Coverage - Researcher
22

33
on:
44
push:
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
#!/bin/bash
2+
3+
# List of Azure regions to check for quota (update as needed)
4+
REGIONS=("eastus" "westus" "northcentralus" "uksouth" "swedencentral")
5+
6+
SUBSCRIPTION_ID="${AZURE_SUBSCRIPTION_ID}"
7+
GPT_MIN_CAPACITY="${GPT_MIN_CAPACITY}"
8+
TEXT_EMBEDDING_MIN_CAPACITY="${TEXT_EMBEDDING_MIN_CAPACITY}"
9+
AZURE_CLIENT_ID="${AZURE_CLIENT_ID}"
10+
AZURE_TENANT_ID="${AZURE_TENANT_ID}"
11+
AZURE_CLIENT_SECRET="${AZURE_CLIENT_SECRET}"
12+
13+
# Authenticate using Managed Identity
14+
echo "Authentication using Managed Identity..."
15+
if ! az login --service-principal -u "$AZURE_CLIENT_ID" -p "$AZURE_CLIENT_SECRET" --tenant "$AZURE_TENANT_ID"; then
16+
echo "❌ Error: Failed to login using Managed Identity."
17+
exit 1
18+
fi
19+
20+
echo "🔄 Validating required environment variables..."
21+
if [[ -z "$SUBSCRIPTION_ID" || -z "$GPT_MIN_CAPACITY" || -z "$TEXT_EMBEDDING_MIN_CAPACITY" ]]; then
22+
echo "❌ ERROR: Missing required environment variables."
23+
exit 1
24+
fi
25+
26+
echo "🔄 Setting Azure subscription..."
27+
if ! az account set --subscription "$SUBSCRIPTION_ID"; then
28+
echo "❌ ERROR: Invalid subscription ID or insufficient permissions."
29+
exit 1
30+
fi
31+
echo "✅ Azure subscription set successfully."
32+
33+
# Define models and their minimum required capacities
34+
declare -A MIN_CAPACITY=(
35+
["OpenAI.Standard.gpt-4"]=$GPT_MIN_CAPACITY
36+
["OpenAI.Standard.text-embedding-ada-002"]=$TEXT_EMBEDDING_MIN_CAPACITY
37+
)
38+
39+
VALID_REGION=""
40+
for REGION in "${REGIONS[@]}"; do
41+
echo "----------------------------------------"
42+
echo "🔍 Checking region: $REGION"
43+
44+
QUOTA_INFO=$(az cognitiveservices usage list --location "$REGION" --output json)
45+
if [ -z "$QUOTA_INFO" ]; then
46+
echo "⚠️ WARNING: Failed to retrieve quota for region $REGION. Skipping."
47+
continue
48+
fi
49+
50+
INSUFFICIENT_QUOTA=false
51+
for MODEL in "${!MIN_CAPACITY[@]}"; do
52+
MODEL_INFO=$(echo "$QUOTA_INFO" | awk -v model="\"value\": \"$MODEL\"" '
53+
BEGIN { RS="},"; FS="," }
54+
$0 ~ model { print $0 }
55+
')
56+
57+
if [ -z "$MODEL_INFO" ]; then
58+
echo "⚠️ WARNING: No quota information found for model: $MODEL in $REGION. Skipping."
59+
continue
60+
fi
61+
62+
CURRENT_VALUE=$(echo "$MODEL_INFO" | awk -F': ' '/"currentValue"/ {print $2}' | tr -d ',' | tr -d ' ')
63+
LIMIT=$(echo "$MODEL_INFO" | awk -F': ' '/"limit"/ {print $2}' | tr -d ',' | tr -d ' ')
64+
65+
CURRENT_VALUE=${CURRENT_VALUE:-0}
66+
LIMIT=${LIMIT:-0}
67+
68+
CURRENT_VALUE=$(echo "$CURRENT_VALUE" | cut -d'.' -f1)
69+
LIMIT=$(echo "$LIMIT" | cut -d'.' -f1)
70+
71+
AVAILABLE=$((LIMIT - CURRENT_VALUE))
72+
73+
echo "✅ Model: $MODEL | Used: $CURRENT_VALUE | Limit: $LIMIT | Available: $AVAILABLE"
74+
75+
if [ "$AVAILABLE" -lt "${MIN_CAPACITY[$MODEL]}" ]; then
76+
echo "❌ ERROR: $MODEL in $REGION has insufficient quota."
77+
INSUFFICIENT_QUOTA=true
78+
break
79+
fi
80+
done
81+
82+
if [ "$INSUFFICIENT_QUOTA" = false ]; then
83+
VALID_REGION="$REGION"
84+
break
85+
fi
86+
87+
done
88+
89+
if [ -z "$VALID_REGION" ]; then
90+
echo "❌ No region with sufficient quota found. Blocking deployment."
91+
echo "QUOTA_FAILED=true" >> "$GITHUB_ENV"
92+
exit 0
93+
else
94+
echo "✅ Deployment Region: $VALID_REGION"
95+
echo "VALID_REGION=$VALID_REGION" >> "$GITHUB_ENV"
96+
exit 0
97+
fi

ClientAdvisor/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ For additional training and support, please see:
6565
### **How to install/deploy**
6666

6767
1. Please check the link [Azure Products by Region](
68-
https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=all&regions=all) and choose a region where Azure AI Search, Semantic Ranker, Azure OpenAI Service, and Azure AI Studio are available.
68+
https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=all&regions=all) and choose a region where Azure AI Search, Semantic Ranker, Azure OpenAI Service, and Azure AI Foundry are available.
6969

7070
2. Click the following deployment button to create the required resources for this accelerator in your Azure Subscription.
7171

ResearchAssistant/Deployment/AIStudioDeployment.md ResearchAssistant/Deployment/AIFoundryDeployment.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# AI Studio Deployment Guide
1+
# AI Foundry Deployment Guide
22
Please follow the steps below to configure the Prompt flow endpoint in App service configuration.
33

4-
## Step 1: Open AI Studio Project
5-
1. Launch the [AI Studio](https://ai.azure.com/) and select `Build` from the top menu.
4+
## Step 1: OpenAI Foundry Project
5+
1. Launch the [AI Foundry](https://ai.azure.com/) and select `project` under Jump into a project in Azure AI Foundry, If not found click on View all projects from the top menu.
66

77
![Home](/ResearchAssistant/Deployment/images/aiStudio/Home.png)
88

99
2. Click on the project with name `ai_project_{your deployment prefix}`.
1010

1111
## Step 2: Import Prompt Flow and Deploy
1212

13-
1. Click on `PromptFlow` button from left menu under `Tools`.
13+
1. Click on `PromptFlow` button from left menu under `Build and customize`.
1414

1515
![Prompt Flow](/ResearchAssistant/Deployment/images/aiStudio/PromptFlow.png)
1616

@@ -27,7 +27,7 @@ Please follow the steps below to configure the Prompt flow endpoint in App servi
2727
![Upload Local File](/ResearchAssistant/Deployment/images/aiStudio/UploadLocalFile.png)
2828

2929

30-
5. Click on `Select runtime` and chick on `Start` from the drop-down list. It can take few minutes for the runtime to start.
30+
5. Click on `Start compute session` and click on `Start compute session` from the drop-down list. It can take few minutes for the runtime to start.
3131

3232
![Select Runtime](/ResearchAssistant/Deployment/images/aiStudio/SelectRunTime.png)
3333

@@ -38,12 +38,12 @@ Please follow the steps below to configure the Prompt flow endpoint in App servi
3838

3939
![Deploy Draft Flow](/ResearchAssistant/Deployment/images/aiStudio/DeployDraftFlow.png)
4040

41-
7. It will take few minutes for the flow to be validated and deployed. Click on `Deployments` from left menu. You might only see the Default_AzureOpenAI deployments in the page until the deployment is completed. Please wait and click on `Refresh` after few minutes.
41+
7. It will take few minutes for the flow to be validated and deployed. Click on `Models + endpoints` from left menu. You might only see the Default_AzureOpenAI deployments in the page until the deployment is completed. Please wait and click on `Refresh` after few minutes.
4242

4343
![Deployments Page](/ResearchAssistant/Deployment/images/aiStudio/BlankDeploymentsPage.png)
4444

4545

46-
8. Click on the deployed endpoint with name `draftsinference-1`.
46+
8. Click on the deployed endpoint with name `ai-project-bycra-jzxzb-1`.
4747
![Drafts Endpoint](/ResearchAssistant/Deployment/images/aiStudio/DraftsEndpoint.png)
4848

4949
9. Click on `Consume` from the top menu. Copy below details to use later in step 3.6.

ResearchAssistant/Deployment/FabricDeployment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Please follow the steps below to set up the Fabric Workspace and collect the id
88
3. Enter a Workspace Name and click on `Apply`.
99
![New Workspace](/ResearchAssistant/Deployment/images/fabric/CreateWorkspace.png)
1010

11-
4. On the next page, click on `New`.
11+
4. On the next page, click on `Import`.
1212
![Create Workspace](/ResearchAssistant/Deployment/images/fabric/WorkspaceGuid.png)
1313

14-
5. Click on `Import Notebook`.
14+
5. Click on `Notebook`.
1515

1616
![Create Workspace](/ResearchAssistant/Deployment/images/fabric/ImportNotebooks.png)
1717

Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)