Develop a multi-agent solution

In this exercise, you’ll practice using the sequential orchestration pattern in the Microsoft Agent Framework SDK. You’ll create a simple pipeline of three agents that work together to process customer feedback and suggest next steps. You’ll create the following agents:

  • The Summarizer agent will condense raw feedback into a short, neutral sentence.
  • The Classifier agent will categorize the feedback as Positive, Negative, or a Feature request.
  • Finally, the Recommended Action agent will recommend an appropriate follow-up step.

You’ll learn how to use the Microsoft Agent Framework SDK to break down a problem, route it through the right agents, and produce actionable results. Let’s get started!

This exercise should take approximately 30 minutes to complete.

Note: Some of the technologies used in this exercise are in preview or in active development. You may experience some unexpected behavior, warnings, or errors.

Prerequisites

Before starting this exercise, ensure you have:

* Python 3.13 is available, but some dependencies are not yet compiled for that release. The lab has been successfully tested with Python 3.13.12.

Create a Foundry project with the AI Toolkit VS Code extension

As a developer, you may spend some time working in the Foundry portal; but you’re also likely to spend a lot of time in Visual Studio Code. The AI Toolkit extension provides a convenient way to work with Foundry project resources without leaving the development environment.

  1. Open Visual Studio Code.

  2. Select Extensions from the left pane (or press Ctrl+Shift+X).

  3. Search the extensions marketplace for the AI Toolkit extension from Microsoft and select Install.

  4. After installing the extension, select its icon in the sidebar to open the AI Toolkit view.

    You should be prompted to sign in to your Azure account if you haven’t already.

  5. Select Create Project under Microsoft Foundry Resources.

    If a default project is already active, the project name will appear under My Resources. You can create a new project by right-clicking on the active project and selecting Switch Default Project.

  6. Select your Azure subscription and resource group, then enter a name for your Foundry project to create a new project for this exercise.

    When the deployment is complete, you should see the project appear in the AI Toolkit pane as the default project.

Deploy a model

At the core of any generative AI project, there’s at least one generative AI model. In this task, you’ll deploy a model from the Model Catalog to use with your agent.

  1. When the “Project deployed successfully” popup appears, select the Deploy a model button. This opens the Model Catalog.

    Tip: You can also access the Model Catalog by selecting the + icon next to Models in the Resources section, or by pressing F1 and running the command AI Toolkit: Show model catalog.

  2. In the Model Catalog, locate the gpt-4.1 model (you can use the search bar to find it quickly).

  3. Select Deploy next to the gpt-4.1 model.

  4. Configure the deployment settings:
    • Deployment name: Enter a name like “gpt-4.1”
    • Deployment type: Select Global Standard (or Standard if Global Standard is not available)
    • Model version: Leave as default
    • Tokens per minute: Leave as default
  5. Select Deploy to Microsoft Foundry in the bottom-left corner.

  6. Wait for the deployment to complete. Your deployed model will appear under the Models section in the Resources view.

  7. Right-click the name of the project deployment and select Copy Project Endpoint. You’ll need this URL to connect your agent to the Foundry project in the next steps.

    Screenshot of copying the project endpoint in the AI Toolkit VS Code extension.

Clone the starter code repository

For this exercise, you’ll use starter code that will help you connect to your Foundry project and create a multi-agent solution that can process customer feedback. You’ll clone this code from a GitHub repository.

  1. In VS Code, open the Command Palette (Ctrl+Shift+P or View > Command Palette).

  2. Type Git: Clone and select it from the list.

  3. Enter the repository URL:

     https://github.com/MicrosoftLearning/mslearn-ai-agents.git
    
  4. Choose a location on your local machine to clone the repository.

  5. When prompted, select Open to open the cloned repository in VS Code.

  6. Once the repository opens, select File > Open Folder and navigate to mslearn-ai-agents/Labfiles/05-agent-orchestration, then choose Select Folder.

  7. In the Explorer pane, expand the Python folder to view the code files for this exercise.

  8. Right-click on the requirements.txt file and select Open in Integrated Terminal.

  9. In the terminal, enter the following command to install the required Python packages in a virtual environment:

     python -m venv labenv
     .\labenv\Scripts\Activate.ps1
     pip install -r requirements.txt
    
  10. Open the .env file, replace the your_project_endpoint placeholder with the endpoint for your project (copied from the project deployment resource in the AI Toolkit extension) and ensure that the MODEL_DEPLOYMENT_NAME variable is set to your model deployment name. Use Ctrl+S to save the file after making these changes.

Create AI agents

