πŸ”’ Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AI-103 Domain 2
Domain 2 β€” Module 8 of 11 73%
16 of 27 overall

AI-103 Study Guide

Domain 1: Plan and Manage an Azure AI Solution

  • Choosing the Right AI Model Free
  • Foundry Services: Your AI Toolkit Free
  • Retrieval, Indexing & Agent Memory
  • Designing AI Infrastructure
  • Deploying Models & CI/CD
  • Quotas, Scaling & Cost
  • Monitoring & Security
  • Responsible AI: Filters, Auditing & Governance

Domain 2: Implement Generative AI and Agentic Solutions

  • Connecting Your App to Foundry Free
  • Building RAG Applications
  • Workflows & Reasoning Pipelines
  • Evaluating AI Models & Apps
  • Agent Fundamentals: Roles, Goals & Tools Free
  • Building Agents with Retrieval & Memory
  • Agent Tools & Knowledge Integration
  • Multi-Agent Orchestration & Safeguards
  • Agent Monitoring & Error Analysis
  • Prompt Engineering & Model Tuning
  • Observability & Production Operations

Domain 3: Implement Computer Vision Solutions

  • Image & Video Generation
  • Multimodal Visual Understanding
  • Responsible AI for Visual Content

Domain 4: Implement Text Analysis Solutions

  • Text Analysis with Language Models
  • Speech, Translation & Voice Agents

Domain 5: Implement Information Extraction Solutions

  • Ingestion, Indexing & Grounding Pipelines
  • Extracting Content with Content Understanding
  • Exam Prep: Putting It All Together

AI-103 Study Guide

Domain 1: Plan and Manage an Azure AI Solution

  • Choosing the Right AI Model Free
  • Foundry Services: Your AI Toolkit Free
  • Retrieval, Indexing & Agent Memory
  • Designing AI Infrastructure
  • Deploying Models & CI/CD
  • Quotas, Scaling & Cost
  • Monitoring & Security
  • Responsible AI: Filters, Auditing & Governance

Domain 2: Implement Generative AI and Agentic Solutions

  • Connecting Your App to Foundry Free
  • Building RAG Applications
  • Workflows & Reasoning Pipelines
  • Evaluating AI Models & Apps
  • Agent Fundamentals: Roles, Goals & Tools Free
  • Building Agents with Retrieval & Memory
  • Agent Tools & Knowledge Integration
  • Multi-Agent Orchestration & Safeguards
  • Agent Monitoring & Error Analysis
  • Prompt Engineering & Model Tuning
  • Observability & Production Operations

Domain 3: Implement Computer Vision Solutions

  • Image & Video Generation
  • Multimodal Visual Understanding
  • Responsible AI for Visual Content

Domain 4: Implement Text Analysis Solutions

  • Text Analysis with Language Models
  • Speech, Translation & Voice Agents

Domain 5: Implement Information Extraction Solutions

  • Ingestion, Indexing & Grounding Pipelines
  • Extracting Content with Content Understanding
  • Exam Prep: Putting It All Together
Domain 2: Implement Generative AI and Agentic Solutions Premium ⏱ ~14 min read

Multi-Agent Orchestration & Safeguards

One agent is useful. Multiple agents working together is powerful β€” but dangerous without safeguards. Learn how to build orchestrated multi-agent solutions with approval controls and oversight modes.

Why multiple agents?

β˜• Simple explanation

Multi-agent orchestration is like a team of specialists working together. Instead of one person doing everything, you have an analyst, a reviewer, a decision-maker, and a communicator β€” each doing what they’re best at.

One agent might research a problem, another evaluates the findings, a third makes a recommendation, and a fourth presents it to the user. An orchestrator coordinates the whole team β€” like a project manager ensuring everyone does their part in the right order.

Multi-agent orchestration involves multiple AI agents collaborating on a task, each with specialised roles, tools, and expertise. The Microsoft Agent Framework (combining innovations from AutoGen and Semantic Kernel) provides:

  • Agent definitions β€” each agent has its own role, tools, and instructions
  • Orchestration patterns β€” sequential handoffs, parallel execution, or dynamic routing
  • Safeguards β€” approval gates, tool constraints, and oversight modes
  • Communication β€” agents share context through a common message bus or state

Orchestration patterns

