Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/QuotaCheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ azd auth login

### 📌 Default Models & Capacities:
```
gpt-4.1:30, text-embedding-ada-002:80, gpt-4:30
gpt4.1:30, text-embedding-ada-002:80, gpt-4:30
```
### 📌 Default Regions:
```
eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southcentralus, canadacentral
francecentral, australiaeast, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southcentralus
```
### Usage Scenarios:
- No parameters passed → Default models and capacities will be checked in default regions.
Expand All @@ -40,19 +40,19 @@ eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southc
```
✔️ Check specific model(s) in default regions:
```
./quota_check_params.sh --models gpt-4.1:30,text-embedding-ada-002:80
./quota_check_params.sh --models gpt4.1:30,text-embedding-ada-002:80
```
✔️ Check default models in specific region(s):
```
./quota_check_params.sh --regions eastus,westus
./quota_check_params.sh --regions eastus2,westus
```
✔️ Passing Both models and regions:
```
./quota_check_params.sh --models gpt-4.1:30 --regions eastus,westus2
./quota_check_params.sh --models gpt4.1:30 --regions eastus2,westus2
```
✔️ All parameters combined:
```
./quota_check_params.sh --models gpt-4:30,text-embedding-ada-002:80 --regions eastus,westus --verbose
./quota_check_params.sh --models gpt-4:30,text-embedding-ada-002:80 --regions eastus2,westus --verbose
```

### **Sample Output**
Expand Down
2 changes: 1 addition & 1 deletion scripts/quota_check_params.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ az account set --subscription "$AZURE_SUBSCRIPTION_ID"
echo "🎯 Active Subscription: $(az account show --query '[name, id]' --output tsv)"

# Default Regions to check (Comma-separated, now configurable)
DEFAULT_REGIONS="eastus,uksouth,eastus2,northcentralus,swedencentral,westus,westus2,southcentralus,canadacentral"
DEFAULT_REGIONS="francecentral,australiaeast,uksouth,eastus2,northcentralus,swedencentral,westus,westus2,southcentralus,canadacentral"
IFS=',' read -r -a DEFAULT_REGION_ARRAY <<< "$DEFAULT_REGIONS"

# Read parameters (if any)
Expand Down
Loading