Skip to content

Commit 4c38de9

Browse files
committed
Line edits3
1 parent 54ed34f commit 4c38de9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

learn-pr/azure/open-ai-dotnet-text-completions/includes/4-exercise-install-sdk-create-completion.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,10 @@ Creating the resource and deploying the model is a multi-step process. Use the A
8181
-n HikingConversationsAI \
8282
--deployment-name HikingRecommendationTurbo \
8383
--model-name gpt-35-turbo \
84-
--model-version "0301" \
84+
--model-version "0125" \
8585
--model-format OpenAI \
86-
--scale-settings-scale-type "Standard"
86+
--sku-capacity 1
87+
--sku-name "Standard"
8788
```
8889
8990
::: zone-end
@@ -96,9 +97,9 @@ Creating the resource and deploying the model is a multi-step process. Use the A
9697
-n HikingConversationsAI `
9798
--deployment-name HikingRecommendationTurbo `
9899
--model-name gpt-35-turbo `
99-
--model-version "0301" `
100-
--model-format OpenAI `
101-
--scale-settings-scale-type "Standard"
100+
--model-version "0125" `
101+
--sku-capacity 1
102+
--sku-name "Standard"
102103
```
103104
104105
::: zone-end

learn-pr/azure/open-ai-dotnet-text-completions/includes/6-exercise-improve-completion-quality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The previous request only said the hike should be strenuous with a great view. L
5959
a view that is amazing. I don't mind driving for a long time, even if it's over the pass.
6060
I've heard the Enchantments are nice.
6161
I don't want the hike to be over 10 miles round trip. I'd consider a point-to-point hike.
62-
I want the hike to be as seculuded as possible. I don't want to see many people.
62+
I want the hike to be as secluded as possible. I don't want to see many people.
6363
I would like it to be as bug free as possible. I would also like to avoid any Forest Service roads.
6464
""";
6565
```

0 commit comments

Comments
 (0)