File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ param useGPT4V bool = false
6666 'eastus2'
6767 'francecentral'
6868 'switzerlandnorth'
69- 'westeurope'
7069 'uksouth'
7170 'japaneast'
7271 'northcentralus'
@@ -92,7 +91,7 @@ param documentIntelligenceResourceGroupName string = '' // Set in main.parameter
9291// Limited regions for new version:
9392// https://learn.microsoft.com/azure/ai-services/document-intelligence/concept-layout
9493@description ('Location for the Document Intelligence resource group' )
95- @allowed (['eastus' , 'westus2' , 'westeurope ' ])
94+ @allowed (['eastus' , 'swedencentral ' ])
9695@metadata ({
9796 azd : {
9897 type : 'location'
@@ -116,11 +115,11 @@ param chatGptDeploymentCapacity int = 0
116115var chatGpt = {
117116 modelName : !empty (chatGptModelName )
118117 ? chatGptModelName
119- : startsWith (openAiHost , 'azure' ) ? 'gpt-35-turbo ' : 'gpt-3.5-turbo '
118+ : startsWith (openAiHost , 'azure' ) ? 'gpt-4o-mini ' : 'gpt-4o-mini '
120119 deploymentName : !empty (chatGptDeploymentName ) ? chatGptDeploymentName : 'chat'
121- deploymentVersion : !empty (chatGptDeploymentVersion ) ? chatGptDeploymentVersion : '0613 '
122- deploymentSkuName : !empty (chatGptDeploymentSkuName ) ? chatGptDeploymentSkuName : 'Standard '
123- deploymentCapacity : chatGptDeploymentCapacity != 0 ? chatGptDeploymentCapacity : 30
120+ deploymentVersion : !empty (chatGptDeploymentVersion ) ? chatGptDeploymentVersion : '2024-07-18 '
121+ deploymentSkuName : !empty (chatGptDeploymentSkuName ) ? chatGptDeploymentSkuName : 'GlobalStandard '
122+ deploymentCapacity : chatGptDeploymentCapacity != 0 ? chatGptDeploymentCapacity : 1000
124123}
125124
126125param embeddingModelName string = ''
You can’t perform that action at this time.
0 commit comments