Now you’re ready to create the agents for your multi-agent solution! Let’s get started!

  1. Open the agents.py file in the code editor.

  2. At the top of the file under the comment Add references, and add the following code to reference the namespaces in the libraries you’ll need to implement your agent:

    # Add references
    import asyncio
    from typing import cast
    from dotenv import load_dotenv
    from agent_framework import Message
    from agent_framework.azure import AzureAIAgentClient
    from agent_framework.orchestrations import SequentialBuilder
    from azure.identity import AzureCliCredential
    
    load_dotenv()
    
  3. In the main function, take a moment to review the agent instructions. These instructions define the behavior of each agent in the orchestration.

  4. Add the following code under the comment Create the chat client:

    # Create the chat client
    credential = AzureCliCredential()
    async with (
        AzureAIAgentClient(credential=credential) as chat_client,
    ):
    

    Note that the AzureCliCredential object will allow your code to authenticate to your Azure account. The AzureAIAgentClient object will automatically include the Foundry project settings from the .env configuration.

  5. Add the following code under the comment Create agents:

    (Be sure to maintain the indentation level)

    # Create agents
    summarizer = chat_client.as_agent(
        instructions=summarizer_instructions,
        name="summarizer",
    )
    
    classifier = chat_client.as_agent(
        instructions=classifier_instructions,
        name="classifier",
    )
    
    action = chat_client.as_agent(
        instructions=action_instructions,
        name="action",
    )
    

Create a sequential orchestration

  1. In the main function, find the comment Initialize the current feedback and add the following code:

    (Be sure to maintain the indentation level)

    # Initialize the current feedback
    feedback="""
    I use the dashboard every day to monitor metrics, and it works well overall. 
    But when I'm working late at night, the bright screen is really harsh on my eyes. 
    If you added a dark mode option, it would make the experience much more comfortable.
    """
    
  2. Under the comment Build a sequential orchestration, add the following code to define a sequential orchestration with the agents you defined:

    # Build sequential orchestration
    workflow = SequentialBuilder(participants=[summarizer, classifier, action]).build()
    

    The agents will process the feedback in the order they are added to the orchestration.

  3. Add the following code under the comment Run and collect outputs:

    # Run and collect outputs
    outputs: list[list[Message]] = []
    async for event in workflow.run(f"Customer feedback: {feedback}", stream=True):
        if event.type == "output":
            outputs.append(cast(list[Message], event.data))
    

    This code runs the orchestration and collects the output from each of the participating agents.

  4. Add the following code under the comment Display outputs:

    # Display outputs
    if outputs:
        for i, msg in enumerate(outputs[-1], start=1):
            name = msg.author_name or ("assistant" if msg.role == "assistant" else "user")
            print(f"{'-' * 60}\n{i:02d} [{name}]\n{msg.text}")
    

    This code formats and displays the messages from the workflow outputs you collected from the orchestration.

  5. Use the CTRL+S command to save your changes to the code file.

Test the application

Now you’re ready to run your code and watch your AI agents collaborate.

  1. In the integrated terminal, enter the following commands to run the application:
     az login
    
    python agents.py
    
  2. You should see some output similar to the following:

     ------------------------------------------------------------
     01 [user]
     Customer feedback:
         I use the dashboard every day to monitor metrics, and it works well overall.
         But when I'm working late at night, the bright screen is really harsh on my eyes.
         If you added a dark mode option, it would make the experience much more comfortable.
    
     ------------------------------------------------------------
     02 [summarizer]
     User requests a dark mode for better nighttime usability.
     ------------------------------------------------------------
     03 [classifier]
     Feature request
     ------------------------------------------------------------
     04 [action]
     Log as enhancement request for product backlog.
    
  3. Optionally, you can try running the code using different feedback inputs, such as:

     I use the dashboard every day to monitor metrics, and it works well overall. But when I'm working late at night, the bright screen is really harsh on my eyes. If you added a dark mode option, it would make the experience much more comfortable.
    
     I reached out to your customer support yesterday because I couldn't access my account. The representative responded almost immediately, was polite and professional, and fixed the issue within minutes. Honestly, it was one of the best support experiences I've ever had.
    
  4. When you’re finished, enter deactivate in the terminal to exit the Python virtual environment.

Clean up

If you’ve finished exploring Azure AI Agent Service, you should delete the resources you have created in this exercise to avoid incurring unnecessary Azure costs.

Delete your model

  1. In VS Code, refresh the Azure Resources view.

  2. Expand the Models subsection.

  3. Right-click on your deployed model and select Delete.

Delete the resource group

  1. Open the Azure portal.

  2. Navigate to the resource group containing your Microsoft Foundry resources.

  3. Select Delete resource group and confirm the deletion.