Skip to content

Commit eebfd10

Browse files
chore: update model name from gpt-4.1-mini to gpt4.1-mini (#754)
* update model name from gpt-4.1-mini to gpt4.1-mini * update model name from gpt-4.1-mini to gpt4.1-mini * removed security control tag
1 parent b467e87 commit eebfd10

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/QuotaCheck.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Check Quota Availability Before Deployment
22

33
Before deploying the accelerator, **ensure sufficient quota availability** for the required model.
4-
> **For Global Standard | gpt-4.1-mini - increase the capacity to at least 50K tokens for optimal performance.**
4+
> **For Global Standard | gpt4.1-mini - increase the capacity to at least 50K tokens for optimal performance.**
55
66
### Login if you have not done so already
77
```
@@ -11,7 +11,7 @@ azd auth login
1111

1212
### 📌 Default Models & Capacities:
1313
```
14-
gpt-4.1-mini:30, text-embedding-ada-002:45
14+
gpt4.1-mini:30, text-embedding-ada-002:45
1515
```
1616
### 📌 Default Regions:
1717
```
@@ -37,19 +37,19 @@ australiaeast, francecentral, japaneast, northcentralus, southcentralus, westus,
3737
```
3838
✔️ Check specific model(s) in default regions:
3939
```
40-
./quota_check_params.sh --models gpt-4.1-mini:30,text-embedding-ada-002:45
40+
./quota_check_params.sh --models gpt4.1-mini:30,text-embedding-ada-002:45
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-4.1-mini:30 --regions eastus,westus
48+
./quota_check_params.sh --models gpt4.1-mini:30 --regions eastus,westus
4949
```
5050
✔️ All parameters combined:
5151
```
52-
./quota_check_params.sh --models gpt-4.1-mini:30,text-embedding-ada-002:45 --regions eastus,westus --verbose
52+
./quota_check_params.sh --models gpt4.1-mini:30,text-embedding-ada-002:45 --regions eastus,westus --verbose
5353
```
5454

5555
### **Sample Output**

infra/scripts/checkquota.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ echo "✅ Azure subscription set successfully."
3232

3333
# Define models and their minimum required capacities
3434
declare -A MIN_CAPACITY=(
35-
["OpenAI.Standard.gpt-4.1-mini"]=$GPT_MIN_CAPACITY
35+
["OpenAI.GlobalStandard.gpt4.1-mini"]=$GPT_MIN_CAPACITY
3636
["OpenAI.GlobalStandard.text-embedding-ada-002"]=$TEXT_EMBEDDING_MIN_CAPACITY
3737
)
3838

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-4.1-mini:30,text-embedding-ada-002:45"
50+
DEFAULT_MODEL_CAPACITY="gpt4.1-mini:30,text-embedding-ada-002:45"
5151

5252
# Convert the comma-separated string into an array
5353
IFS=',' read -r -a MODEL_CAPACITY_PAIRS <<< "$DEFAULT_MODEL_CAPACITY"

0 commit comments

Comments
 (0)