You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "An Azure AI Foundry project with models.",
1455
+
"additionalProperties": false,
1456
+
"properties": {
1457
+
"type": true,
1458
+
"uses": true,
1459
+
"models": {
1460
+
"type": "array",
1461
+
"title": "AI models to deploy",
1462
+
"description": "Optional. The AI models to be deployed as part of the AI project.",
1463
+
"minItems": 1,
1464
+
"items": {
1465
+
"type": "object",
1466
+
"additionalProperties": false,
1467
+
"required": ["name", "version", "format", "sku"],
1468
+
"properties": {
1469
+
"name": {
1470
+
"type": "string",
1471
+
"title": "The name of the AI model.",
1472
+
"description": "Required. The name of the AI model."
1473
+
},
1474
+
"version": {
1475
+
"type": "string",
1476
+
"title": "The version of the AI model.",
1477
+
"description": "Required. The version of the AI model."
1478
+
},
1479
+
"format": {
1480
+
"type": "string",
1481
+
"title": "The format of the AI model.",
1482
+
"description": "Required. The format of the AI model. (Example: Microsoft, OpenAI)"
1483
+
},
1484
+
"sku": {
1485
+
"type": "object",
1486
+
"title": "The SKU configuration for the AI model.",
1487
+
"description": "Required. The SKU details for the AI model.",
1488
+
"additionalProperties": false,
1489
+
"required": ["name", "usageName", "capacity"],
1490
+
"properties": {
1491
+
"name": {
1492
+
"type": "string",
1493
+
"title": "The name of the SKU.",
1494
+
"description": "Required. The name of the SKU. (Example: GlobalStandard)"
1495
+
},
1496
+
"usageName": {
1497
+
"type": "string",
1498
+
"title": "The usage name of the SKU.",
1499
+
"description": "Required. The usage name of the SKU for billing purposes. (Example: AIServices.GlobalStandard.MaaS, OpenAI.GlobalStandard.gpt-4o-mini)"
1500
+
},
1501
+
"capacity": {
1502
+
"type": "integer",
1503
+
"title": "The capacity of the SKU.",
1504
+
"description": "Required. The capacity of the SKU."
0 commit comments