Skip to content

Commit 02f3cb9

Browse files
fix the WAF issue and updated the docs
1 parent 5b3a5b1 commit 02f3cb9

9 files changed

Lines changed: 60 additions & 406 deletions

File tree

README.md

Lines changed: 51 additions & 13 deletions
Large diffs are not rendered by default.

docs/ADR/003-reasoning-model-for-orchestrator-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ manager_agent = Agent(manager_chat_client, name="MagenticManager")
111111

112112
## Superseded (2026-07-09)
113113

114-
The reasoning/orchestrator model migrated from `o4-mini` to `gpt-5-mini` because `o4-mini` is deprecated (retires 2026-10-16). Because `gpt-5-mini` reasons by default, it preserves the structured-routing reliability that motivated this decision while consolidating the accelerator onto a single generally available model. The `ORCHESTRATOR_MODEL_NAME` config and the separate manager `FoundryChatClient` described above remain unchanged; only the default model value moved to `gpt-5-mini`. The historical decision text above is retained for context.
114+
The reasoning/orchestrator model migrated from `o4-mini` to `gpt-5.4-mini` because `o4-mini` is deprecated (retires 2026-10-16). Because `gpt-5.4-mini` reasons by default, it preserves the structured-routing reliability that motivated this decision while consolidating the accelerator onto a single generally available model. The `ORCHESTRATOR_MODEL_NAME` config and the separate manager `FoundryChatClient` described above remain unchanged; only the default model value moved to `gpt-5.4-mini`. The historical decision text above is retained for context.

infra/avm/main.bicep

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,13 +1383,14 @@ module webSite './modules/compute/app-service.bicep' = {
13831383
appSettings: {
13841384
SCM_DO_BUILD_DURING_DEPLOYMENT: 'true'
13851385
DOCKER_REGISTRY_SERVER_URL: 'https://${acrLoginServer}'
1386-
WEBSITES_PORT: '3000'
13871386
WEBSITES_CONTAINER_START_TIME_LIMIT: '1800'
13881387
BACKEND_API_URL: 'https://${containerApp.outputs.fqdn}'
13891388
AUTH_ENABLED: 'false'
13901389
PROXY_API_REQUESTS: enablePrivateNetworking ? 'true' : 'false'
13911390
}
13921391
virtualNetworkSubnetId: enablePrivateNetworking ? virtualNetwork!.outputs.webserverfarmSubnetResourceId : ''
1392+
vnetRouteAllEnabled: enablePrivateNetworking
1393+
imagePullTraffic: enablePrivateNetworking
13931394
publicNetworkAccess: 'Enabled'
13941395
diagnosticSettings: monitoringDiagnosticSettings
13951396
applicationInsightResourceId: enableMonitoring ? app_insights!.outputs.resourceId : ''

infra/bicep/main.bicep

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,8 +800,7 @@ module frontend_app './modules/compute/app-service.bicep' = {
800800
appCommandLine: ''
801801
appSettings: {
802802
SCM_DO_BUILD_DURING_DEPLOYMENT: 'true'
803-
DOCKER_REGISTRY_SERVER_URL: 'https://${acrLoginServer}'
804-
WEBSITES_PORT: '3000'
803+
DOCKER_REGISTRY_SERVER_URL: 'https://${acrLoginServer}'
805804
WEBSITES_CONTAINER_START_TIME_LIMIT: '1800'
806805
BACKEND_API_URL: 'https://${backend_container_app.outputs.fqdn}'
807806
AUTH_ENABLED: 'false'

infra/main.waf.parameters.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@
9090
"value": "${AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT}"
9191
},
9292
"backendContainerImageTag": {
93-
"value": "${AZURE_ENV_IMAGE_TAG=latest_v5}"
93+
"value": "${AZURE_ENV_IMAGE_TAG}"
9494
},
9595
"frontendContainerImageTag": {
96-
"value": "${AZURE_ENV_IMAGE_TAG=latest_v5}"
96+
"value": "${AZURE_ENV_IMAGE_TAG}"
9797
},
9898
"MCPContainerImageTag": {
99-
"value": "${AZURE_ENV_IMAGE_TAG=latest_v5}"
99+
"value": "${AZURE_ENV_IMAGE_TAG}"
100100
}
101101
}
102102
}

0 commit comments

Comments
 (0)