File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed
Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ param AZURE_LOCATION string = ''
2020 type : 'location'
2121 usageName : [
2222 'OpenAI.GlobalStandard.gpt4.1,150'
23- 'OpenAI.Standard .text-embedding-ada-002,80'
23+ 'OpenAI.GlobalStandard .text-embedding-ada-002,80'
2424 ]
2525 }
2626})
Original file line number Diff line number Diff line change 3939 "type" : " location" ,
4040 "usageName" : [
4141 " OpenAI.GlobalStandard.gpt4.1,150" ,
42- " OpenAI.Standard .text-embedding-ada-002,80"
42+ " OpenAI.GlobalStandard .text-embedding-ada-002,80"
4343 ]
4444 },
4545 "description" : " Location for AI deployments. This should be a valid Azure region where OpenAI services are available."
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ declare -A MIN_CAPACITY=(
3535
3636 [" OpenAI.GlobalStandard.gpt4.1" ]=$GPT_MIN_CAPACITY
3737
38- [" OpenAI.Standard .text-embedding-ada-002" ]=$TEXT_EMBEDDING_MIN_CAPACITY
38+ [" OpenAI.GlobalStandard .text-embedding-ada-002" ]=$TEXT_EMBEDDING_MIN_CAPACITY
3939)
4040
4141VALID_REGION=" "
Original file line number Diff line number Diff line change @@ -165,11 +165,7 @@ for REGION in "${REGIONS[@]}"; do
165165 FOUND=false
166166 INSUFFICIENT_QUOTA=false
167167
168- if [ " $MODEL_NAME " = " text-embedding-ada-002" ]; then
169- MODEL_TYPES=(" openai.standard.$MODEL_NAME " )
170- else
171- MODEL_TYPES=(" openai.standard.$MODEL_NAME " " openai.globalstandard.$MODEL_NAME " )
172- fi
168+ MODEL_TYPES=(" openai.standard.$MODEL_NAME " " openai.globalstandard.$MODEL_NAME " )
173169
174170 for MODEL_TYPE in " ${MODEL_TYPES[@]} " ; do
175171 FOUND=false
You can’t perform that action at this time.
0 commit comments