Skip to content

Commit b30ad04

Browse files
Merge pull request #658 from microsoft/quota-check-params-file-update
chore: quota check params file update
2 parents 565bb9e + be68893 commit b30ad04

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

docs/quota_check.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ azd auth login
1111

1212
### 📌 Default Models & Capacities:
1313
```
14-
gpt-4o:150
14+
gpt4.1:150,o4-mini:50,gpt4.1-mini:50
1515
```
1616
### 📌 Default Regions:
1717
```
18-
eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southcentralus, canadacentral
18+
australiaeast, eastus2, francecentral, japaneast, norwayeast, swedencentral, uksouth, westus
1919
```
2020
### Usage Scenarios:
2121
- No parameters passed → Default models and capacities will be checked in default regions.
@@ -37,19 +37,23 @@ eastus, uksouth, eastus2, northcentralus, swedencentral, westus, westus2, southc
3737
```
3838
✔️ Check specific model(s) in default regions:
3939
```
40-
./quota_check_params.sh --models gpt-4o:150
40+
./quota_check_params.sh --models gpt4.1:150
4141
```
4242
✔️ Check default models in specific region(s):
4343
```
44-
./quota_check_params.sh --regions eastus,westus
44+
./quota_check_params.sh --regions eastus2,westus
4545
```
4646
✔️ Passing Both models and regions:
4747
```
48-
./quota_check_params.sh --models gpt-4o:150 --regions eastus,westus2
48+
./quota_check_params.sh --models gpt4.1:150 --regions eastus2,westus
4949
```
5050
✔️ All parameters combined:
5151
```
52-
./quota_check_params.sh --models gpt-4o:150 --regions eastus,westus --verbose
52+
./quota_check_params.sh --models gpt4.1:150 --regions eastus2,westus --verbose
53+
```
54+
✔️ Multiple models with single region:
55+
```
56+
./quota_check_params.sh --models gpt4.1:150,gpt4.1-mini:50 --regions eastus2 --verbose
5357
```
5458

5559
### **Sample Output**

infra/scripts/quota_check_params.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ log_verbose() {
4747
}
4848

4949
# Default Models and Capacities (Comma-separated in "model:capacity" format)
50-
DEFAULT_MODEL_CAPACITY="gpt-4o:150"
50+
DEFAULT_MODEL_CAPACITY="gpt4.1:150,o4-mini:50,gpt4.1-mini:50"
5151
# Convert the comma-separated string into an array
5252
IFS=',' read -r -a MODEL_CAPACITY_PAIRS <<< "$DEFAULT_MODEL_CAPACITY"
5353

0 commit comments

Comments
 (0)