Best of langgraphJune 2025

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·46w

    The Open Source LLM Agent Handbook: How to Automate Complex Tasks with LangGraph and CrewAI

    LLM agents are proactive AI systems that can break down complex tasks, make decisions, and use tools autonomously, unlike traditional reactive chatbots. The guide demonstrates building agents using open-source frameworks LangGraph and CrewAI to automate daily tasks like email summarization and schedule generation. LangGraph provides graph-based workflows for single agents, while CrewAI enables multi-agent collaboration with specialized roles. The tutorial includes practical code examples for creating an email processing agent that extracts meetings and deadlines, then formats them into organized daily schedules. Both frameworks integrate with OpenAI's models and offer structured approaches to agent development without requiring extensive custom code.

  2. 2
    Video
    Avatar of TechWithTimTech With Tim·45w

    Python Advanced AI Agent Tutorial - LangGraph, LangChain, Tools & More!

    A comprehensive tutorial on building advanced AI agents using LangGraph, LangChain, and Firecrawl. The guide demonstrates creating a coding research assistant that follows structured multi-step workflows to research developer tools and frameworks. It covers both simple agent creation using MCP servers and advanced implementations with custom workflows, structured outputs using Pydantic models, and controlled agent flow through graph-based state management.

  3. 3
    Article
    Avatar of langchainLangChain·45w

    Benchmarking Multi-Agent Architectures

    LangChain researchers benchmarked three multi-agent architectures (single agent, swarm, and supervisor) using a modified Tau-bench dataset with distractor domains. The swarm architecture performed best overall, while the single agent baseline degraded significantly with additional context. The supervisor architecture showed promise after optimizations like removing handoff messages and implementing message forwarding, achieving nearly 50% performance improvement. Multi-agent systems offer benefits in modularity, scalability, and handling multiple domains, though custom architectures typically outperform generic ones for specific applications.