Skip to content

Commit 40fcdf4

Browse files
committed
added gpt4o as default chat model
1 parent 7b55ad2 commit 40fcdf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

infra/main.bicep

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ param chatGptDeploymentName string = ''
9898
param chatGptDeploymentVersion string = ''
9999
param chatGptDeploymentCapacity int = 0
100100
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'
102102
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
105105
}
106106

107107
param embeddingModelName string = ''
@@ -351,7 +351,7 @@ var defaultOpenAiDeployments = [
351351
version: chatGpt.deploymentVersion
352352
}
353353
sku: {
354-
name: 'Standard'
354+
name: 'GlobalStandard'
355355
capacity: chatGpt.deploymentCapacity
356356
}
357357
}

0 commit comments

Comments
 (0)