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 = ''
5959param speechServiceSkuName string // Set in main.parameters.json
6060param useGPT4V bool = false
6161
62+ // https://learn.microsoft.com/azure/ai-services/openai/concepts/models?tabs=python-secure%2Cstandard%2Cstandard-chat-completions#standard-deployment-model-availability
6263@description ('Location for the OpenAI resource group' )
6364@allowed ([
6465 'canadaeast'
@@ -145,7 +146,7 @@ param gpt4vDeploymentCapacity int = 0
145146var gpt4v = {
146147 modelName : !empty (gpt4vModelName ) ? gpt4vModelName : 'gpt-4o'
147148 deploymentName : !empty (gpt4vDeploymentName ) ? gpt4vDeploymentName : 'gpt-4o'
148- deploymentVersion : !empty (gpt4vModelVersion ) ? gpt4vModelVersion : '2024-05-13 '
149+ deploymentVersion : !empty (gpt4vModelVersion ) ? gpt4vModelVersion : '2024-08-06 '
149150 deploymentSkuName : !empty (gpt4vDeploymentSkuName ) ? gpt4vDeploymentSkuName : 'Standard'
150151 deploymentCapacity : gpt4vDeploymentCapacity != 0 ? gpt4vDeploymentCapacity : 10
151152}
You can’t perform that action at this time.
0 commit comments