Skip to content

Commit ff71f57

Browse files
2 parents 1138506 + a53bf13 commit ff71f57

File tree

4 files changed

+58
-18
lines changed

4 files changed

+58
-18
lines changed

docs/CustomizingAzdParameters.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,20 @@ By default this template will use the environment name as the prefix to prevent
1212
| `AZURE_LOCATION` | string | `<User selects during deployment>` | Location of the Azure resources. Controls where the infrastructure will be deployed. |
1313
| `AZURE_ENV_OPENAI_LOCATION` | string | `<User selects during deployment>` | Specifies the region for OpenAI resource deployment. |
1414
| `AZURE_ENV_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
15-
| `AZURE_ENV_MODEL_NAME` | string | `gpt-4o` | Specifies the name of the GPT model to be deployed. |
16-
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `<Existing Workspace Id>` | Set this if you want to reuse an AI Foundry Project instead of creating a new one. |
17-
| `AZURE_ENV_MODEL_VERSION` | string | `2024-08-06` | Version of the GPT model to be used for deployment. |
18-
| `AZURE_ENV_MODEL_CAPACITY` | int | `150` | Sets the GPT model capacity. |
19-
| `AZURE_ENV_IMAGETAG` | string | `latest` | Docker image tag used for container deployments. |
15+
| `AZURE_ENV_MODEL_NAME` | string | `gpt-4.1-mini` | Specifies the name of the GPT model to be deployed. |
16+
| `AZURE_ENV_MODEL_VERSION` | string | `2025-04-14` | Version of the GPT model to be used for deployment. |
17+
| `AZURE_ENV_MODEL_CAPACITY` | int | `50` | Sets the GPT model capacity. |
18+
| `AZURE_ENV_MODEL_4_1_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
19+
| `AZURE_ENV_MODEL_4_1_NAME` | string | `gpt-4.1` | Specifies the name of the GPT model to be deployed. |
20+
| `AZURE_ENV_MODEL_4_1_VERSION` | string | `2025-04-14` | Version of the GPT model to be used for deployment. |
21+
| `AZURE_ENV_MODEL_4_1_CAPACITY` | int | `150` | Sets the GPT model capacity. |
22+
| `AZURE_ENV_REASONING_MODEL_DEPLOYMENT_TYPE` | string | `GlobalStandard` | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
23+
| `AZURE_ENV_REASONING_MODEL_NAME` | string | `o4-mini` | Specifies the name of the reasoning GPT model to be deployed. |
24+
| `AZURE_ENV_REASONING_MODEL_VERSION` | string | `2025-04-16` | Version of the reasoning GPT model to be used for deployment. |
25+
| `AZURE_ENV_REASONING_MODEL_CAPACITY` | int | `50` | Sets the reasoning GPT model capacity. |
26+
| `AZURE_ENV_IMAGETAG` | string | `latest_v3` | Docker image tag used for container deployments. |
2027
| `AZURE_ENV_ENABLE_TELEMETRY` | bool | `true` | Enables telemetry for monitoring and diagnostics. |
28+
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `<Existing Workspace Id>` | Set this if you want to reuse an AI Foundry Project instead of creating a new one. |
2129
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | Guide to get your [Existing Workspace ID](/docs/re-use-log-analytics.md) | Set this if you want to reuse an existing Log Analytics Workspace instead of creating a new one. |
2230
| `AZURE_ENV_VM_ADMIN_USERNAME` | string | `take(newGuid(), 20)` | The administrator username for the virtual machine. |
2331
| `AZURE_ENV_VM_ADMIN_PASSWORD` | string | `newGuid()` | The administrator password for the virtual machine. |

docs/DeploymentGuide.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,6 @@ Consider the following settings during your deployment to modify specific settin
185185

186186
When you start the deployment, most parameters will have **default values**, but you can update the following settings [here](../docs/CustomizingAzdParameters.md):
187187

