Skip to content

Commit 8cb8fe6

Browse files
model back to gpt4o due to more availability regions
1 parent cdf8856 commit 8cb8fe6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
environmentName="${{ env.SOLUTION_PREFIX }}" \
117117
secondaryLocation="eastus2" \
118118
deploymentType="Standard" \
119-
gptModelName="gpt-4" \
119+
gptModelName="gpt-4o" \
120120
azureOpenaiAPIVersion="2024-05-01-preview" \
121121
gptDeploymentCapacity="10" \
122122
embeddingModel="text-embedding-ada-002" \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ When you start the deployment, most parameters will have **default values**, but
7676
| **Azure Region** | The region where resources will be created. | East US|
7777
| **Environment Name** | A **3-20 character alphanumeric value** used to generate a unique ID to prefix the resources. | byctemplate |
7878
| **Secondary Location** | A **less busy** region for **Azure SQL and CosmosDB**, useful in case of availability constraints. | eastus2 |
79-
| **Deployment Type** | Select from a drop-down list. | Standard |
80-
| **GPT Model** | Choose from **gpt-4, gpt-4o** | gpt-4 |
79+
| **Deployment Type** | Select from a drop-down list. | Global Standard |
80+
| **GPT Model** | Choose from **gpt-4, gpt-4o** | gpt-4o |
8181
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models**. | 30k |
8282
| **Embedding Model** | Default: **text-embedding-ada-002**. | text-embedding-ada-002 |
8383
| **Embedding Model Capacity** | Set the capacity for **embedding models**. | 80k |

docs/CustomizingAzdParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ azd env set AZURE_ENV_MODEL_DEPLOYMENT_TYPE Standard
2121
Set the Model Name (allowed values: gpt-4, gpt-4o)
2222

2323
```shell
24-
azd env set AZURE_ENV_MODEL_NAME gpt-4
24+
azd env set AZURE_ENV_MODEL_NAME gpt-4o
2525
```
2626

2727
Change the Model Capacity (choose a number based on available GPT model capacity in your subscription)

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ param deploymentType string = 'Standard'
3333
'gpt-4o'
3434
'gpt-4'
3535
])
36-
param gptModelName string = 'gpt-4'
36+
param gptModelName string = 'gpt-4o'
3737

3838
param azureOpenaiAPIVersion string = '2024-05-01-preview'
3939

infra/main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.33.93.31351",
8-
"templateHash": "15906054451527240113"
8+
"templateHash": "1032022147181821826"
99
}
1010
},
1111
"parameters": {
@@ -41,7 +41,7 @@
4141
},
4242
"gptModelName": {
4343
"type": "string",
44-
"defaultValue": "gpt-4",
44+
"defaultValue": "gpt-4o",
4545
"allowedValues": [
4646
"gpt-4o",
4747
"gpt-4"

0 commit comments

Comments
 (0)