Skip to content

Commit 4b0d4d5

Browse files
Merge pull request #1102 from microsoft/conflicts-resolve
chore: Conflicts resolve
2 parents 45e09c6 + 0ac4907 commit 4b0d4d5

23 files changed

Lines changed: 518 additions & 820 deletions

File tree

azure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ hooks:
101101
printf " ${Blue}https://%s${NC}\n\n" "$webSiteDefaultHostname"
102102
103103
shell: sh
104-
interactive: true
104+
interactive: true

content_packs/content_gen/agent_teams/content_gen.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4-mini",
9+
"is_default": true,
910
"agents": [
1011
{
1112
"input_key": "CG_triage_agent",

content_packs/contract_compliance/agent_teams/contract_compliance_team.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4-mini",
9+
"is_default": true,
910
"description": "A multi-agent compliance review team that summarizes NDAs, identifies risks, checks compliance, and recommends improvements using advanced legal reasoning and retrieval-augmented analysis.",
1011
"logo": "",
1112
"plan": "",

content_packs/hr_onboarding/agent_teams/hr.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4",
9+
"is_default": true,
910
"agents": [
1011
{
1112
"input_key": "",

content_packs/marketing_press_release/agent_teams/marketing.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4-mini",
9+
"is_default": true,
910
"agents": [
1011
{
1112
"input_key": "",

content_packs/retail_customer/agent_teams/retail.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4-mini",
9+
"is_default": true,
910
"agents": [
1011
{
1112
"input_key": "",

content_packs/rfp_evaluation/agent_teams/rfp_analysis_team.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"created": "",
77
"created_by": "",
88
"deployment_name": "gpt-5.4-mini",
9+
"is_default": true,
910
"description": "A specialized multi-agent team that analyzes RFP and contract documents to summarize content, identify potential risks, check compliance gaps, and provide action plans for contract improvement.",
1011
"logo": "",
1112
"plan": "",

docs/AzureGPTQuotaSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
3. **Go to** the `Management Center` from the bottom-left navigation menu.
66
4. Select `Quota`
77
- Click on the `GlobalStandard` dropdown.
8-
- Select the required **GPT model** (`GPT-5.4`)
8+
- Select the required **GPT model** (`gpt-5.4` / `gpt-5.4-mini`)
99
- Choose the **region** where the deployment is hosted.
1010
5. Request More Quota or delete any unused model deployments as needed.

docs/DeploymentGuide.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ Ensure you have access to an [Azure subscription](https://azure.microsoft.com/fr
6868
📖 **Follow:** [Quota Check Instructions](./quota_check.md) to ensure sufficient capacity.
6969

7070
**Default Quota Configuration:**
71-
- **GPT-5.4-mini:** 100k tokens
72-
- **GPT-5.4:** 150k tokens
71+
- **gpt-5.4 (150k tokens)** — backs the larger GPT model deployment (alias `gpt-5.4`).
72+
- **gpt-5.4-mini (100k tokens)** — backs the smaller GPT model deployment (alias `gpt-5.4-mini`), also used for reasoning workloads.
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.
7375
7476
> **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).
7577
@@ -323,7 +325,8 @@ azd up
323325

324326
**Expected Duration:** 9-10 minutes for default configuration
325327

326-
- **Upon successful completion**, you will see a success message indicating that all resources have been deployed, along with the application URL and next steps for building and pushing the application container images and uploading team configurations and sample data.
328+
329+
- **Upon successful completion**, you will see a success message indicating that all resources have been deployed, along with the application URL. The next steps are to build and push the backend, frontend, and mcp_server container images to ACR, point the container app and web app at them, and upload the team configurations and sample data.
327330

328331
![Deployment Success message](./images/Deployment_success_message.png)
329332

@@ -391,6 +394,10 @@ The images are **built remotely in ACR** using `az acr build`, so no local Docke
391394
392395
![Usecase selection](./images/Usecase_selection.png)
393396
397+
### 5.3 Access the Application
398+
399+
Once both scripts complete, access your deployed frontend application at the URL printed by the `postdeploy` hook (`https://<webSiteDefaultHostname>`), or retrieve it from the Azure Portal as described in [Step 4.3](#43-get-application-url).
400+
394401
395402
### 5.3 Configure Authentication (Optional)
396403
@@ -409,7 +416,7 @@ The images are **built remotely in ACR** using `az acr build`, so no local Docke
409416
410417
1. **Access the application** using the URL from Step 4.3
411418
2. **Sign in** with your authenticated account
412-
3. **Select a use case** from the available scenarios you uploaded in Step 5.1
419+
3. **Select a use case** from the available scenarios you uploaded in Step 5.2
413420
4. **Ask a sample question** relevant to the selected use case
414421
5. **Verify the response** includes appropriate multi-agent collaboration
415422
6. **Check the logs** in Azure Portal to confirm backend processing

docs/TroubleShootingSteps.md

Lines changed: 149 additions & 572 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)