File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ param chatGptDeploymentName string = ''
98
98
param chatGptDeploymentVersion string = ''
99
99
param chatGptDeploymentCapacity int = 0
100
100
var chatGpt = {
101
- modelName : !empty (chatGptModelName ) ? chatGptModelName : startsWith (openAiHost , 'azure' ) ? 'gpt-35-turbo ' : 'gpt-3.5-turbo '
101
+ modelName : !empty (chatGptModelName ) ? chatGptModelName : startsWith (openAiHost , 'azure' ) ? 'gpt-4o ' : 'gpt-4o '
102
102
deploymentName : !empty (chatGptDeploymentName ) ? chatGptDeploymentName : 'chat'
103
- deploymentVersion : !empty (chatGptDeploymentVersion ) ? chatGptDeploymentVersion : '0613 '
104
- deploymentCapacity : chatGptDeploymentCapacity != 0 ? chatGptDeploymentCapacity : 30
103
+ deploymentVersion : !empty (chatGptDeploymentVersion ) ? chatGptDeploymentVersion : '2024-05-13 '
104
+ deploymentCapacity : chatGptDeploymentCapacity != 0 ? chatGptDeploymentCapacity : 57
105
105
}
106
106
107
107
param embeddingModelName string = ''
@@ -351,7 +351,7 @@ var defaultOpenAiDeployments = [
351
351
version : chatGpt .deploymentVersion
352
352
}
353
353
sku : {
354
- name : 'Standard '
354
+ name : 'GlobalStandard '
355
355
capacity : chatGpt .deploymentCapacity
356
356
}
357
357
}
You can’t perform that action at this time.
0 commit comments