Skip to content

Commit

Permalink
Update model version for gpt-4o to latest (#2106)
Browse files Browse the repository at this point in the history
* Update to latest model version

* Revert 35 turbo change

* Update only gpt4o
  • Loading branch information
pamelafox authored Nov 5, 2024
1 parent 87b0686 commit 58833bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ param speechServiceName string = ''
param speechServiceSkuName string // Set in main.parameters.json
param useGPT4V bool = false

// https://learn.microsoft.com/azure/ai-services/openai/concepts/models?tabs=python-secure%2Cstandard%2Cstandard-chat-completions#standard-deployment-model-availability
@description('Location for the OpenAI resource group')
@allowed([
'canadaeast'
Expand Down Expand Up @@ -145,7 +146,7 @@ param gpt4vDeploymentCapacity int = 0
var gpt4v = {
modelName: !empty(gpt4vModelName) ? gpt4vModelName : 'gpt-4o'
deploymentName: !empty(gpt4vDeploymentName) ? gpt4vDeploymentName : 'gpt-4o'
deploymentVersion: !empty(gpt4vModelVersion) ? gpt4vModelVersion : '2024-05-13'
deploymentVersion: !empty(gpt4vModelVersion) ? gpt4vModelVersion : '2024-08-06'
deploymentSkuName: !empty(gpt4vDeploymentSkuName) ? gpt4vDeploymentSkuName : 'Standard'
deploymentCapacity: gpt4vDeploymentCapacity != 0 ? gpt4vDeploymentCapacity : 10
}
Expand Down

0 comments on commit 58833bd

Please sign in to comment.