Skip to content

Commit 9131ab9

Browse files
azureOpenAIApiVersion version changed
1 parent 30b85ce commit 9131ab9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

documents/CustomizingAzdParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ By default this template will use the environment name as the prefix to prevent
1616
| `AZURE_OPEN_AI_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the model deployment type (allowed: `Standard`, `GlobalStandard`). |
1717
| `AZURE_OPEN_AI_DEPLOYMENT_MODEL` | string | `gpt-4o-mini` | Specifies the GPT model name (e.g., `gpt-4`, `gpt-4o-mini`). |
1818
| `AZURE_ENV_MODEL_VERSION` | string | `2024-07-18` | Sets the Azure model version (allowed: `2024-08-06`, etc.). |
19-
| `AZURE_ENV_OPENAI_API_VERSION` | string | `2024-02-15-preview` | Specifies the API version for Azure OpenAI. |
19+
| `AZURE_ENV_OPENAI_API_VERSION` | string | `2025-01-01-preview` | Specifies the API version for Azure OpenAI. |
2020
| `AZURE_OPEN_AI_DEPLOYMENT_MODEL_CAPACITY` | integer | `30` | Sets the GPT model capacity. |
2121
| `AZURE_OPENAI_EMBEDDING_MODEL` | string | `text-embedding-ada-002` | Sets the name of the embedding model to use. |
2222
| `AZURE_ENV_IMAGETAG` | string | `latest` | Sets the image tag (`latest`, `dev`, `hotfix`, etc.). |

documents/DeploymentGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ When you start the deployment, most parameters will have **default values**, but
114114
| **Deployment Type** | Select from a drop-down list (allowed: `Standard`, `GlobalStandard`). | GlobalStandard |
115115
| **GPT Model** | Choose from **gpt-4, gpt-4o, gpt-4o-mini**. | gpt-4o-mini |
116116
| **GPT Model Version** | The version of the selected GPT model. | 2024-07-18 |
117-
| **OpenAI API Version** | The Azure OpenAI API version to use. | 2024-02-15-preview |
117+
| **OpenAI API Version** | The Azure OpenAI API version to use. | 2025-01-01-preview |
118118
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models** (in thousands). | 30k |
119119
| **Embedding Model** | Default: **text-embedding-ada-002**. | text-embedding-ada-002 |
120120
| **Embedding Model Capacity** | Set the capacity for **embedding models** (in thousands). | 80k |

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ param gptModelName string = 'gpt-4o-mini'
3737
@description('Version of the GPT model to deploy:')
3838
param gptModelVersion string = '2024-07-18'
3939

40-
param azureOpenAIApiVersion string = '2024-02-15-preview'
40+
param azureOpenAIApiVersion string = '2025-01-01-preview'
4141

4242
@minValue(10)
4343
@description('Capacity of the GPT deployment:')

infra/main.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ param secondaryLocation = readEnvironmentVariable('AZURE_SECONDARY_LOCATION', 'e
77
param deploymentType = readEnvironmentVariable('AZURE_OPEN_AI_MODEL_DEPLOYMENT_TYPE', 'GlobalStandard')
88
param gptModelName = readEnvironmentVariable('AZURE_OPEN_AI_DEPLOYMENT_MODEL', 'gpt-4o-mini')
99
param gptModelVersion = readEnvironmentVariable('AZURE_ENV_MODEL_VERSION', '2024-07-18')
10-
param azureOpenAIApiVersion = readEnvironmentVariable('AZURE_ENV_OPENAI_API_VERSION', '2024-02-15-preview')
10+
param azureOpenAIApiVersion = readEnvironmentVariable('AZURE_ENV_OPENAI_API_VERSION', '2025-01-01-preview')
1111
param gptDeploymentCapacity = int(readEnvironmentVariable('AZURE_OPEN_AI_DEPLOYMENT_MODEL_CAPACITY', '30'))
1212
param embeddingModel = readEnvironmentVariable('AZURE_OPENAI_EMBEDDING_MODEL', 'text-embedding-ada-002')
1313
param imageTag = readEnvironmentVariable('AZURE_ENV_IMAGETAG', 'latest')

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.13.18514",
8-
"templateHash": "10443631554148202816"
8+
"templateHash": "5982985115581765540"
99
}
1010
},
1111
"parameters": {
@@ -73,7 +73,7 @@
7373
},
7474
"azureOpenAIApiVersion": {
7575
"type": "string",
76-
"defaultValue": "2024-02-15-preview"
76+
"defaultValue": "2025-01-01-preview"
7777
},
7878
"gptDeploymentCapacity": {
7979
"type": "int",

0 commit comments

Comments
 (0)