Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Honda CR-V Hybrid Lineup Expanded in Malaysia From RM178,200

    vivo V70 – Top 7 Flagship Features You Will Love

    Apple iPad Air with M4 Officially Launches in Malaysia From RM2,799

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Weighing up the enterprise risks of neocloud providers

      March 3, 2026

      A stolen Gemini API key turned a $180 bill into $82,000 in two days

      March 3, 2026

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026

      FCC approves the merger of cable giants Cox and Charter

      February 28, 2026

      Finding value with AI and Industry 5.0 transformation

      February 28, 2026
    • Crypto

      Strait of Hormuz Shutdown Shakes Asian Energy Markets

      March 3, 2026

      Wall Street’s Inflation Alarm From Iran — What It Means for Crypto

      March 3, 2026

      Ethereum Price Prediction: What To Expect From ETH In March 2026

      March 3, 2026

      Was Bitcoin Hijacked? How Institutional Interests Shaped Its Narrative Since 2015

      March 3, 2026

      XRP Whales Now Hold 83.7% of All Supply – What’s Next For Price?

      March 3, 2026
    • Technology

      Spotify’s new feature makes it easier to find popular audiobooks

      March 3, 2026

      This portable JBL Grip Bluetooth speaker is so good at 20% off

      March 3, 2026

      ‘AI’ could dox your anonymous posts

      March 3, 2026

      Microsoft says new Teams location feature isn’t for ’employee tracking’

      March 3, 2026

      OpenAI got ‘sloppy’ about the wrong thing

      March 3, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Microsoft Agent Framework
    Technology

    Microsoft Agent Framework

    TechAiVerseBy TechAiVerseDecember 24, 2025No Comments6 Mins Read2 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Microsoft Agent Framework
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Microsoft Agent Framework





    Share via


    Microsoft Agent Framework
    is an open-source development kit for building AI agents and multi-agent workflows
    for .NET and Python.
    It brings together and extends ideas from Semantic Kernel
    and AutoGen projects, combining their strengths while adding new capabilities. Built by the same teams, it is the unified foundation for building AI agents going forward.

    Agent Framework offers two primary categories of capabilities:

    • AI agents: Individual agents that use LLMs to process user inputs, call tools and MCP servers to perform actions, and generate responses. Agents support model providers including Azure OpenAI, OpenAI, and Azure AI.
    • Workflows: Graph-based workflows that connect multiple agents and functions to perform complex, multi-step tasks. Workflows support type-based routing, nesting, checkpointing, and request/response patterns for human-in-the-loop scenarios.

    The framework also provides foundational building
    blocks, including model clients (chat completions and responses), an agent thread for state management, context providers for agent memory,
    middleware for intercepting agent actions, and MCP clients for tool integration.
    Together, these components give you the flexibility and power to build
    interactive, robust, and safe AI applications.

    Why another agent framework?

    Semantic Kernel
    and AutoGen pioneered the concepts of AI agents and multi-agent orchestration.
    The Agent Framework is the direct successor, created by the same teams. It combines AutoGen’s simple abstractions for single- and multi-agent patterns with Semantic Kernel’s enterprise-grade features such as thread-based state management, type safety, filters,
    telemetry, and extensive model and embedding support. Beyond merging the two,
    Agent Framework introduces workflows that give developers explicit control over
    multi-agent execution paths, plus a robust state management system
    for long-running and human-in-the-loop scenarios.
    In short, Agent Framework is the next generation of
    both Semantic Kernel and AutoGen.

    To learn more about migrating from either Semantic Kernel or AutoGen,
    see the Migration Guide from Semantic Kernel
    and Migration Guide from AutoGen.

    Both Semantic Kernel and AutoGen have benefited significantly from the open-source community,
    and the same is expected for Agent Framework. Microsoft Agent Framework welcomes contributions and will keep improving with new features and capabilities.

    Note

    Microsoft Agent Framework is currently in public preview. Please submit any feedback or issues on the GitHub repository.

    Important

    If you use Microsoft Agent Framework to build applications that operate with third-party servers or agents, you do so at your own risk. We recommend reviewing all data being shared with third-party servers or agents and being cognizant of third-party practices for retention and location of data. It is your responsibility to manage whether your data will flow outside of your organization’s Azure compliance and geographic boundaries and any related implications.

    Installation

    Python:

    pip install agent-framework --pre
    

    .NET:

    dotnet add package Microsoft.Agents.AI
    

    AI Agents

    What is an AI agent?

    An AI agent uses an LLM to process user inputs, make decisions,
    call tools and MCP servers to perform actions,
    and generate responses.
    The following diagram illustrates the core components and their interactions in an AI agent:

    An AI agent can also be augmented with additional components such as
    a thread,
    a context provider,
    and middleware
    to enhance its capabilities.

    When to use an AI agent?

    AI agents are suitable for applications that require autonomous decision-making,
    ad hoc planning, trial-and-error exploration, and conversation-based user interactions.
    They are particularly useful for scenarios where the input task is unstructured and cannot be
    easily defined in advance.

    Here are some common scenarios where AI agents excel:

    • Customer Support: AI agents can handle multi-modal queries (text, voice, images)
      from customers, use tools to look up information, and provide natural language responses.
    • Education and Tutoring: AI agents can leverage external knowledge bases to provide
      personalized tutoring and answer student questions.
    • Code Generation and Debugging: For software developers, AI agents can assist with
      implementation, code reviews, and debugging by using various programming tools and environments.
    • Research Assistance: For researchers and analysts, AI agents can search the web,
      summarize documents, and piece together information from multiple sources.

    The key is that AI agents are designed to operate in a dynamic and underspecified
    setting, where the exact sequence of steps to fulfill a user request is not known
    in advance and might require exploration and close collaboration with users.

    When not to use an AI agent?

    AI agents are not well-suited for tasks that are highly structured and require
    strict adherence to predefined rules.
    If your application anticipates a specific kind of input and has a well-defined
    sequence of operations to perform, using AI agents might introduce unnecessary
    uncertainty, latency, and cost.

    If you can write a function to handle the task, do that instead of using an AI agent. You can use AI to help you write that function.

    A single AI agent might struggle with complex tasks that involve multiple steps
    and decision points. Such tasks might require a large number of tools (for example, over 20),
    which a single agent cannot feasibly manage.

    In these cases, consider using workflows instead.

    Workflows

    What is a Workflow?

    A workflow can express a predefined sequence of operations that can include AI agents as components while maintaining consistency and reliability. Workflows are designed to handle complex and long-running processes that might involve multiple agents, human interactions, and integrations with external systems.

    The execution sequence of a workflow can be explicitly defined, allowing for more control over the execution path. The following diagram illustrates an example of a workflow that connects two AI agents and a function:

    Workflows can also express dynamic sequences using
    conditional routing, model-based decision making, and concurrent
    execution. This is how multi-agent orchestration patterns are implemented.
    The orchestration patterns provide mechanisms to coordinate multiple agents
    to work on complex tasks that require multiple steps and decision points,
    addressing the limitations of single agents.

    What problems do Workflows solve?

    Workflows provide a structured way to manage complex processes that involve multiple steps, decision points, and interactions with various systems or agents. The types of tasks workflows are designed to handle often require more than one AI agent.

    Here are some of the key benefits of Agent Framework workflows:

    • Modularity: Workflows can be broken down into smaller, reusable components, making it easier to manage and update individual parts of the process.
    • Agent Integration: Workflows can incorporate multiple AI agents alongside non-agentic components, allowing for sophisticated orchestration of tasks.
    • Type Safety: Strong typing ensures messages flow correctly between components, with comprehensive validation that prevents runtime errors.
    • Flexible Flow: Graph-based architecture allows for intuitive modeling of complex workflows with executors and edges. Conditional routing, parallel processing, and dynamic execution paths are all supported.
    • External Integration: Built-in request/response patterns enable seamless integration with external APIs and support human-in-the-loop scenarios.
    • Checkpointing: Save workflow states via checkpoints, enabling recovery and resumption of long-running processes on the server side.
    • Multi-Agent Orchestration: Built-in patterns for coordinating multiple AI agents, including sequential, concurrent, hand-off, and Magentic.
    • Composability: Workflows can be nested or combined to create more complex processes, allowing for scalability and adaptability.

    Next steps

    • Quickstart Guide
    • Migration Guide from Semantic Kernel
    • Migration Guide from AutoGen
    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleMt. Gox CEO Karpelès Reveals Details of 2014 Collapse and Japanese Detention
    Next Article Show HN: Vibium – Browser automation for AI and humans, by Selenium’s creator
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Spotify’s new feature makes it easier to find popular audiobooks

    March 3, 2026

    This portable JBL Grip Bluetooth speaker is so good at 20% off

    March 3, 2026

    ‘AI’ could dox your anonymous posts

    March 3, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025703 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025286 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Gadgets March 4, 2026

    Honda CR-V Hybrid Lineup Expanded in Malaysia From RM178,200

    Honda CR-V Hybrid Lineup Expanded in Malaysia From RM178,200 Honda Malaysia has officially launched the…

    vivo V70 – Top 7 Flagship Features You Will Love

    Apple iPad Air with M4 Officially Launches in Malaysia From RM2,799

    Apple Launches iPhone 17e in Malaysia from RM2,999

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Honda CR-V Hybrid Lineup Expanded in Malaysia From RM178,200

    March 4, 20262 Views

    vivo V70 – Top 7 Flagship Features You Will Love

    March 4, 20262 Views

    Apple iPad Air with M4 Officially Launches in Malaysia From RM2,799

    March 4, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.