Skip to content

Commit 2865957

Browse files
Merge branch 'main' into hotfix
2 parents fbfcdf1 + fdaf312 commit 2865957

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy-waf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
2222
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
2323
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
24-
export GPT_MIN_CAPACITY="50"
24+
export GPT_MIN_CAPACITY="140"
2525
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"
2626
2727
chmod +x infra/scripts/checkquota.sh

infra/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ param aiFoundryAiServicesConfiguration aiServicesConfigurationType = {
144144
sku: 'S0'
145145
deployments: null //Default value set on module configuration
146146
subnetResourceId: null //Default value set on module configuration
147-
modelCapacity: 140
147+
modelCapacity: 50
148148
}
149149

150150
@description('Optional. The configuration to apply for the AI Foundry Storage Account resource.')
@@ -749,7 +749,7 @@ var aiFoundryAiServicesModelDeployment = {
749749
sku: {
750750
name: modelDeploymentType
751751
//Curently the capacity is set to 140 for opinanal performance.
752-
capacity: aiFoundryAiServicesConfiguration.?modelCapacity ?? 140
752+
capacity: aiFoundryAiServicesConfiguration.?modelCapacity ?? 50
753753
}
754754
raiPolicyName: 'Microsoft.Default'
755755
}

src/backend/app_kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
connection_string = os.getenv("APPLICATIONINSIGHTS_CONNECTION_STRING")
3939
if connection_string:
4040
# Configure Application Insights if the Instrumentation Key is found
41-
configure_azure_monitor(connection_string=connection_string)
41+
#configure_azure_monitor(connection_string=connection_string)
4242
logging.info(
4343
"Application Insights configured with the provided Instrumentation Key"
4444
)

0 commit comments

Comments
 (0)