Skip to main content
Sections BusinessAI Tools
MyBusinessFeed

Monday, 24 August 2026

Business

AI Agent Builders Compared: The Six Frameworks Running Production Agents in 2026

Every framework here is free. None is free to run — and the difference between them comes down to one decision: whether your code or the model decides what happens next.

AI agent builders platform tools for creating intelligent automation systems
AI agent builders platforms used to create intelligent automation systems and AI-powered workflows

Six frameworks now account for most production agent deployments: LangGraph, CrewAI, the OpenAI Agents SDK, the Claude Agent SDK, Google’s ADK and Microsoft’s Agent Framework. All of them are free to use. None of them is free to run.

That second sentence is where the real comparison lives, and it is the one most round-ups skip. Here is what each is actually good at, and the single technical difference that decides what your agent costs every day it runs.

Code on screen
Every framework here is free. None is free to run.

The difference that matters most: who decides what happens next

Before the individual platforms, the architectural fork that separates them.

Some frameworks let the model decide which agent or tool handles the next step. Others make your code decide, using explicit rules and edges. It sounds like a matter of taste. It is a permanent line item.

Model-decided routing means every task pays for extra reasoning calls just to work out what to do next. On one research-and-summarise workflow, a role-delegation framework spent $4.10 in prompt tokens on orchestration alone, while a graph-based framework spent close to nothing on routing, because the routing was ordinary code.

That gap does not appear in a prototype. It appears in month three, at volume, on the invoice.

The six, and what each is for

LangGraph — the production default

A directed graph where you define nodes and the edges between them, with routing handled in code rather than by the model. It is described as the most battle-tested for production, and it is the one with the largest named deployments: Klarna running it at 85 million users with an 80% reduction in average resolution time, alongside LinkedIn, Uber and Replit.

Reported to use 30–40% fewer tokens than CrewAI on medium-complexity tasks, with around 120ms of orchestration overhead per node against roughly 450ms. It added per-node timeouts and a streaming API during 2026.

Choose it if: you need complex state, conditional logic, human approval steps, model flexibility, or observability you can show an auditor.

CrewAI — the fastest way to a working prototype

Role-based teams: each agent gets a role, a goal and a backstory, and the model handles delegation between them. The mental model is intuitive enough that a working two-agent pipeline is roughly 25 lines of code, and it has around 52,000 GitHub stars. NVIDIA announced a CrewAI Factory partnership for GPU-optimised deployment. Version 1.14.6 added pluggable memory, knowledge and RAG backends plus a Chat API.

The trade-off is the one above: approximately 4,500 tokens per task run against under 2,000 for LangGraph, because delegation itself costs model calls.

Choose it if: you are new to agents, need something demonstrable this week, and prototype speed matters more than unit economics.

Claude Agent SDK — for agents that touch code and files

Ships with a built-in tool catalogue inherited from the Claude Code runtime: file read and write, shell execution, code editing, web search, grep. It also supports spawning subagents for parallel work.

Choose it if: your agent’s job involves a filesystem, a repository or a shell — the tools you would otherwise spend weeks building are already there.

OpenAI Agents SDK — sandboxed execution with memory of its workspace

Rather than orchestrating tools inside your host process, it spins up isolated sandbox environments, with persistent storage backends including S3, R2, GCS and Azure Blob so workspace state survives between runs.

Choose it if: you are committed to OpenAI’s models and want isolation and persistent workspaces without building that plumbing.

Google ADK 2.0 — multi-language, cloud-native

Reached general availability on 19 May 2026. It moved from hierarchical execution to a graph-based workflow engine, supports the Agent2Agent (A2A) protocol for cross-framework communication, and has the broadest language coverage of the six — Python, TypeScript, Go, Java and Kotlin.

Choose it if: you are on Google Cloud, or your team is not a Python team.

Microsoft Agent Framework 1.0 — the enterprise .NET path

