File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ param speechServiceName string = ''
59
59
param speechServiceSkuName string // Set in main.parameters.json
60
60
param useGPT4V bool = false
61
61
62
+ // https://learn.microsoft.com/azure/ai-services/openai/concepts/models?tabs=python-secure%2Cstandard%2Cstandard-chat-completions#standard-deployment-model-availability
62
63
@description ('Location for the OpenAI resource group' )
63
64
@allowed ([
64
65
'canadaeast'
@@ -145,7 +146,7 @@ param gpt4vDeploymentCapacity int = 0
145
146
var gpt4v = {
146
147
modelName : !empty (gpt4vModelName ) ? gpt4vModelName : 'gpt-4o'
147
148
deploymentName : !empty (gpt4vDeploymentName ) ? gpt4vDeploymentName : 'gpt-4o'
148
- deploymentVersion : !empty (gpt4vModelVersion ) ? gpt4vModelVersion : '2024-05-13 '
149
+ deploymentVersion : !empty (gpt4vModelVersion ) ? gpt4vModelVersion : '2024-08-06 '
149
150
deploymentSkuName : !empty (gpt4vDeploymentSkuName ) ? gpt4vDeploymentSkuName : 'Standard'
150
151
deploymentCapacity : gpt4vDeploymentCapacity != 0 ? gpt4vDeploymentCapacity : 10
151
152
}
You can’t perform that action at this time.
0 commit comments