Multi-Agent Fashion Stylist with Connected Agents #32
Replies: 4 comments 7 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.
-
|
Hey everyone, I’ve recently been diving into some open-source projects on GitHub related to speakers, audio playback, and sound processing, and I was surprised by how many creative repositories are out there! From ESP32 Bluetooth streaming setups to Python-based audio analysis tools — there’s something for every skill level. While testing a few of these, I noticed many devs also face distorted or muffled sound during long runtimes, especially in DIY speaker builds. That’s when I found this simple online tool called Speaker Cleaner. It uses audio frequencies to remove dust or moisture stuck inside the speaker — and it actually works great for small devices and prototypes. If you’re working on an embedded or IoT audio project, I’d highly recommend checking out some of these GitHub repos and pairing them with maintenance tools like this one. Clean sound = better testing results. 🎧 |
Beta Was this translation helpful? Give feedback.
-
|
Hi everyone, When working with AI applications or multimedia projects, audio clarity can make a huge difference in testing, output quality, and user experience. Many developers focus on software optimization but overlook the hardware side — like speakers, earphones, or microphones — which can affect results. I found SpeakersCleaner Even small adjustments in hardware setup can complement software improvements and help achieve more accurate AI audio processing or multimedia results. Would love to hear if others have tips for balancing device maintenance with AI and audio workflows! |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for sharing this wonderful post! If you start feeling a bit hungry during or after work, grab something fresh and tasty. Eating healthy keeps your energy up and helps you perform at your best. E |
Beta Was this translation helpful? Give feedback.
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