AI Agent in .NET Core
Hi All, Microsoft has released their own Agentic AI framework now (as prerelease of course) You can now connect Azure AI, Open AI or any AI framework to this Microsoft Agentic AI to get response and work on those responses as you want. I made a small AI agent as follows using Open AI to generate a speech and convert it to json format. Hope you like it using Microsoft.Agents.AI; using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; using OpenAI; using System; using System.Reflection; using System.Threading.Tasks; string apiKey = "{OPENAI_API_KEY}"; IChatClient chatClient = new OpenAIClient(apiKey) .GetChatClient("gpt-4o-mini") ...