188-
| **Setting** | **Description** | **Default value** |
189-
| ------------------------------ | ------------------------------------------------------------------------------------ | ----------------- |
190-
| **Environment Name** | Used as a prefix for all resource names to ensure uniqueness across environments. | macae |
191-
| **Azure Region** | Location of the Azure resources. Controls where the infrastructure will be deployed. | swedencentral |
192-
| **OpenAI Deployment Location** | Specifies the region for OpenAI resource deployment. | swedencentral |
193-
| **Model Deployment Type** | Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). | GlobalStandard |
194-
| **GPT Model Name** | Specifies the name of the GPT model to be deployed. | gpt-4o |
195-
| **GPT Model Version** | Version of the GPT model to be used for deployment. | 2024-08-06 |
196-
| **GPT Model Capacity** | Sets the GPT model capacity. | 150 |
197-
| **Image Tag** | Docker image tag used for container deployments. | latest |
198-
| **Enable Telemetry** | Enables telemetry for monitoring and diagnostics. | true |
199-
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID instead of creating a new one. | *(none)* |
200-
| **Existing Azure AI Foundry Project** | To reuse an existing Azure AI Foundry Project ID instead of creating a new one. | *(none)* |
201188

202189
</details>
203190

infra/main.parameters.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,30 @@
2323
"gptModelCapacity": {
2424
"value": "${AZURE_ENV_MODEL_CAPACITY}"
2525
},
26+
"gpt4_1ModelDeploymentType": {
27+
"value": "${AZURE_ENV_MODEL_4_1_DEPLOYMENT_TYPE}"
28+
},
29+
"gpt4_1ModelName": {
30+
"value": "${AZURE_ENV_MODEL_4_1_NAME}"
31+
},
32+
"gpt4_1ModelVersion": {
33+
"value": "${AZURE_ENV_MODEL_4_1_VERSION}"
34+
},
2635
"gpt4_1ModelCapacity": {
2736
"value": "${AZURE_ENV_MODEL_4_1_CAPACITY}"
2837
},
38+
"gptReasoningModelDeploymentType": {
39+
"value": "${AZURE_ENV_REASONING_MODEL_DEPLOYMENT_TYPE}"
40+
},
41+
"gptReasoningModelName": {
42+
"value": "${AZURE_ENV_REASONING_MODEL_NAME}"
43+
},
44+
"gptReasoningModelVersion": {
45+
"value": "${AZURE_ENV_REASONING_MODEL_VERSION}"
46+
},
47+
"gptReasoningModelCapacity": {
48+
"value": "${AZURE_ENV_REASONING_MODEL_CAPACITY}"
49+
},
2950
"backendContainerImageTag": {
3051
"value": "${AZURE_ENV_IMAGE_TAG=latest_v3}"
3152
},

infra/main.waf.parameters.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,30 @@
2323
"gptModelCapacity": {
2424
"value": "${AZURE_ENV_MODEL_CAPACITY}"
2525
},
26+
"gpt4_1ModelDeploymentType": {
27+
"value": "${AZURE_ENV_MODEL_4_1_DEPLOYMENT_TYPE}"
28+
},
29+
"gpt4_1ModelName": {
30+
"value": "${AZURE_ENV_MODEL_4_1_NAME}"
31+
},
32+
"gpt4_1ModelVersion": {
33+
"value": "${AZURE_ENV_MODEL_4_1_VERSION}"
34+
},
35+
"gpt4_1ModelCapacity": {
36+
"value": "${AZURE_ENV_MODEL_4_1_CAPACITY}"
37+
},
38+
"gptReasoningModelDeploymentType": {
39+
"value": "${AZURE_ENV_REASONING_MODEL_DEPLOYMENT_TYPE}"
40+
},
41+
"gptReasoningModelName": {
42+
"value": "${AZURE_ENV_REASONING_MODEL_NAME}"
43+
},
44+
"gptReasoningModelVersion": {
45+
"value": "${AZURE_ENV_REASONING_MODEL_VERSION}"
46+
},
47+
"gptReasoningModelCapacity": {
48+
"value": "${AZURE_ENV_REASONING_MODEL_CAPACITY}"
49+
},
2650
"backendContainerImageTag": {
2751
"value": "${AZURE_ENV_IMAGE_TAG=latest_v3}"
2852
},

0 commit comments

Comments
 (0)