Skip to content

Commit 3b9dcea

Browse files
Merge pull request #3974 from voutilad/cross-region-typo
Fix typo: ProvisionedStandard -> ProvisionedManaged
2 parents 1ddb9a4 + bec6098 commit 3b9dcea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-services/openai/how-to/fine-tuning-deploy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Provisioned Managed fine-tuned deployments currently support structured outputs
397397

398398
To create a new deployment, make an HTTP PUT call via the [Deployments - Create or Update REST API](/rest/api/aiservices/accountmanagement/deployments/create-or-update?view=rest-aiservices-accountmanagement-2024-10-01&tabs=HTTP&preserve-view=true). The approach is similar to performing [cross region deployment](#cross-region-deployment) with the following exceptions:
399399

400-
- You must provide a `sku` name of `ProvisionedStandard`.
400+
- You must provide a `sku` name of `ProvisionedManaged`.
401401
- The capacity must be declared in PTUs.
402402
- The `api-version` must be `2024-10-01` or newer.
403403
- The HTTP method should be `PUT`.
@@ -409,7 +409,7 @@ curl -X PUT "https://management.azure.com/subscriptions/<SUBSCRIPTION>/resourceG
409409
-H "Authorization: Bearer <TOKEN>" \
410410
-H "Content-Type: application/json" \
411411
-d '{
412-
"sku": {"name": "ProvisionedStandard", "capacity": 25},
412+
"sku": {"name": "ProvisionedManaged", "capacity": 25},
413413
"properties": {
414414
"model": {
415415
"format": "OpenAI",
@@ -432,7 +432,7 @@ curl -X PUT "https://management.azure.com/subscriptions/<SUBSCRIPTION>/resourceG
432432
-H "Authorization: Bearer <TOKEN>" \
433433
-H "Content-Type: application/json" \
434434
-d '{
435-
"sku": {"name": "ProvisionedStandard", "capacity": 40},
435+
"sku": {"name": "ProvisionedManaged", "capacity": 40},
436436
"properties": {
437437
"model": {
438438
"format": "OpenAI",

0 commit comments

Comments
 (0)