Skip to content

Commit ebeb325

Browse files
committed
acrolinx updates
1 parent d96094c commit ebeb325

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

learn-pr/wwl-data-ai/develop-multi-agent-azure-ai-foundry/5-knowledge-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ quiz:
2222
explanation: "Correct. The main agent handles intent recognition and delegates work to connected agents."
2323
- content: "To monitor agent performance and generate logs"
2424
isCorrect: false
25-
explanation: "Incorrect. Logging is not the role of the main agent."
25+
explanation: "Incorrect. Logging isn't the role of the main agent."
2626
- content: "How do you connect an agent to a main agent using the Azure AI Projects client library?"
2727
choices:
2828
- content: "Add the agent as a `ConnectedAgentTool` to the main agent's tool definition."
2929
isCorrect: true
3030
explanation: "Correct. You register the agent as a tool and include it when configuring the main agent."
3131
- content: "Use the `link_agents()` method to bind the sub-agent to the main agent."
3232
isCorrect: false
33-
explanation: "Incorrect. There is no such method; connected agents are registered as tools."
33+
explanation: "Incorrect. There isn't such a method; connected agents are registered as tools."
3434
- content: "Set the main agent's parent_id to the sub-agent's agent ID."
3535
isCorrect: false
36-
explanation: "Incorrect. Agent relationships are not configured through ID inheritance."
36+
explanation: "Incorrect. Agent relationships aren't configured through ID inheritance."
3737
- content: "How does the main agent decide which connected agent to use?"
3838
choices:
3939
- content: "It uses prompt instructions and natural language understanding."

learn-pr/wwl-data-ai/develop-multi-agent-azure-ai-foundry/6-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.wwl.develop-multi-agent-azure-ai-foundry.summary
33
title: Summary
44
metadata:
55
title: Summary
6-
description: "Reflect on what you've learned about multi-agent systems."
6+
description: "Reflect on what you learned about multi-agent systems."
77
ms.date: 06/13/2025
88
author: buzahid
99
ms.author: buzahid

learn-pr/wwl-data-ai/develop-multi-agent-azure-ai-foundry/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Azure AI Foundry Agent Service can help you develop sophisticated, multi-agent s
22

33
Imagine you're on an engineering team that receives a constant flow of support tickets including bugs, feature requests, and infrastructure issues. Manually reviewing and sorting each one takes time and slows down your team’s ability to respond quickly. With a multi-agent approach, you can build a triage assistant that assigns different tasks to specialized agents. The sub-agents might perform tasks such as classifying ticket type, setting priority, and suggesting the right team for the work. With a multi-agent approach, these specialized agents can work together to streamline the ticketing process.
44

5-
In this module, you'll learn how to use connected agents in Azure AI Foundry. You'll also practice building an intelligent ticket triage system using a collaborative mutli-agent solution.
5+
In this module, you learn how to use connected agents in Azure AI Foundry. You also practice building an intelligent ticket triage system using a collaborative mutli-agent solution.

learn-pr/wwl-data-ai/develop-multi-agent-azure-ai-foundry/includes/2-understand-connected-agents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ As AI solutions become more advanced, managing complex workflows gets harder. A
22

33
## What are connected agents?
44

5-
Connected agents are a feature in the Azure AI Foundry Agent Service that allow you to break large tasks into smaller,specialized roles without building a custom orchestrator or hardcoding routing logic. Instead of relying on one agent to do everything, you can create multiple agents with clearly defined responsibilities that collaborate to accomplish tasks.
5+
Connected agents are a feature in the Azure AI Foundry Agent Service that allows you to break large tasks into smaller, specialized roles without building a custom orchestrator or hardcoding routing logic. Instead of relying on one agent to do everything, you can create multiple agents with clearly defined responsibilities that collaborate to accomplish tasks.
66

7-
At the center of this system is a main agent that interprets user input and delegates tasks to connected sub-agents. Each sub-agent is purpose-built to perform a specific function, such as summarizing a document, validating a policy, or retrieving data from a knowledge source.
7+
At the center of this system, there's a main agent that interprets user input and delegates tasks to connected sub-agents. Each sub-agent is designed to perform a specific function, such as to summarize a document, validate a policy, or retrieve data from a knowledge source.
88

99
This division of labor helps you:
1010

learn-pr/wwl-data-ai/develop-multi-agent-azure-ai-foundry/includes/3-design-multi-agent-solution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Connected agents should be designed with a single responsibility in mind. This m
2323

2424
1. **Initialize the agents client**
2525

26-
First, you create a client that will connect to your Azure AI Foundry project.
26+
First, you create a client that connects to your Azure AI Foundry project.
2727

2828
1. **Create an agent to connect to the main agent**
2929

30-
Define an agent that will be connected to the main agent. You can do this using the `create_agent` method on the `AgentsClient` object.
30+
Define an agent you want to connect to the main agent. You can do this using the `create_agent` method on the `AgentsClient` object.
3131

3232
For example, your connected agent might retrieve stock prices, summarize documents, or validate compliance. Give the agent clear instructions that define its purpose.
3333

@@ -41,7 +41,7 @@ Connected agents should be designed with a single responsibility in mind. This m
4141

4242
1. **Create a thread and send a message**
4343

44-
Create the agent thread that will be used to manage the conversation context. Then create a message on the thread that contains the request you want the agent to fulfill.
44+
Create the agent thread that is used to manage the conversation context. Then create a message on the thread that contains the request you want the agent to fulfill.
4545

4646
1. **Run the agent workflow**
4747

0 commit comments

Comments
 (0)