Building Multi-Agent Application with Semantic Kernel Agent Framework

Introduction Recently, I explored Microsoft’s Semantic Kernel Agent Framework, an experimental extension (at the time of writing) designed to build AI agents and integrate applications using the same features as Semantic Kernel. Here’s my take on it, including what I built, the key parts I used, and how it made my life easier. What I wanted to create I wanted to create a multi-agent application that seamlessly integrates business functions with AI agents. Here are the key capabilities I was looking for: ...

February 15, 2025 · 4 min · 712 words · Me

Dynamic Menu in MAUI

Context The requirement here is to be able to add dynamic menu items to a MAUI app. The use case chosen here is of selection of a font from a list of fonts installed on the machine. The list of fonts is shows under a menu item in the menu bar. More on menu bar from the Microsoft documentation Approach Step 1: Mark up The component to be used here is the MenuBarItem. This component support binding context of the content page. As part of the page markup, a menu item is added to the page and the “Choose Language” menu item is left blank, so that the menu items can be added after fetching it. ...

September 26, 2022 · 2 min · 402 words · Me