LangChain is the most-used open-source framework for building AI agents in 2026. You write code (Python or JavaScript) and LangChain gives you the building blocks: prompts, chains, agents, memory, tools, vector stores. It is the workhorse other tools build on top of, including CrewAI and parts of Dify.
LangChain is a framework, not a product. You install it from pip or npm and you write code. The framework gives you abstractions for everything an AI agent does: call an LLM, format a prompt, parse output, call a tool, remember the conversation, store and retrieve from a vector database.
On top of the framework, LangChain Inc. (the company) ships paid products. LangSmith is the big one. It is an observability and evaluation platform for agents you built with LangChain. Deep Agents is the framework for long-running agents. LangGraph is the lower-level state machine that powers complex agent flows.
In May 2026, LangChain released a wave of updates including LangSmith Engine (an agent that improves your other agents), Managed Deep Agents, LangSmith Sandboxes (now generally available), and Delta Channels for long-running agents (source: blog.langchain.com, May 2026).
| Product | Price | What you get |
|---|---|---|
| LangChain framework | Free (MIT) | Full open-source library, run anywhere |
| LangSmith (Developer) | Free | 1 seat, limited monthly traces |
| LangSmith (Plus) | $39/seat/month | Up to 10 seats, more traces, custom evaluators |
| LangSmith (Enterprise) | Custom | SSO, audit logs, self-host option |
Prices change. Verified May 2026. Check current rates at langchain.com/pricing.
| Axis | LangChain | CrewAI | LlamaIndex |
|---|---|---|---|
| Primary use case | Agents + RAG + general LLM apps | Multi-agent role assignment | Data ingestion + RAG |
| Language | Python + JavaScript | Python | Python |
| Multi-agent native | Possible (via LangGraph) | Yes (core) | Limited |
| Observability tool | LangSmith | CrewAI AMP | LlamaTrace |
| Best for | Full-control devs | Multi-agent teams | Data-heavy RAG |
Full breakdowns: LangChain vs CrewAI and LangChain vs LlamaIndex.
Pros:
Cons:
Our marketplace lists AI tools built by third-party developers. The ones that hold up in production are usually built with LangChain or a similar code-first framework. When I prototyped a competitor-bid agent for Amazon ads, I started in LangChain because I wanted to see every tool call, retry, and token cost. LangSmith made debugging an actual job, not a guessing game.
The framework is free. LangSmith has a free Developer tier for solo projects.
Building an Amazon-targeted agent? See the Amazon AI hub for sector-specific picks.
LangChain is an open-source Python and JavaScript framework for building AI agents and LLM apps. It gives you the building blocks (prompts, chains, agents, memory, tools) and you write code to assemble them.
Yes, the open-source framework is MIT licensed. LangSmith (the observability and evaluation platform) has a free tier and paid plans. You pay for LangSmith, not LangChain itself.
Pick LangChain if you want maximum control, single-agent + tools, or RAG. Pick CrewAI if you want multi-agent collaboration with role-based agents. CrewAI is actually built on top of LangChain primitives in many cases.
Deep Agents is LangChain's framework for long-running agents (released and updated through 2026). LangSmith Engine, released in May 2026, is an agent that improves your other agents by analyzing run traces and suggesting prompt and tool changes.