11## Check Quota Availability Before Deployment
22
3- Before deploying the accelerator, ** ensure sufficient quota availability** for the required model.
3+ Before deploying the accelerator, ** ensure sufficient quota availability** for the required model.
4+ > ** For Global Standard | GPT-4o - the capacity to at least 150k tokens post-deployment for optimal performance.**
5+
6+ > ** For Standard | GPT-4 - ensure a minimum of 30k–40k tokens for best results.**
47
58### Login if you have not done so already
69```
@@ -21,27 +24,34 @@ eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southc
2124- Only model(s) provided → The script will check for those models in the default regions.
2225- Only region(s) provided → The script will check default models in the specified regions.
2326- Both models and regions provided → The script will check those models in the specified regions.
27+ - ` --verbose ` passed → Enables detailed logging output for debugging and traceability.
2428
2529### ** Input Formats**
26- ✔️ Run without parameters to check default models & regions:
30+ > Use the --models, --regions, and --verbose options for parameter handling:
31+
32+ ✔️ Run without parameters to check default models & regions without verbose logging:
2733 ```
2834 ./quota_check_params.sh
2935 ```
30- ✔️ Model name and required capacity in the format:
36+ ✔️ Enable verbose logging:
37+ ```
38+ ./quota_check_params.sh --verbose
39+ ```
40+ ✔️ Check specific model(s) in default regions:
3141 ```
32- ./quota_check_params.sh gpt-4o:30
42+ ./quota_check_params.sh --models gpt-4o:30,text-embedding-ada-002:80
3343 ```
34- ✔️ Multiple models can be passed, separated by commas :
44+ ✔️ Check default models in specific region(s) :
3545 ```
36- ./quota_check_params.sh gpt-4o:30,text-embedding-ada-002:80
46+ ./quota_check_params.sh --regions eastus,westus
3747 ```
3848✔️ Passing Both models and regions:
3949 ```
40- ./quota_check_params.sh gpt-4o:30 eastus,westus2
50+ ./quota_check_params.sh --models gpt-4o:30 --regions eastus,westus2
4151 ```
42- ✔️ Check default models in specific regions :
52+ ✔️ All parameters combined :
4353 ```
44- ./quota_check_params.sh "" eastus,westus2
54+ ./quota_check_params.sh --models gpt-4:30,text-embedding-ada-002:80 --regions eastus,westus --verbose
4555 ```
4656
4757### ** Sample Output**
0 commit comments