Skip to content

Commit dfa9b36

Browse files
updated the message
1 parent c9e541b commit dfa9b36

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

infra/scripts/validate_model_quota.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ if ($FallbackRegions.Count -gt 0) {
9696
Write-Host "$($region.Region) (Available: $($region.Available))"
9797
}
9898

99-
Write-Host "`n🔧 To proceed, update the 'AZURE_OPENAI_LOCATION' value in the 'main.bicepparam' file, then run:"
99+
Write-Host "`n🔧 To proceed, run:"
100100
Write-Host " azd env set AZURE_OPENAI_LOCATION '<region>'"
101+
Write-Host "📌 To confirm it's set correctly, run:"
102+
Write-Host " azd env get-value AZURE_OPENAI_LOCATION"
101103
exit 2
102104
}
103105

infra/scripts/validate_model_quota.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ if [[ "${#FALLBACK_REGIONS[@]}" -gt 0 ]]; then
8888
for fallback in "${FALLBACK_REGIONS[@]}"; do
8989
echo "$fallback"
9090
done
91-
echo -e "\n🔧 To proceed, update the 'AZURE_OPENAI_LOCATION' value in the 'main.bicepparam' file, then run:"
91+
echo -e "\n🔧 To proceed, run:"
9292
echo " azd env set AZURE_OPENAI_LOCATION '<region>'"
93+
echo "📌 To confirm it's set correctly, run:"
94+
echo " azd env get-value AZURE_OPENAI_LOCATION"
9395
exit 2
9496
fi
9597

0 commit comments

Comments
 (0)