Multi-agent orchestration patterns
FeatureSequentialParallelDynamic Routing
How it worksAgent A finishes, passes to Agent B, then Agent CAgents A, B, C all work simultaneouslyOrchestrator decides which agent to call based on the task
Best forPipeline processing (extract, analyse, summarise)Independent sub-tasks (research, translate, format)Mixed workloads where the right agent depends on input
SpeedSlowest (one at a time)Fastest (all at once)Variable (adapts to task)
ComplexityLowMedium (need to combine results)High (routing logic needed)
ExampleLoan review: extract data, check compliance, generate reportTranslate document into 3 languages simultaneouslyCustomer query: route to billing, tech support, or complaints agent

Autonomous vs semiautonomous workflows

ModeAgent BehaviourSafeguardsUse Case
Fully autonomousAgent acts without human interventionTool constraints, rate limits, audit logsLow-risk, well-tested tasks (FAQ answering, data lookup)
SemiautonomousAgent proposes actions, human approvesApproval gates on high-impact actionsHigh-stakes decisions (financial approvals, medical advice)
Advisory onlyAgent recommends but never actsAll actions require human executionNew agents in testing, untrusted scenarios

Approval flow controls

ControlWhat It DoesConfiguration
Approval gatesPause workflow until human approvesTrigger on specific tool calls or conditions
Escalation rulesRoute to human when confidence is lowBased on agent’s self-assessment or score thresholds
Override capabilityHuman can modify agent’s proposed actionAlways available in semiautonomous mode
Audit trailLog every action, approval, and overrideAutomatic in Foundry tracing
ℹ️ Real-world example: Atlas Financial's multi-agent loan review

Atlas Financial uses three agents to review loan applications:

Agent 1: Data Extractor (autonomous)

  • Extracts applicant data from PDF application using Content Understanding
  • Pulls credit score from external API
  • Fully autonomous β€” low risk, no decisions

Agent 2: Compliance Analyst (semiautonomous)

  • Reviews application against regulations (Azure AI Search)
  • Generates compliance assessment
  • Approval gate: If the assessment recommends rejection, a human compliance officer must review before proceeding

Agent 3: Communication Agent (autonomous for approvals, gated for rejections)

  • Generates notification to the applicant
  • Auto-sends for approved applications
  • Approval gate: Rejection notifications require human review of tone and accuracy

Orchestrator: Sequential pipeline β€” Agent 1 β†’ Agent 2 β†’ Agent 3. If Agent 2 flags a complex case, it escalates directly to a senior analyst (bypassing Agent 3).

πŸ’‘ Exam tip: Safeguards are not optional

The exam presents autonomous agents as powerful but requiring safeguards. Common traps:

  • β€œThe agent should be fully autonomous for all tasks” β†’ Wrong for high-stakes decisions
  • β€œAdd approval gates to every action” β†’ Wrong for low-risk tasks (slows everything down)

The correct approach is risk-based: low-risk actions = autonomous, high-risk actions = semiautonomous with approval gates.

Key terms

Question

What is multi-agent orchestration?

Click or press Enter to reveal answer

Answer

Coordinating multiple AI agents to collaborate on a task. Each agent has specialised roles and tools. An orchestrator manages the workflow β€” sequential handoffs, parallel execution, or dynamic routing based on the task.

Click to flip back

Question

What is an approval gate?

Click or press Enter to reveal answer

Answer

A checkpoint in an agent workflow that pauses execution until a human reviews and approves the proposed action. Used for high-stakes decisions where autonomous execution is too risky.

Click to flip back

Question

What is the Microsoft Agent Framework?

Click or press Enter to reveal answer

Answer

An open-source SDK (Python and .NET) that combines innovations from AutoGen and Semantic Kernel for building production-grade multi-agent systems. Integrates with Foundry Agent Service for deployment and governance.

Click to flip back

Question

What is semiautonomous mode?

Click or press Enter to reveal answer

Answer

An agent operating mode where the agent can act independently on low-risk tasks but must get human approval for high-impact actions. Balances efficiency with safety through targeted approval gates.

Click to flip back

Knowledge check

Knowledge Check

A customer asks NeuralMed's patient intake system a billing question. The intake agent specialises in medical appointments, not billing. What orchestration pattern should handle this?

Knowledge Check

Atlas Financial's compliance agent can autonomously approve routine loans and generate reports. For loan rejections, the legal team requires human review. Which configuration is correct?

🎬 Video coming soon

← Previous

Agent Tools & Knowledge Integration

Next β†’

Agent Monitoring & Error Analysis

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.