diff --git a/README.md b/README.md index 57587315..da6069ab 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Follow the quick deploy steps on the deployment guide to deploy this solution to
-> ⚠️ **Important: Check Azure OpenAI Quota Availability**
To ensure sufficient quota is available in your subscription, please follow [quota check instructions guide](./docs/Quota_Check.md) before you deploy the solution. +> ⚠️ **Important: Check Azure OpenAI Quota Availability**
To ensure sufficient quota is available in your subscription, please follow [quota check instructions guide](./docs/quota_check.md) before you deploy the solution.
diff --git a/infra/scripts/quota_check_params.sh b/infra/scripts/quota_check_params.sh index 29e8981a..7e562c56 100644 --- a/infra/scripts/quota_check_params.sh +++ b/infra/scripts/quota_check_params.sh @@ -221,7 +221,7 @@ for REGION in "${REGIONS[@]}"; do done done -if { [ "$IS_USER_PROVIDED_PAIRS" = true ] && [ "$INSUFFICIENT_QUOTA" = false ] && [ "$FOUND" = true ]; } || { [ "$TEXT_EMBEDDING_AVAILABLE" = true ] && { [ "$APPLY_OR_CONDITION" != true ] || [ "$AT_LEAST_ONE_MODEL_AVAILABLE" = true ]; }; }; then +if { [ "$IS_USER_PROVIDED_PAIRS" = true ] && [ "$INSUFFICIENT_QUOTA" = false ] && [ "$FOUND" = true ]; } || { [ "$APPLY_OR_CONDITION" != true ] || [ "$AT_LEAST_ONE_MODEL_AVAILABLE" = true ]; }; then VALID_REGIONS+=("$REGION") TABLE_ROWS+=("${TEMP_TABLE_ROWS[@]}") INDEX=$((INDEX + 1))