Skip to content

Commit 5778a0a

Browse files
Merge pull request #171 from microsoft/update-model-capacity-similar-to-bicep
fix: updated model capacity minimum to 150
2 parents 04d5baf + 27167a1 commit 5778a0a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
workflow_dispatch:
1515

1616
env:
17-
GPT_MIN_CAPACITY: 200
17+
GPT_MIN_CAPACITY: 150
1818
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
1919

2020
jobs:

docs/quota_check.md

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

1212
### 📌 Default Models & Capacities:
1313
```
14-
gpt-4o:5
14+
gpt-4o:150
1515
```
1616
### 📌 Default Regions:
1717
```
@@ -37,19 +37,19 @@ 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:30
40+
./quota_check_params.sh --models gpt-4o:150
4141
```
4242
✔️ Check default models in specific region(s):
4343
```
4444
./quota_check_params.sh --regions eastus,westus
4545
```
4646
✔️ Passing Both models and regions:
4747
```
48-
./quota_check_params.sh --models gpt-4o:30 --regions eastus,westus2
48+
./quota_check_params.sh --models gpt-4o:150 --regions eastus,westus2
4949
```
5050
✔️ All parameters combined:
5151
```
52-
./quota_check_params.sh --models gpt-4:30 --regions eastus,westus --verbose
52+
./quota_check_params.sh --models gpt-4:150 --regions eastus,westus --verbose
5353
```
5454

5555
### **Sample Output**

scripts/quota_check_params.sh

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

4848
# Default Models and Capacities (Comma-separated in "model:capacity" format)
49-
DEFAULT_MODEL_CAPACITY="gpt-4o:5"
49+
DEFAULT_MODEL_CAPACITY="gpt-4o:150"
5050
# Convert the comma-separated string into an array
5151
IFS=',' read -r -a MODEL_CAPACITY_PAIRS <<< "$DEFAULT_MODEL_CAPACITY"
5252

0 commit comments

Comments
 (0)