An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Based on my own research the AI answer is incorrect about not changing the cost: if you upgrade your Azure AI services from the Free Tier to Tier 1 (Pay-As-You-Go), any free monthly allowances from the old tier do not carry over, and you will be billed strictly for the actual usage you consume under the paid tier's rates. If your usage is strictly zero, your cost will be zero, but after upgrading to Tier 1 even if staying under a previous free quota will still incur standard charges.
I disabled the Auto Tier Upgrade using PowerShell, you can check your current tier with this:
$Subscription = '00000000-0000-0000-0000-000000000000'
az login --subscription $Subscription --skip-subscription-discovery
$Token = az account get-access-token --resource https://management.azure.com --query accessToken -o tsv
$Headers = @{
"Authorization" = "Bearer $Token"
"Content-Type" = "application/json"
}
$Response = Invoke-WebRequest -Uri "https://management.azure.com/subscriptions/$subscription/providers/Microsoft.CognitiveServices/quotaTiers?api-version=2025-10-01-preview" -Method GET -Headers $Headers -UseBasicParsing
$Response.content
Then disabled it with:
$BodyData = @{ "properties" = @{ "tierUpgradePolicy" = "NoAutoUpgrade" } } | ConvertTo-Json
$Response = Invoke-WebRequest -Uri "https://management.azure.com/subscriptions/$Subscription/providers/Microsoft.CognitiveServices/quotaTiers/default?api-version=2025-10-01-preview" -Method PATCH -Headers $Headers -Body $BodyData -UseBasicParsing
$Response.content
If you check current level immediately to confirm it will still tell you the old tierUpgradePolicy, give it 5 to 10 min and check again and should show the NoAutoUpgrade