Released on 3 April 2026 as the unified successor to Semantic Kernel and AutoGen, folding two previously separate projects into one. Deep Azure, Microsoft 365 and Entra ID identity integration.

Choose it if: you are a .NET shop inside the Microsoft estate, where identity and compliance integration outweighs framework elegance.

A developer at work
A two-agent pipeline is roughly 25 lines of code.

What it costs

Every framework here is free. The spend is tokens, and agentic workloads are token-hungry by design: a single agentic loop typically generates 10 to 20 LLM calls per task. Reported API spend for teams using agentic tooling runs $200 to $2,000+ per engineer per month, and inference now accounts for around 55% of AI cloud spending.

So the framework decision is not a licensing decision, it is a consumption decision. A framework that adds two model calls per task multiplies that by your task volume, forever.

Cloud infrastructure
Inference is now around 55% of AI cloud spending.

Most teams do not pick one

Worth knowing before you agonise over the choice: most production teams reportedly run two or three of these, behind an AI gateway that gives them unified cost tracking, failover between providers and the ability to change model without changing code.

That is not indecision. It reflects a real asymmetry — the framework that gets you to a demo fastest is rarely the one you want carrying production traffic. Prototyping in one and hardening in another is a legitimate strategy, and it is easier if you keep your tool definitions and prompts framework-agnostic from day one.

A terminal session
Agents that touch files and shells need a different toolset.

How to choose, in four questions

  1. Does a human approve anything? If yes, you want explicit graph control, not model-decided delegation.
  2. What is your task volume? Low volume makes routing cost irrelevant and prototype speed decisive. High volume inverts that completely.
  3. What does the agent touch? Files and shells point to the Claude Agent SDK; sandboxes and persistent workspaces to the OpenAI SDK; existing enterprise identity to Microsoft.
  4. What language is your team? Most of these are Python-first. Google ADK is the one that genuinely is not.

A note on the numbers above: token and latency benchmarks come from vendor and comparison write-ups rather than independent testing, and they are highly workload-dependent. Treat them as direction, not measurement — and run your own comparison on your own workload before committing at scale.

If you want the engineering detail behind these choices, see our walkthrough of how to build an AI agent. If you are deciding whether to deploy agents at all rather than which framework to use, start with what businesses are actually using AI agents for.

An engineering team planning
Most production teams run two or three frameworks behind a gateway.

Frequently asked questions

What is the best AI agent framework in 2026?

There is no single best. LangGraph is generally regarded as the most production-ready for complex workflows, CrewAI as the fastest to prototype with, the Claude Agent SDK for coding and file-based agents, the OpenAI Agents SDK for sandboxed execution, Google ADK for multi-language cloud deployments and Microsoft Agent Framework for .NET enterprises.

How much do AI agent frameworks cost?

The frameworks are free. The cost is token consumption — typically 10 to 20 model calls per agentic task, with reported API spend of $200 to $2,000+ per engineer per month on teams using agentic tooling.

Why is CrewAI more expensive to run than LangGraph?

CrewAI uses model calls to decide delegation between agents, so orchestration itself consumes tokens. LangGraph routes in code. On a comparable workflow this was measured at $4.10 of orchestration tokens versus close to zero.

Which frameworks have real production deployments?

LangGraph has the most publicly named: Klarna at 85 million users with an 80% cut in average resolution time, plus LinkedIn, Uber and Replit. NVIDIA has announced a CrewAI partnership for GPU-optimised deployment.

What happened to Semantic Kernel and AutoGen?

Microsoft released Agent Framework 1.0 on 3 April 2026 as the unified successor to both.

Should I use more than one framework?

Many production teams run two or three behind an AI gateway, prototyping in one and hardening in another. If you expect to, keep tool definitions and prompts framework-agnostic from the start.

Framework details, version numbers and benchmarks reflect published comparisons as at August 2026 and move quickly. Benchmark figures are vendor-reported and workload-dependent — verify against your own use case.

Related stories

Scroll to Top