Skip to content

Commit 25e97f0

Browse files
ferantiveroCopilot
andauthored
topic (iac): [foundry] update Azure OpenAI model from gpt-4o to gpt-4.1 (#74)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e24174e commit 25e97f0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Follow these instructions to deploy this example to your Azure subscription, try
6060
- The subscription must have the following quota available in the region you choose.
6161

6262
- App Service Plans: P1v3 (AZ), 3 instances
63-
- OpenAI model: GPT-4o model deployment with 50k tokens per minute (TPM) capacity
63+
- OpenAI model: GPT-4.1 model deployment with 50k tokens per minute (TPM) capacity
6464

6565
- Your deployment user must have the following permissions at the subscription scope.
6666

infra-as-code/bicep/ai-foundry.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ resource foundry 'Microsoft.CognitiveServices/accounts@2025-06-01' = {
6969
properties: {
7070
model: {
7171
format: 'OpenAI'
72-
name: 'gpt-4o'
73-
version: '2024-11-20' // Use a model version available in your region.
72+
name: 'gpt-4.1'
73+
version: '2025-04-14' // Use a model version available in your region.
7474
}
7575
versionUpgradeOption: 'NoAutoUpgrade' // Production deployments should not auto-upgrade models. Testing compatibility is important.
7676
}

0 commit comments

Comments
 (0)