File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 3838connection_string = os .getenv ("APPLICATIONINSIGHTS_CONNECTION_STRING" )
3939if 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 )
You can’t perform that action at this time.
0 commit comments