File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -109,13 +109,16 @@ param computerVisionSkuName string // Set in main.parameters.json
109
109
param chatGptModelName string = ''
110
110
param chatGptDeploymentName string = ''
111
111
param chatGptDeploymentVersion string = ''
112
+ param chatGptDeploymentSkuName string = ''
112
113
param chatGptDeploymentCapacity int = 0
114
+
113
115
var chatGpt = {
114
116
modelName : !empty (chatGptModelName )
115
117
? chatGptModelName
116
118
: startsWith (openAiHost , 'azure' ) ? 'gpt-35-turbo' : 'gpt-3.5-turbo'
117
119
deploymentName : !empty (chatGptDeploymentName ) ? chatGptDeploymentName : 'chat'
118
120
deploymentVersion : !empty (chatGptDeploymentVersion ) ? chatGptDeploymentVersion : '0613'
121
+ deploymentSkuName : !empty (chatGptDeploymentSkuName ) ? chatGptDeploymentSkuName : 'Standard'
119
122
deploymentCapacity : chatGptDeploymentCapacity != 0 ? chatGptDeploymentCapacity : 30
120
123
}
121
124
@@ -450,7 +453,7 @@ var defaultOpenAiDeployments = [
450
453
version : chatGpt .deploymentVersion
451
454
}
452
455
sku : {
453
- name : 'Standard'
456
+ name : chatGpt . deploymentSkuName
454
457
capacity : chatGpt .deploymentCapacity
455
458
}
456
459
}
You can’t perform that action at this time.
0 commit comments