-
đ§ Building RAG in .NET with Local Embeddings â 3 Approaches, Zero Cloud Calls
Hi! đ One of the questions I get most often is: “Bruno, can I build a RAG (Retrieval-Augmented Generation) app in .NET without sending my data to the cloud?” The answer is a resounding YES. đ In this post, I’ll walk you through three different ways to build RAG applications using ElBruno.LocalEmbeddings â a .NET library that generates text embeddings locally using ONNX… â read more
-
Building GitHub Copilot Agents in C# with Microsoft Agent Framework
GitHub Copilot just crossed a very interesting line. Itâs no longer âjustâ helping you write code â it can now run as an agent, with goals, tools, and autonomy, using Microsoft Agent Framework (MAF). đĽ Watch the full video here: In the video, I walk through three simple C# samples showing how Copilot can be… â read more
-
đ¤ Never Lose Your AI Agent’s Train of Thought
Persisting Microsoft Agent Framework Sessions with ASP.NET, Redis & Blazor Have you ever built a chat app where the AI forgets what you said five seconds ago? đ That’s the classic stateless API problem â and today we’re fixing that in .NET using the Microsoft Agent Framework (MAF + Ollama), persistent agent sessions (Redis), and a Blazor frontend so you can see… â read more
-
Building an MCP App with C# – A Color Picker Sample
Hi! Iâve been spending some airport time playing with MCP Apps, and one question kept coming back: Can we build a real, interactive UI for MCP tools⌠using just C#? Short answer: yes.Long answer: letâs build one. In this post, weâll create a Color Picker MCP App using ASP.NET Core + Model Context Protocol, where:… â read more
-
Building a 3.6GB .NET Audio Joiner with GitHub Copilot CLI đ§đ¤
Hi! Sometimes you donât need a framework, a service, or a startup idea.You just need a small tool that actually works. In my latest video, I put GitHub Copilot CLI to work building a .NET console app that merges 65 MP3 files into a single 3.6GB audio file. No fluff, no fake demo â a… â read more
-
GitHub Copilot SDK: Build AI into Your Apps (Fast Overview)
Hi đ While exploring recent updates around the GitHub Copilot CLI, inspired by posts and demos from Scott Hanselman, I stumbled upon something even more interesting: the GitHub Copilot SDK. This SDK opens the door to embedding GitHub Copilot directly into your own applications, not just your editor or terminal. Even better: it supports multiple… â read more
-
Trick to fix DevUI Workflow Errors in Microsoft Agent Framework
Hi! How a Missing Workflow Name Breaks DevUI (and How to Fix It) When working with Microsoft Agent Framework and DevUI, I ran into a subtle but very frustrating issue: everything compiled, but DevUI failed at runtime. No workflows visible.No clear hint in the UI.And a runtime exception that didnât immediately point to the real… â read more
-
Fixing OllamaSharp Timeouts in C# (with a Simple Extension and just for fun đ)
Hi! Avoid reading the blog post with this 5-min video: When working with local models in OllamaSharp, I hit a timeout while running long-running workloads like video analysis. The issue wasnât the model, it was the default 100-second timeout coming from HttpClient. The problem By default, OllamaSharp uses an HttpClient with a fixed timeout.If your… â read more
-
Building Multi-Agent Workflows in .NET with AgentFactory and Handoff
đĽ Video coming soon!Iâm preparing a short walkthrough video where Iâll run this sample live, explain the design decisions, and show how everything fits together step by step. But hey, it’s christmas time, so I’m taking this easy đ When building AI-powered applications, the moment you move beyond a single âchatbotâ, things get interesting very… â read more
-
Microsoft AI in 2025: My Top 60 Announcements (Chronological) đ
â ď¸ This post was curated manually based on public announcements, blog posts, and official Microsoft communications from 2025. While I carefully reviewed the content, dates, and URLs, this article was assisted by AI tooling â and, well, AI is still AI đ¤. There may be occasional inaccuracies, outdated links, or missing context. If you spot… â read more
-
You Donât Need AI Everywhere (And Thatâs a Good Thing)
End-of-year reflection noteAs the year wraps up and we all start thinking about what we built, what worked, and what didnât, Iâve been reflecting on something Iâve seen a lot lately: AI being added everywhere⌠sometimes without a real reason. AI is powerful. I use it daily. But that doesnât mean it should be the… â read more
-
đ¤ Local AI Power: Vision and Function Calling with Microsoft Agent Framework and Ollama
Hola friends! One of the questions I get most often lately is: “Bruno, can I run a full-featured agent locally without sending everything to the cloud?” The answer is a resounding YES. đ Today, I want to show you how to use the new Microsoft Agent Framework to build a local agent that doesn’t just… â read more
-
What Building AI Agents in .NET Taught Me in 2025
Hi! In 2025, I built more AI agents in .NET than I expected. Some were demos.Some were prototypes.Some (few) actually made it to production. And while models kept getting better every month, the hardest problems I ran into had very little to do with AI itself. They were engineering problems. Here are a few lessons… â read more
-
Claude in Azure with .NET â Anthropic Claude + Microsoft Extensions.AI (MEAI) đĽ
HiđGreat news for .NET developers: Anthropicâs Claude models (Claude Sonnet 4.5, Haiku 4.5, Opus 4.1) are now available in Microsoft Foundry (public preview anthropic.com). This makes Azure the only cloud platform providing access to both OpenAIâs GPT and Anthropicâs Claude frontier models side-by-side (azure.microsoft.com). In practical terms, you can deploy a Claude model to your… â read more
-
Introducing the Microsoft Agent Framework â A Dev-Friendly Recap
Hi there! đ If you’ve been keeping an eye on the AI developer world, you might have heard about the Microsoft Agent Framework. This is a brand-new (as of late 2025) open-source SDK and runtime from Microsoft that makes it much easier to build and orchestrate AI agents â including scenarios with multiple agents working… â read more
-
đClaude in Azure, the .NET Way: elbruno.Extensions.AI.Claude v0.1.0-preview.2
elbruno.Extensions.AI.Claude just landed on NuGet with dual authentication support, polished samples, and drop-in compatibility with Microsoft.Extensions.AI. Here’s a fast tour so you can start shipping Azure+Claude powered experiences immediately. Highlights Install Once Sample 1 Default Azure Credentials Keep secrets in Azure and let DefaultAzureCredential figure out the right token. Minimal config: Sample 2 API Key Mode Need to run… â read more
-
Using Claude Models in Microsoft Foundry with Microsoft.Extensions.AI (temp fix đ)
Hi! This post demonstrates how to use Anthropic’s Claude models deployed in Microsoft Foundry with the Microsoft.Extensions.AI (MEAI) framework. Since official SDK support for Claude models in MEAI is not yet available, this sample shows a practical approach to bridge the gap between OpenAI’s API format (used by MEAI) and Claude’s native Anthropic API format.… â read more