diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 308ebdf5..38220074 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,7 +14,7 @@ on: workflow_dispatch: env: - GPT_MIN_CAPACITY: 200 + GPT_MIN_CAPACITY: 150 BRANCH_NAME: ${{ github.head_ref || github.ref_name }} jobs: diff --git a/docs/quota_check.md b/docs/quota_check.md index ca3894d0..3f922743 100644 --- a/docs/quota_check.md +++ b/docs/quota_check.md @@ -11,7 +11,7 @@ azd auth login ### 📌 Default Models & Capacities: ``` -gpt-4o:5 +gpt-4o:150 ``` ### 📌 Default Regions: ``` @@ -37,7 +37,7 @@ eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southc ``` ✔️ Check specific model(s) in default regions: ``` - ./quota_check_params.sh --models gpt-4o:30 + ./quota_check_params.sh --models gpt-4o:150 ``` ✔️ Check default models in specific region(s): ``` @@ -45,11 +45,11 @@ eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southc ``` ✔️ Passing Both models and regions: ``` - ./quota_check_params.sh --models gpt-4o:30 --regions eastus,westus2 + ./quota_check_params.sh --models gpt-4o:150 --regions eastus,westus2 ``` ✔️ All parameters combined: ``` - ./quota_check_params.sh --models gpt-4:30 --regions eastus,westus --verbose + ./quota_check_params.sh --models gpt-4:150 --regions eastus,westus --verbose ``` ### **Sample Output** diff --git a/scripts/quota_check_params.sh b/scripts/quota_check_params.sh index fa10db24..f706c0bb 100644 --- a/scripts/quota_check_params.sh +++ b/scripts/quota_check_params.sh @@ -46,7 +46,7 @@ log_verbose() { } # Default Models and Capacities (Comma-separated in "model:capacity" format) -DEFAULT_MODEL_CAPACITY="gpt-4o:5" +DEFAULT_MODEL_CAPACITY="gpt-4o:150" # Convert the comma-separated string into an array IFS=',' read -r -a MODEL_CAPACITY_PAIRS <<< "$DEFAULT_MODEL_CAPACITY"