Skip to content

Commit 1176cf4

Browse files
author
Seth
committed
Quota - documentation and main.json
1 parent 5b7f3d8 commit 1176cf4

2 files changed

Lines changed: 100 additions & 153 deletions

File tree

docs/modify_deployed_models.md

Lines changed: 17 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,24 @@
11
## Update AI Model Deployments
2-
The AI Models that can be deployed and attached to the Foundry hub can be modified by changing the parameters within the [main.parameters.json](../infra/main.parameters.json) file.
32

4-
By modifying the parameters listed in the parameters.json 'aiModelDeployments' section, additional or different models can be deployed with the solution and ready for use after the deployment. Simply modify the values to your liking in each of the objects, or add additional objects to the array.
5-
```powershell
3+
The AI Models that can be deployed and attached to the Foundry hub can be modified by changing the parameters within the [main.parameters.json](../infra/main.parameters.json) file.
64

5+
By modifying the parameters `aiEmbeddingModelDeployment` and `aiGPTModelDeployment` listed in the parameters.json, different embedding and GPT models can be deployed with the solution and ready for use after the deployment. Simply modify the values to your liking in each of the objects.
76

8-
"aiModelDeployments": {
9-
"value": [
10-
{
11-
"name": "textembed",
12-
"model": {
13-
"name": modelName,
14-
"format": modelPublisherFormat,
15-
"version": modelVersion
16-
},
17-
"sku": {
18-
"name": skuName,
19-
"capacity": capacity
20-
}
21-
},
22-
{
23-
"name": "gpt",
24-
"model": {
25-
"name": "gpt-4o",
26-
"version": "2024-05-13",
27-
"format": "OpenAI"
28-
},
29-
"sku": {
30-
"name": "GlobalStandard",
31-
"capacity": 10
32-
}
33-
}
34-
]
7+
```powershell
8+
"aiEmbeddingModelDeployment": {
9+
"value": {
10+
"modelName": modelName,
11+
"version": modelVersion,
12+
"capacity": capacity
13+
}
14+
},
15+
"aiGPTModelDeployment": {
16+
"value": {
17+
"modelName": "gpt-4o",
18+
"version": "2024-05-13",
19+
"capacity": 150
20+
}
3521
}
3622
```
23+
3724
To find and validate additional model information, the [AI Foundry](https://ai.azure.com/explore/models) model page has the above parameters to refer to, as does the Microsoft Learn page for [Azure OpenAI Service Models](https://learn.microsoft.com/en-us/azure/ai-services/openai_) information.

0 commit comments

Comments
 (0)