Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
crpietschmann committed Mar 15, 2024
2 parents ec21f90 + f3d8a9e commit 4dd5897
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion IaC/ARM/v1/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.26.54.24096",
"templateHash": "16834692971558596919"
"templateHash": "5490280294630692804"
}
},
"parameters": {
Expand All @@ -20,6 +20,10 @@
"azureOpenAISku": {
"type": "string",
"defaultValue": "S0"
},
"openai_deployment_name": {
"type": "string",
"defaultValue": "b59-gpt35-turbo"
}
},
"variables": {
Expand All @@ -46,6 +50,30 @@
},
"publicNetworkAccess": "Enabled"
}
},
{
"type": "Microsoft.CognitiveServices/accounts/deployments",
"apiVersion": "2023-05-01",
"name": "[format('{0}/{1}', format('{0}-oai', parameters('resourcePrefix')), parameters('openai_deployment_name'))]",
"sku": {
"capacity": 120,
"name": "Standard"
},
"properties": {
"model": {
"format": "OpenAI",
"name": "gpt-35-turbo",
"version": "0613"
},
"raiPolicyName": "Microsoft.Default",
"versionUpgradeOption": "OnceCurrentVersionExpired",
"scaleSettings": {
"capacity": 120
}
},
"dependsOn": [
"[resourceId('Microsoft.CognitiveServices/accounts', format('{0}-oai', parameters('resourcePrefix')))]"
]
}
]
}

0 comments on commit 4dd5897

Please sign in to comment.