Overview LangChain is the framework the entire AI agent industry was built around, for better and worse. It launched in late 2022 as a Python library for chaining LLM calls together, arrived at the same moment ChatGPT went viral, and rode that wave to become — briefly — the default way you built anything with an LLM. Three years later it is still the default for a large fraction of engineers, still the most forked agent framework on GitHub, and still the framework that half the community loves and half the community complains about for good reason. The honest 2026 picture: LangChain is not one product. It is a family. The Python and JavaScript SDKs are the framework layer. LangGraph is the newer stateful workflow layer that most serious teams migrated to over the past eighteen months. LangSmith is the paid observability platform that ties everything together and is the actual commercial engine of the company. LangServe deploys chains as APIs. LangGraph Cloud is the newest hosted runtime. When someone says "we use LangChain," the interesting question is which of these they mean. The distinctive positioning versus Dify and CrewAI is that LangChain is a library, not a platform. There is no visual builder, no hosted runtime by default, no admin console. You install a package, you write Python or TypeScript, you deploy the artifact yourself. In exchange, you get the deepest integration surface in the industry — every major LLM, every vector database, every embedding model, every document loader…