Multi-Agent Fashion Stylist with Connected Agents #32
aprilgittens
started this conversation in
Show and Tell
Replies: 2 comments 2 replies
-
Hi @aprilgittens , Great Video of Implementation of Multi Agent using the Agent Service of Foundry. I am looking to start with Code-first approach for building a Multi Agent architecture, is there any sample project which can be referred or it is recommended to create agent as using this Agent service and convert it to code? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Introduction
Last week at Microsoft Build, we announced Connected Agents! Connected Agents is within the Azure AI Foundry Agent Service and enables you to connect multiple agents together with no custom orchestration or handed-coded logic.
You start with a main agent and then connect subagents. The main agent works behind the scenes to determine which subagent to activate based on the prompt you provide and your defined activation steps.
In my project, I have a main Stylist agent that coordinates with a Weather subagent and a Closet subagent to determine whether an item in my closet is appropriate for the current weather forecast.
Using Connected Agents has literally saved me SO much time getting the agents to work together - so much so that I created a video to show you all just how simple it is to set this up! 🙆🏾♀️
Watch here: Create Multi-Agent Apps with Connected Agents
Features and Screenshots
Technical Details
Here's how it works:
Note: The Closet agent is grounded in Markdown files for each item of clothing in the closet. Information included is the brand/designer, description, color, fabric & materials, care instructions. Whether an item of clothing is "appropriate" for the weather is determined on the fabrication/material of the item of clothing.
Challenges and Solutions
For the demo in the video, I hardcoded the current location and temperature. However, I share a preview of the actual code that replaces the hardcoded values so that the API call could occur.
Other than that, this was a pretty simple configuration!
If anyone's interested in a code walkthrough of setting this up, feel free to let me know.
Beta Was this translation helpful? Give feedback.
All reactions