We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b420194 commit d5daccaCopy full SHA for d5dacca
1 file changed
scripts/validate_model_quota.sh
@@ -194,6 +194,13 @@ fi
194
# ---------- Start Process ----------
195
echo -e "\n🔍 Checking quota in the requested region '$LOCATION'..."
196
if check_quota "$LOCATION"; then
197
+ if (( CAPACITY < RECOMMENDED_TOKENS )); then
198
+ print_recommended_warning "$CAPACITY"
199
+ prompt_yes_no "❓ Proceed anyway? (y/n): " || {
200
+ ask_for_location
201
+ exit 0
202
+ }
203
+ fi
204
update_env_and_parameters "$LOCATION" "$CAPACITY"
205
echo "✅ Proceeding with deployment in '$LOCATION'."
206
exit 0
0 commit comments