File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
articles/ai-foundry/model-inference/includes/create-model-deployments Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,13 @@ To add a model, you first need to identify the model that you want to deploy. Yo
48
48
```azurecli
49
49
accountName="<ai-services-resource-name>"
50
50
resourceGroupName="<resource-group>"
51
+ location="eastus2"
51
52
```
52
53
53
54
3. If you don't have an Azure AI Services account create yet, you can create one as follows:
54
55
55
56
```azurecli
56
- az cognitiveservices account create -n $accountName -g $resourceGroupName --custom-domain $accountName --kind AIServices
57
+ az cognitiveservices account create -n $accountName -g $resourceGroupName --custom-domain $accountName --kind AIServices --location $location
57
58
```
58
59
59
60
4. Let's see first which models are available to you and under which SKU. The following command list all the model definitions available:
You can’t perform that action at this time.
0 commit comments