Skip to content

Commit c02e95b

Browse files
update Azure OpenAI model from gpt-4o to gpt-4.1 (#88)
Co-authored-by: GitHub Copilot (Claude Sonnet 4) <noreply@github.com>
1 parent bf15c89 commit c02e95b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Follow these instructions to deploy this example to your Azure subscription, try
8686
- App Service Plans: P1v3 (AZ), 3 instances
8787
- Azure AI Search (S - Standard): 1
8888
- Azure Cosmos DB: 1 account
89-
- OpenAI model: GPT-4o model deployment with 50k tokens per minute (TPM) capacity
89+
- OpenAI model: GPT-4.1 model deployment with 50k tokens per minute (TPM) capacity
9090
- DDoS Protection Plans: 1
9191
- Public IPv4 Addresses - Standard: 4
9292
- Standard DSv3 Family vCPU: 2

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ resource foundry 'Microsoft.CognitiveServices/accounts@2025-10-01-preview' = {
100100
properties: {
101101
model: {
102102
format: 'OpenAI'
103-
name: 'gpt-4o'
104-
version: '2024-11-20' // Use a model version available in your region.
103+
name: 'gpt-4.1'
104+
version: '2025-04-14' // Use a model version available in your region.
105105
}
106106
versionUpgradeOption: 'NoAutoUpgrade' // Production deployments should not auto-upgrade models. Testing compatibility is important.
107107
raiPolicyName: 'Microsoft.DefaultV2' // If this isn't strict enough for your use case, create a custom RAI policy.

0 commit comments

Comments
 (0)