You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Removed reasoning model parameters and related logic from Bicep and JSON templates.
- Updated deployment capacity defaults for GPT models.
- Added private endpoint configurations for Azure Container Registry based on networking settings.
- Adjusted scripts for building and pushing images to temporarily relax ACR restrictions during WAF deployments.
- Enhanced WebSocket handling in the frontend to coalesce streaming messages for improved UI performance.
- Updated backend configuration to reflect changes in reasoning model naming and supported models.
- Improved agent handling logic in the orchestration layer to prevent infinite loops during approval processes.
Copy file name to clipboardExpand all lines: data/agent_teams/retail.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@
43
43
"input_key": "",
44
44
"type": "",
45
45
"name": "AnalysisRecommendationAgent",
46
-
"deployment_name": "gpt-5.4-mini-reasoning",
46
+
"deployment_name": "gpt-5.4-mini",
47
47
"icon": "",
48
48
"system_message": "You are a reasoning agent that can analyze customer and order data and provide recommendations for improving customer satisfaction and retention. You do not have access to any data sources, but you can reason based on the information provided to you by other agents. Use your reasoning skills to identify patterns, trends, and insights that can help improve customer satisfaction and retention. Provide actionable recommendations based on your analysis. You have access to other agents that can answer questions and provide data about customers, products, orders, inventory, and fulfilment. Use these agents to gather information as needed.",
49
49
"description": "A reasoning agent that can analyze customer and order data and provide recommendations for improving customer satisfaction and retention.",
Copy file name to clipboardExpand all lines: docs/CustomizingAzdParameters.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,17 +15,12 @@ By default this template will use the environment name as the prefix to prevent
15
15
|`AZURE_ENV_GPT_MODEL_NAME`| string |`gpt-5.4-mini`| Specifies the underlying GPT model to be deployed (e.g., `gpt-5.4-mini`, `gpt-5.4`). |
16
16
|`AZURE_ENV_GPT_MODEL_VERSION`| string |`2026-03-17`| Version of the GPT model to be used for deployment. |
17
17
|`AZURE_ENV_GPT_DEPLOYMENT_NAME`| string | (defaults to `AZURE_ENV_GPT_MODEL_NAME`) | Optional. Deployment (alias) name used in Azure OpenAI for the main GPT model. This is the value referenced as `deployment_name` in `data/agent_teams/*.json`. Override this if you want the deployment alias to differ from the underlying model name. |
18
-
|`AZURE_ENV_GPT_MODEL_CAPACITY`| int |`50`| Sets the GPT model capacity. |
18
+
|`AZURE_ENV_GPT_MODEL_CAPACITY`| int |`100`| Sets the GPT model capacity. |
19
19
|`AZURE_ENV_MODEL_5_4_DEPLOYMENT_TYPE`| string |`GlobalStandard`| Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
20
20
|`AZURE_ENV_MODEL_5_4_NAME`| string |`gpt-5.4`| Specifies the underlying larger GPT model to be deployed. |
21
21
|`AZURE_ENV_MODEL_5_4_VERSION`| string |`2026-03-05`| Version of the larger GPT model to be used for deployment. |
22
22
|`AZURE_ENV_MODEL_5_4_DEPLOYMENT_NAME`| string | (defaults to `AZURE_ENV_MODEL_5_4_NAME`) | Optional. Deployment (alias) name used in Azure OpenAI for the larger GPT model. Override if the alias should differ from the underlying model name. |
23
23
|`AZURE_ENV_MODEL_5_4_CAPACITY`| int |`150`| Sets the GPT model capacity. |
24
-
|`AZURE_ENV_REASONING_MODEL_DEPLOYMENT_TYPE`| string |`GlobalStandard`| Defines the deployment type for the AI model (e.g., Standard, GlobalStandard). |
25
-
|`AZURE_ENV_REASONING_MODEL_NAME`| string |`gpt-5.4-mini`| Specifies the underlying reasoning GPT model to be deployed. |
26
-
|`AZURE_ENV_REASONING_MODEL_VERSION`| string |`2026-03-17`| Version of the reasoning GPT model to be used for deployment. |
27
-
|`AZURE_ENV_REASONING_DEPLOYMENT_NAME`| string |`gpt-5.4-mini-reasoning` (auto-derived when it would otherwise collide with `AZURE_ENV_GPT_DEPLOYMENT_NAME`) | Optional. Deployment (alias) name used in Azure OpenAI for the reasoning model. Must be unique from `AZURE_ENV_GPT_DEPLOYMENT_NAME`. |
28
-
|`AZURE_ENV_REASONING_MODEL_CAPACITY`| int |`50`| Sets the reasoning GPT model capacity. |
29
24
|`AZURE_ENV_IMAGE_TAG`| string |`latest_v4`| Docker image tag used for container deployments. |
30
25
|`AZURE_ENV_ENABLE_TELEMETRY`| bool |`true`| Enables telemetry for monitoring and diagnostics. |
31
26
|`AZURE_EXISTING_AIPROJECT_RESOURCE_ID`| string |`<Existing Workspace Id>`| Set this if you want to reuse an AI Foundry Project instead of creating a new one. |
Copy file name to clipboardExpand all lines: docs/DeploymentGuide.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,9 +69,9 @@ Ensure you have access to an [Azure subscription](https://azure.microsoft.com/fr
69
69
70
70
**Default Quota Configuration:**
71
71
-**gpt-5.4 (150k tokens)** — backs the larger GPT model deployment (alias `gpt-5.4`).
72
-
-**gpt-5.4-mini (100k tokens combined)** — 50k for the main GPT deployment (alias `gpt-5.4-mini`) plus 50k for the reasoning deployment (alias `gpt-5.4-mini-reasoning`).
72
+
-**gpt-5.4-mini (100k tokens)** — backs the smaller GPT model deployment (alias `gpt-5.4-mini`), also used for reasoning workloads.
73
73
74
-
> **Note:** The underlying models are `gpt-5.4` (2026-03-05 series) and `gpt-5.4-mini` (2026-03-17 series). Both are reasoning-capable GPT-5.4 GA models. The reasoning deployment intentionally uses the same underlying model as the main deployment but under a distinct alias so applications can route separately to reasoning-heavy workloads.
74
+
> **Note:** The underlying models are `gpt-5.4` (2026-03-05 series) and `gpt-5.4-mini` (2026-03-17 series). Both are reasoning-capable GPT-5.4 GA models.
75
75
76
76
> **Note:** When you run `azd up`, the deployment will automatically show you regions with available quota, so this pre-check is optional but helpful for planning purposes. You can customize these settings later in [Step 3.3: Advanced Configuration](#33-advanced-configuration-optional).
@description('Optional. Deployment (alias) name used in Azure OpenAI for the reasoning model. Must be unique from gptDeploymentName. Defaults to "{gptReasoningModelName}-reasoning" when it would otherwise collide with gptDeploymentName, otherwise gptReasoningModelName.')
0 commit comments