Tagged articles

LangGraph

185 articles · Page 1 of 2
AI Engineer Programming
AI Engineer Programming
Aug 15, 2026 · Artificial Intelligence

Mastering Stateful AI Agent Orchestration with LangGraph

LangGraph is an open‑source framework that replaces linear LLM pipelines with graph‑based, stateful agents, offering loops, conditional branching, persistent checkpoints, human‑in‑the‑loop support, and built‑in monitoring, enabling complex multi‑step workflows that scale from simple chatbots to enterprise‑grade AI assistants.

AI workflowLLM AgentsLangChain
0 likes · 20 min read
Mastering Stateful AI Agent Orchestration with LangGraph
Linyb Geek Road
Linyb Geek Road
Aug 10, 2026 · Artificial Intelligence

Is Loop Engineering Dead? Understanding the New Paradigm of Graph Engineering

The article examines why Loop Engineering is giving way to Graph Engineering, detailing the five‑layer evolution, structural flaws of single‑loop systems, the advantages of graph‑based multi‑agent orchestration, real‑world examples, cost‑benefit analysis, and practical guidance on when to adopt graph engineering.

Graph EngineeringLangGraphLoop Engineering
0 likes · 23 min read
Is Loop Engineering Dead? Understanding the New Paradigm of Graph Engineering
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Jul 31, 2026 · Artificial Intelligence

From Loop to Graph: Engineering Agents to Eliminate Process Fragmentation

The article explains why agents fail due to missing memory and workflow management, introduces Loop Engineering’s six‑step control model, shows its limits for complex multi‑system processes, and presents LangGraph‑based graph engineering recipes—including SQL repair loops, evidence‑gated RAG, and human‑in‑the‑loop checkpoint recovery—to build reliable, auditable enterprise agents.

Agent EngineeringEnterprise AILangGraph
0 likes · 13 min read
From Loop to Graph: Engineering Agents to Eliminate Process Fragmentation
DeepHub IMBA
DeepHub IMBA
Jul 28, 2026 · Artificial Intelligence

Why Multi‑Agent Systems Are Fundamentally Distributed Systems

Multi‑agent workflows often deadlock or drift because their agents behave like distributed nodes, so treating them as a distributed system reveals classic failure modes—deadlocks, state pollution, lack of timeouts, and missing idempotency—allowing proven engineering practices to keep AI pipelines reliable.

AI engineeringLangChainLangGraph
0 likes · 14 min read
Why Multi‑Agent Systems Are Fundamentally Distributed Systems
AI Engineer Programming
AI Engineer Programming
Jul 28, 2026 · Artificial Intelligence

Control State vs Data State in AI Agents: From Turing Machines to LangGraph

This article explains the distinction between control state and data state in AI agent frameworks, tracing the concept from Turing machines through operating systems, databases, and compilers, and shows how LangGraph separates these states via a three‑layer architecture, code examples, and design guidelines.

AI agentsLangGraphState Management
0 likes · 13 min read
Control State vs Data State in AI Agents: From Turing Machines to LangGraph
Su San Talks Tech
Su San Talks Tech
Jul 25, 2026 · Artificial Intelligence

What Exactly Is Graph Engineering and Why It’s Trending in AI?

Graph Engineering isn’t a brand‑new technology but a shift from single‑agent loops to a network of specialized nodes, edges, and shared state that lets multiple AI agents collaborate, run in parallel, and avoid context decay, with practical LangGraph examples, pros, cons, and when to adopt it.

AI workflowDAGGraph Engineering
0 likes · 23 min read
What Exactly Is Graph Engineering and Why It’s Trending in AI?
AI Engineering
AI Engineering
Jul 23, 2026 · Artificial Intelligence

Is Graph Engineering Really New? Why LangChain Says It’s Not

The article explains that Graph Engineering isn’t a brand‑new concept but an evolution of Prompt, Loop, and Harness engineering, detailing how LangGraph has been used for three years, the core components of graph‑based agents, practical patterns, pitfalls, and when to choose graphs over other approaches.

AI workflowAgent GraphsDynamic Routing
0 likes · 13 min read
Is Graph Engineering Really New? Why LangChain Says It’s Not
HyperAI Super Neural
HyperAI Super Neural
Jul 23, 2026 · Artificial Intelligence

ChemGraph: 13 Benchmarks Reveal LLM Agent’s Capabilities in Computational Chemistry

The Argonne National Laboratory team introduces ChemGraph, an LLM‑driven agent for computational chemistry, and evaluates it across 13 benchmark tasks, showing that small models excel on simple tasks while larger models and multi‑agent designs dramatically improve performance on complex molecular simulations.

AI automationChemGraphLLM Agents
0 likes · 11 min read
ChemGraph: 13 Benchmarks Reveal LLM Agent’s Capabilities in Computational Chemistry
Tech Freedom Circle
Tech Freedom Circle
Jul 14, 2026 · Artificial Intelligence

Designing Production‑Grade Observability and Evaluation with Langfuse + RAGAS for LLM Applications

This article presents a comprehensive, production‑ready guide for building end‑to‑end observability and quantitative evaluation of LLM‑powered RAG/Agent systems using the open‑source Langfuse platform together with the RAGAS benchmark, covering architecture, installation, code instrumentation, dataset management, metric collection, and best‑practice recommendations.

LLM observabilityLangChainLangGraph
0 likes · 46 min read
Designing Production‑Grade Observability and Evaluation with Langfuse + RAGAS for LLM Applications
Data Party THU
Data Party THU
Jul 7, 2026 · Artificial Intelligence

Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph

This article explains how to use LangGraph to create a hybrid RAG agent that dynamically selects between vector, graph, web, or direct LLM retrieval, detailing the router, grader, rewriter, generator, and hallucination‑checking components along with a complete Python implementation.

Hybrid AgentLLMLangGraph
0 likes · 16 min read
Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph
Linyb Geek Road
Linyb Geek Road
Jun 26, 2026 · Artificial Intelligence

What Is AI Orchestration? Concepts, Tools, and Common Pitfalls Explained

The article breaks down AI orchestration as a management layer that routes tasks, maintains state, executes tools, handles retries, and coordinates multiple agents, comparing frameworks like LangGraph and CrewAI while highlighting practical pitfalls and best‑practice advice for building reliable multi‑step AI workflows.

AI orchestrationCrewAILangGraph
0 likes · 20 min read
What Is AI Orchestration? Concepts, Tools, and Common Pitfalls Explained
DeepHub IMBA
DeepHub IMBA
Jun 25, 2026 · Artificial Intelligence

Transform a Single RAG Pipeline with LangGraph – Agent Picks Vector, Graph or Web Search

This article demonstrates how to use LangGraph to build a state‑machine‑based hybrid RAG agent that routes each query to the most suitable retriever—vector similarity, graph traversal, or web search—through a Router, and then validates answers with grading, rewriting, generation, and hallucination‑checking components.

Agentic RetrievalFAISSLLM
0 likes · 12 min read
Transform a Single RAG Pipeline with LangGraph – Agent Picks Vector, Graph or Web Search
DeWu Technology
DeWu Technology
Jun 24, 2026 · Artificial Intelligence

From Forms to AI Agents: Redesigning Community Event Workflows with LLM‑Powered Agents

The article chronicles how a marketing activity that required ten system switches and over forty manual fields was transformed by replacing simple AI‑assisted form filling with a two‑stage Agent architecture and an aggregated workbench, detailing the architectural choices, trade‑offs, and practical lessons learned.

AI workflowAgentAutomation
0 likes · 20 min read
From Forms to AI Agents: Redesigning Community Event Workflows with LLM‑Powered Agents
TechVision Expert Circle
TechVision Expert Circle
Jun 24, 2026 · Operations

Avoid the 5 Hidden Pitfalls When Deploying Enterprise AI Agents (Part 2)

The article analyzes five often‑overlooked pitfalls that emerge when scaling enterprise AI agents to production—mis‑chosen orchestration architecture, lack of tool‑level circuit breaking, state‑splitting among multiple agents, absent evaluation frameworks, and unclear security boundaries—offering concrete causes and practical mitigation strategies.

AI agentsEvaluation FrameworkLangGraph
0 likes · 13 min read
Avoid the 5 Hidden Pitfalls When Deploying Enterprise AI Agents (Part 2)
DataFunSummit
DataFunSummit
Jun 19, 2026 · Artificial Intelligence

Mastering Data Acquisition for AI Agents: From Crawler Pitfalls to MCP Browser Control

The article distills three Bright Data webinars, detailing how to overcome traditional web‑crawling challenges with an adaptive Crawler API, integrate the Model Context Protocol (MCP) for human‑like browser control, and build a LangGraph‑powered AI search engine while addressing compliance, billing, and scaling considerations.

AI agentsAPI billingBright Data
0 likes · 15 min read
Mastering Data Acquisition for AI Agents: From Crawler Pitfalls to MCP Browser Control
DeepHub IMBA
DeepHub IMBA
Jun 16, 2026 · Artificial Intelligence

10 Essential LangChain & LangGraph Concepts Every AI Engineer Must Master

The article outlines ten core concepts—State, Node, Chain vs Graph, Routing, Retrieval, Structured Output, Streaming, Memory, Checkpointing, and Human‑in‑the‑Loop—explaining why they are crucial for building reliable, scalable AI agents and showing concrete Python examples for each.

AI agentsLangChainLangGraph
0 likes · 11 min read
10 Essential LangChain & LangGraph Concepts Every AI Engineer Must Master
Coder Trainee
Coder Trainee
Jun 12, 2026 · Artificial Intelligence

From Solo to Team: Multi‑Agent Collaboration with AutoGen, CrewAI, and LangGraph

This article explains why a single AI agent often falls short for complex tasks, outlines the benefits of multi‑agent collaboration, compares common architecture patterns, and provides hands‑on examples using AutoGen, CrewAI, and LangGraph, followed by a real‑world customer‑service team case and best‑practice guidelines.

AI agentsAgent ArchitectureAutoGen
0 likes · 14 min read
From Solo to Team: Multi‑Agent Collaboration with AutoGen, CrewAI, and LangGraph
Tech Freedom Circle
Tech Freedom Circle
Jun 3, 2026 · Artificial Intelligence

How I Integrated LangGraph, RAG, Memory, and MCP into an Enterprise AI Assistant

The article presents a production‑grade, six‑layer architecture for an AI assistant that unifies LangGraph state orchestration, industrial‑strength RAG pipelines, multi‑level memory management, and the Model Context Protocol (MCP), addressing integration fragmentation, fault tolerance, observability, and security to enable scalable enterprise deployments.

AI assistantEnterprise ArchitectureLangGraph
0 likes · 33 min read
How I Integrated LangGraph, RAG, Memory, and MCP into an Enterprise AI Assistant
The Dominant Programmer
The Dominant Programmer
Jun 3, 2026 · Backend Development

Building a LangGraph‑Style YAML DSL Workflow Engine with Spring AI

This article walks through constructing a lightweight YAML‑based DSL workflow engine on Spring AI 1.1.2 and Ollama, showing how to define state graphs, register tools, parse and execute nodes—including conditional edges, while loops, and parallel branches—without external orchestration tools.

LangGraphSpring AIWorkflow Engine
0 likes · 17 min read
Building a LangGraph‑Style YAML DSL Workflow Engine with Spring AI
Alibaba Middleware
Alibaba Middleware
May 27, 2026 · Cloud Native

Blade AI – Open‑Source AI Agent that Automates Full‑Cycle Chaos Engineering with Natural Language

Blade AI, the new open‑source intelligent layer for ChaosBlade, lets SREs describe fault scenarios in natural language and automatically handles target discovery, safety checks, execution, verification, and recovery, reducing a typical 20‑30 minute chaos experiment to a few seconds and enabling daily resilience testing.

AI automationCLIChaos Engineering
0 likes · 17 min read
Blade AI – Open‑Source AI Agent that Automates Full‑Cycle Chaos Engineering with Natural Language
James' Growth Diary
James' Growth Diary
May 25, 2026 · Artificial Intelligence

Practical Agent Performance Tuning: Slash Latency 75%, Cut Token Costs 71%, Boost Throughput 217%

The article walks through a systematic performance map of LangChain agents and demonstrates concrete latency, token‑usage, and concurrency optimizations—streaming responses, Redis caching, model routing, prompt trimming, context summarisation, dynamic tool selection, parallel graph nodes and batch processing—showing real‑world gains of up to 75% lower latency, 71% fewer tokens and a 217% throughput increase.

Agent OptimizationLangChainLangGraph
0 likes · 30 min read
Practical Agent Performance Tuning: Slash Latency 75%, Cut Token Costs 71%, Boost Throughput 217%
AndroidPub
AndroidPub
May 18, 2026 · Artificial Intelligence

Five Agent Architecture Paradigms and How to Choose the Right One

The article analyzes five common agent architecture paradigms, explains their strengths and weaknesses, recommends suitable frameworks for each, and provides a five‑step decision process to help teams select the most appropriate architecture for their business needs.

AgentAutoGenLangGraph
0 likes · 16 min read
Five Agent Architecture Paradigms and How to Choose the Right One
James' Growth Diary
James' Growth Diary
May 17, 2026 · Artificial Intelligence

When an Agent Fails: Retry, Fallback, and Human Takeover Strategies

The article classifies agent failures into transient, structural, and semantic types, compares how Claude Code, OpenAI Codex, and Google Gemini CLI agents handle errors, and shows how LangGraph implements robust retry policies, fallback routing, and human‑in‑the‑loop handoff with concrete code examples and best‑practice guidelines.

AgentFallbackLangGraph
0 likes · 16 min read
When an Agent Fails: Retry, Fallback, and Human Takeover Strategies
James' Growth Diary
James' Growth Diary
May 16, 2026 · Artificial Intelligence

Dynamic Tool Selection Unpacked: Let the Agent Choose the Right Tool with Three Strategies

The article analyzes why binding all tools to an LLM agent is costly and error‑prone, presents benchmark data showing token usage dropping six‑fold and error rates falling by up to five times with dynamic selection, and details three practical strategies—vector retrieval, LLM routing, and rule‑semantic hybrid—along with implementation tips, description engineering, multi‑turn handling, and common pitfalls.

AgentLLMLangGraph
0 likes · 17 min read
Dynamic Tool Selection Unpacked: Let the Agent Choose the Right Tool with Three Strategies
James' Growth Diary
James' Growth Diary
May 14, 2026 · Artificial Intelligence

LLM Semantic Routing Explained: Model‑Based Intent Classification and Three Keyword‑Matching Pitfalls

This article breaks down LLM semantic routing as a classifier, compares keyword, embedding, and LLM‑based routes, provides full TypeScript implementations, introduces hybrid routing for speed and accuracy, and covers production‑grade observability and dynamic configuration to avoid common pitfalls.

Hybrid RoutingLLMLangChain
0 likes · 33 min read
LLM Semantic Routing Explained: Model‑Based Intent Classification and Three Keyword‑Matching Pitfalls
AI Engineer Programming
AI Engineer Programming
May 13, 2026 · Artificial Intelligence

AI Agent Architecture Patterns: How to Choose the Right Solution for Your Workload

The article analyzes how AI agent architecture choices—single‑agent versus multi‑agent, ReAct, plan‑and‑execute, orchestrator‑worker, hierarchical teams, reflection, and HITL—affect cost, reliability, and scalability, providing quantitative trade‑offs and industry examples to guide workload‑specific selection.

AI agentsLangGraphReAct
0 likes · 16 min read
AI Agent Architecture Patterns: How to Choose the Right Solution for Your Workload
AI Architecture Hub
AI Architecture Hub
May 10, 2026 · Artificial Intelligence

2026 AI Engineer Roadmap: Master Agent Engineering and Scheduling

This guide outlines a six‑stage, 17‑week roadmap for becoming a production‑ready AI agent engineer by 2026, detailing essential skills such as LangGraph orchestration, Claude Agent SDK scheduling, context‑engineering primitives, evaluation pipelines, and curated free resources while warning against over‑hyped frameworks.

AI engineeringAgentic SystemsClaude Agent SDK
0 likes · 18 min read
2026 AI Engineer Roadmap: Master Agent Engineering and Scheduling
Linyb Geek Road
Linyb Geek Road
May 10, 2026 · Artificial Intelligence

Designing Progressive Large‑Model Agents: Architecture, Frameworks, and Real‑World Practices

This article examines the evolution of large‑model agents, outlines four development stages, compares workflow, collaborative, and evolutionary frameworks, details core components such as perception, memory, planning, tools, and reflection, and explains how a progressive, loop‑based architecture can be applied across verticals like research, code generation, and complex workflow automation.

Agent ArchitectureAlphaEvolveLLM Agents
0 likes · 9 min read
Designing Progressive Large‑Model Agents: Architecture, Frameworks, and Real‑World Practices
James' Growth Diary
James' Growth Diary
May 9, 2026 · Artificial Intelligence

Agentic RAG Deep Dive: Letting the Agent Decide When and How Often to Retrieve

The article analyzes the shortcomings of traditional one‑shot RAG pipelines, introduces four Agentic RAG patterns that let an LLM‑driven agent control retrieval strategy, source selection, query rewriting and retry limits, and provides concrete TypeScript implementations with LangGraph, code snippets, and practical pitfalls.

Agentic RAGLLMLangGraph
0 likes · 16 min read
Agentic RAG Deep Dive: Letting the Agent Decide When and How Often to Retrieve
Data Party THU
Data Party THU
May 7, 2026 · Artificial Intelligence

Step‑by‑Step Guide to Building a Multi‑Agent Trading System for End‑to‑End Intelligent Decisions

This article walks through constructing a multi‑agent trading platform—analysts, researchers, traders, risk managers, and a portfolio manager—using LangChain, LangGraph, and LLMs (gpt‑4o, gpt‑4o‑mini), with real‑time data tools, shared and long‑term memory, ReAct loops, structured debates, and a final executable trade proposal.

ChromaDBFinancial AILLM
0 likes · 46 min read
Step‑by‑Step Guide to Building a Multi‑Agent Trading System for End‑to‑End Intelligent Decisions
Tech Ocean
Tech Ocean
May 7, 2026 · Artificial Intelligence

Replace ConversationSummaryBufferMemory with Six Lines of Code in LangChain 1.x

The article explains why the old LangChain memory classes are deprecated, breaks down the new 1.x memory architecture into three independent components, and shows how to replace ConversationSummaryBufferMemory with a concise six‑line agent setup that supports multi‑user isolation, persistence, and summarization middleware.

AgentLangChainLangGraph
0 likes · 12 min read
Replace ConversationSummaryBufferMemory with Six Lines of Code in LangChain 1.x
Smart Workplace Lab
Smart Workplace Lab
May 6, 2026 · Artificial Intelligence

Latest Multi-Agent Collaboration Case Studies: Successes, Failures, and Architecture (May 2026)

The article analyzes multi‑agent collaboration as the core evolution of Agentic AI, presenting 2026 success cases from JP Morgan, enterprise onboarding, supply‑chain orchestration, and customer support, while dissecting failure patterns, governance risks, and recommended frameworks such as CrewAI, LangGraph, and AutoGen.

AI governanceAutoGenCrewAI
0 likes · 8 min read
Latest Multi-Agent Collaboration Case Studies: Successes, Failures, and Architecture (May 2026)
Tech Ocean
Tech Ocean
May 5, 2026 · Artificial Intelligence

Choosing Between LangChain, LangGraph, and Deep Agents: A Visual Guide

The article compares LangChain, LangGraph, and Deep Agents, outlining their roles, core differences, strengths, and weaknesses, and then maps typical LLM‑agent development scenarios to the most suitable framework, providing a concise decision matrix for developers.

AI developmentDeep AgentsLLM
0 likes · 7 min read
Choosing Between LangChain, LangGraph, and Deep Agents: A Visual Guide
Tech Ocean
Tech Ocean
May 5, 2026 · Artificial Intelligence

Build a Runnable Knowledge‑Base QA Skeleton with Deep Agents in 10 Days

This article walks through a lightweight, runnable knowledge‑base question‑answering skeleton built with Deep Agents, explains its current capabilities and limitations, shows the project structure and core code, and outlines a step‑by‑step upgrade path toward a production‑grade RAG system.

AgentCLIDeep Agents
0 likes · 13 min read
Build a Runnable Knowledge‑Base QA Skeleton with Deep Agents in 10 Days
Tech Ocean
Tech Ocean
May 5, 2026 · Artificial Intelligence

From Local Deep Agent to Callable Service: CLI vs API Integration Guide

The article explains how to transition Deep Agents from a local CLI debugging tool to production-ready callable services, comparing CLI, Python SDK, LangGraph service, and ACP, and provides practical code examples, deployment steps, and a pre‑launch checklist for secure enterprise integration.

APIAgent IntegrationCLI
0 likes · 11 min read
From Local Deep Agent to Callable Service: CLI vs API Integration Guide
James' Growth Diary
James' Growth Diary
May 5, 2026 · Artificial Intelligence

Deep Dive into LangGraph Swarm: How Agents Transfer Control with the Handoff Mechanism

This article explains the Swarm collaboration model in LangGraph, contrasting it with Supervisor, detailing the handoff tool that atomically updates the active_agent state and routes control, and provides a complete travel‑booking example, custom handoff creation, common pitfalls, and best‑practice tips.

Active AgentLangGraphState Management
0 likes · 13 min read
Deep Dive into LangGraph Swarm: How Agents Transfer Control with the Handoff Mechanism
James' Growth Diary
James' Growth Diary
May 4, 2026 · Artificial Intelligence

Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline

When a single LLM agent can’t handle research, writing, and fact‑checking simultaneously, the article breaks down four multi‑agent collaboration patterns—Supervisor, Swarm, Pipeline, and Mesh—detailing their architectures, code examples, pros, cons, suitable scenarios, and common pitfalls to help you pick the best fit.

LangGraphSupervisorSwarm
0 likes · 21 min read
Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline
AI Architecture Hub
AI Architecture Hub
May 3, 2026 · Artificial Intelligence

What to Learn, Build, and Skip in AI Agents

The article analyzes the fast‑changing AI‑agent landscape, proposes five concrete criteria for filtering new technologies, outlines essential concepts such as context engineering, tool design, scheduler‑subagent patterns, evaluation frameworks, and recommends a stable 2026 tech stack while warning against hype‑driven tools.

AI agentsContext EngineeringLangGraph
0 likes · 27 min read
What to Learn, Build, and Skip in AI Agents
James' Growth Diary
James' Growth Diary
May 1, 2026 · Artificial Intelligence

10 Real-World LangGraph Production Pitfalls That Can Crash Your App

The article details ten production‑grade pitfalls encountered when using LangGraph—ranging from misusing thread IDs and unbounded state growth to uncaught tool errors, infinite loops, concurrency conflicts, subgraph field mismatches, HITL timeouts, and misconfigured LangSmith tracing—each illustrated with concrete code, root‑cause analysis, and concrete remediation steps.

AI agentsCheckpointLLM
0 likes · 14 min read
10 Real-World LangGraph Production Pitfalls That Can Crash Your App
Data Party THU
Data Party THU
May 1, 2026 · Artificial Intelligence

LangChain vs LangGraph: Choosing Between a Toolkit and an Orchestration Layer

This article compares LangChain and LangGraph by implementing the same three‑stage code‑review pipeline with both frameworks, showing how LangChain offers a simple linear flow while LangGraph provides state‑machine orchestration for loops, conditional branches, and retries, and explains when each approach is preferable.

GeminiLLM workflowLangChain
0 likes · 8 min read
LangChain vs LangGraph: Choosing Between a Toolkit and an Orchestration Layer
Tech Freedom Circle
Tech Freedom Circle
Apr 28, 2026 · Artificial Intelligence

How to Build an Enterprise‑Grade Manus Platform with DeerFlow: A Hands‑On Harness Implementation

This article provides a detailed, step‑by‑step analysis of DeerFlow—an open‑source Super Agent Harness—covering its design philosophy versus traditional frameworks, core architecture layers, key services such as Gateway API, LangGraph Server and Sandbox, the long‑horizon agent features, skills system, deployment options, and real‑world enterprise case studies, all illustrated with diagrams and code snippets.

AI AgentDeerFlowHarness
0 likes · 31 min read
How to Build an Enterprise‑Grade Manus Platform with DeerFlow: A Hands‑On Harness Implementation
James' Growth Diary
James' Growth Diary
Apr 28, 2026 · Artificial Intelligence

Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern from Theory to Practice

This article explains why single‑agent LLM pipelines fail when many tools are attached, introduces the Supervisor pattern that separates routing and execution across specialized agents, compares Tool‑Calling and Handoff approaches, provides a complete TypeScript implementation—including hierarchical supervisors—and lists five common pitfalls with concrete fixes.

LLM orchestrationLangGraphSupervisor Pattern
0 likes · 17 min read
Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern from Theory to Practice
James' Growth Diary
James' Growth Diary
Apr 28, 2026 · Artificial Intelligence

Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern Explained from Theory to Practice

The article examines why single‑agent setups fail, introduces the Supervisor pattern for clear responsibility separation, compares Tool‑Calling and Handoff approaches, provides a complete TypeScript implementation, explores hierarchical supervisors, and outlines five common pitfalls with concrete fixes.

LangGraphSupervisor PatternTypeScript
0 likes · 15 min read
Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern Explained from Theory to Practice
AI Illustrated Series
AI Illustrated Series
Apr 28, 2026 · Artificial Intelligence

Comprehensive Interview Guide: LangChain & LangGraph Frameworks

This article provides a detailed, question‑and‑answer style walkthrough of LangChain and LangGraph, covering their core concepts, components, workflow patterns, memory mechanisms, LCEL syntax, graph construction, conditional edges, loops, multi‑agent collaboration, persistence, and a comparison with LlamaIndex, offering concrete code examples and practical insights for AI interview preparation.

AI FrameworkAgentLCEL
0 likes · 32 min read
Comprehensive Interview Guide: LangChain & LangGraph Frameworks
Tech Ocean
Tech Ocean
Apr 27, 2026 · Artificial Intelligence

Building a RAG Agent with LangGraph: Precisely Answer Your Private Knowledge Base

This tutorial walks through the RAG Agent architecture, core components, Python implementation, continuous dialogue handling, integration with a real vector store, and a performance comparison with pure RAG, demonstrating how to enable AI to retrieve and answer from a private knowledge base.

AgentLLMLangGraph
0 likes · 5 min read
Building a RAG Agent with LangGraph: Precisely Answer Your Private Knowledge Base
Tech Ocean
Tech Ocean
Apr 27, 2026 · Artificial Intelligence

Building a Code Assistant with LangGraph: Let AI Write and Refine Code

This article walks through constructing a LangGraph‑based code‑assistant that generates code, automatically checks syntax and execution, iteratively fixes errors, and finalizes output, illustrating the full workflow, state definition, node implementations, graph assembly, and sample runs.

AutomationCode AssistantLLM
0 likes · 5 min read
Building a Code Assistant with LangGraph: Let AI Write and Refine Code
Tech Ocean
Tech Ocean
Apr 27, 2026 · Artificial Intelligence

Using LangGraph Conditional Edges to Enable Automatic AI Decision Routing

This article explains how LangGraph's conditional edges let AI workflows dynamically choose the next step based on state, contrasting them with fixed edges, and provides step‑by‑step Python examples—including a router function, RAG retrieval routing, retry handling, and nested conditional logic.

AI workflowConditional EdgesLangGraph
0 likes · 5 min read
Using LangGraph Conditional Edges to Enable Automatic AI Decision Routing
Tech Ocean
Tech Ocean
Apr 27, 2026 · Artificial Intelligence

How Streaming Makes AI Responses Visible in Real Time with LangGraph

The article explains why streaming output is needed for LLMs, describes LangGraph's five stream modes, provides minimal code examples, compares the modes, shows asynchronous streaming with FastAPI, and outlines a practical streaming chatbot workflow.

LLMLangGraphPython
0 likes · 5 min read
How Streaming Makes AI Responses Visible in Real Time with LangGraph
Tech Ocean
Tech Ocean
Apr 27, 2026 · Operations

Deploying LangGraph Agent Workflows in Production: A Distributed Execution Guide

This article walks through moving LangGraph from development to production by configuring persistent checkpoints with PostgresSaver or RedisSaver, using stream_mode for flexible streaming outputs, deploying the LangGraph Server via CLI or Docker Compose, handling retries, monitoring state, and visualizing the overall architecture.

AgentWorkflowLangGraphMonitoring
0 likes · 6 min read
Deploying LangGraph Agent Workflows in Production: A Distributed Execution Guide
James' Growth Diary
James' Growth Diary
Apr 27, 2026 · Artificial Intelligence

LangGraph Persistence Deep Dive: Checkpoints for Conversation Memory and Resumable Runs

This article explains LangGraph's checkpoint persistence, detailing its data structure, the role of thread_id for multi‑session isolation, the three available checkpointer backends, and how to use checkpoints for conversation memory, resumable workflows, and manual state updates, while highlighting common pitfalls.

CheckpointLangGraphMemorySaver
0 likes · 9 min read
LangGraph Persistence Deep Dive: Checkpoints for Conversation Memory and Resumable Runs
Tech Ocean
Tech Ocean
Apr 25, 2026 · Artificial Intelligence

Building Multi‑Agent Systems Like Lego with LangGraph Subgraphs

This article explains why subgraphs are needed for complex tasks, shows how to define a subgraph as a node, use named channels for data flow, isolate namespaces, reuse compiled subgraphs, add checkpoints, and presents a complete multi‑agent orchestration example in Python using LangGraph.

CheckpointLangGraphNamed Channels
0 likes · 6 min read
Building Multi‑Agent Systems Like Lego with LangGraph Subgraphs
Tech Ocean
Tech Ocean
Apr 25, 2026 · Artificial Intelligence

Using InMemorySaver to Give LangGraph Agents Persistent Conversation Memory

The article explains LangGraph’s checkpoint system that lets agents retain dialogue context, detailing the InMemorySaver for development and PostgresSaver for production, how to use checkpointer.put/get, thread_id for session isolation, manual state manipulation, and time‑travel replay, with full Python examples.

Agent MemoryCheckpointInMemorySaver
0 likes · 5 min read
Using InMemorySaver to Give LangGraph Agents Persistent Conversation Memory
Tech Ocean
Tech Ocean
Apr 25, 2026 · Artificial Intelligence

Hands‑On ReAct with LangGraph: Dissecting the AI Reason‑Act‑Observe Loop

This tutorial explains the ReAct (Reason‑Act‑Observe) loop in LangGraph, shows how to control execution branches with conditional edges, provides a full hand‑written agent example, demonstrates the convenience of the prebuilt create_react_agent, and covers multi‑turn dialogue, streaming output, and loop‑count limits.

AgentLangChainLangGraph
0 likes · 5 min read
Hands‑On ReAct with LangGraph: Dissecting the AI Reason‑Act‑Observe Loop
Tech Ocean
Tech Ocean
Apr 25, 2026 · Artificial Intelligence

LangGraph Day 2: Watching State Changes Like a TV Series with State + Reducer

This article explains LangGraph’s two state‑update modes—overwrite and merge—shows how to use Annotated with custom reducers such as operator.add or add_messages, demonstrates when reducers run, and provides full Python examples, including persistence with checkpointers and custom merge functions.

AI agentsAnnotatedLangGraph
0 likes · 6 min read
LangGraph Day 2: Watching State Changes Like a TV Series with State + Reducer
Tech Ocean
Tech Ocean
Apr 25, 2026 · Artificial Intelligence

Master StateGraph in 5 Minutes: Visualizing Agent Logic with LangGraph

This article explains how LangGraph’s graph‑based StateGraph lets you model agent workflows visually, contrasting it with LangChain’s high‑level API, detailing the three core components, showing complete Python examples, and highlighting benefits such as easier debugging, extensibility, and checkpoint support.

AgentCheckpointGraph
0 likes · 7 min read
Master StateGraph in 5 Minutes: Visualizing Agent Logic with LangGraph
James' Growth Diary
James' Growth Diary
Apr 25, 2026 · Artificial Intelligence

How to Use LangGraph Conditional Edge for Dynamic Branching Decisions

This article explains the concept of Conditional Edge in LangGraph, shows how to add conditional edges with three parameters, demonstrates rule‑based, multi‑branch, and loop routing patterns, compares rule‑based versus LLM‑based routing, provides a complete customer‑service agent example, and lists common pitfalls and best‑practice checklists.

Agentic LoopConditional EdgeDynamic Routing
0 likes · 20 min read
How to Use LangGraph Conditional Edge for Dynamic Branching Decisions
James' Growth Diary
James' Growth Diary
Apr 25, 2026 · Artificial Intelligence

Deep Dive into LangGraph State Management: How Reducer, Annotation, and Channel Relate

LangGraph’s state management hinges on three core concepts—Channel as the storage unit, Annotation as the declarative API for Channels, and Reducer as the pure function that merges updates—understanding their interactions resolves common bugs, enables custom state schemas, and ensures correct concurrent node updates.

AnnotationLangGraphReducer
0 likes · 14 min read
Deep Dive into LangGraph State Management: How Reducer, Annotation, and Channel Relate
DeepHub IMBA
DeepHub IMBA
Apr 24, 2026 · Artificial Intelligence

LangChain vs LangGraph: Choosing a Toolkit or an Orchestrator

The article compares LangChain and LangGraph by implementing the same three‑stage code‑review pipeline with identical agents and Gemini 2.5 Flash calls, showing when a linear toolkit suffices and when a state‑machine orchestrator becomes necessary.

AgentLLM orchestrationLangChain
0 likes · 8 min read
LangChain vs LangGraph: Choosing a Toolkit or an Orchestrator
James' Growth Diary
James' Growth Diary
Apr 24, 2026 · Artificial Intelligence

How LangGraph Turns LLMs into a State Machine

This article dissects LangGraph's core execution engine, showing how it transforms LLM calls into a state‑machine workflow with mutable State, Nodes, Edges, Reducers, a scheduler loop, conditional branching, and parallel fan‑out/fan‑in execution.

JavaScriptLLMLangGraph
0 likes · 12 min read
How LangGraph Turns LLMs into a State Machine
Data Party THU
Data Party THU
Apr 23, 2026 · Artificial Intelligence

The Complete 2026 Agentic AI Engineer Roadmap: A Systematic Learning Path

This guide presents a step‑by‑step roadmap for becoming an Agentic AI engineer in 2026, covering Python fundamentals, LLM concepts, framework selection, advanced memory management, tool integration, production deployment, and interview preparation with concrete examples and best‑practice recommendations.

LLMLangGraphProduction Deployment
0 likes · 10 min read
The Complete 2026 Agentic AI Engineer Roadmap: A Systematic Learning Path
SpringMeng
SpringMeng
Apr 19, 2026 · Artificial Intelligence

Build a LangChain AI Agent in 20 Minutes: Step‑by‑Step Guide

This tutorial walks through creating a LangChain‑based AI agent by covering model integration, tool definition with @tool, short‑ and long‑term memory handling via checkpointers and vector stores, and assembling everything with create_agent, middleware, and code examples for a functional travel assistant.

AI AgentLangChainLangGraph
0 likes · 16 min read
Build a LangChain AI Agent in 20 Minutes: Step‑by‑Step Guide
AI Architect Hub
AI Architect Hub
Apr 12, 2026 · Artificial Intelligence

Which AI Agent Framework Wins in 2026? LangChain, LlamaIndex, LangGraph, AutoGen

This article provides a practical selection guide for developers building AI agents in 2026, dissecting the design, core components, strengths, and limitations of four major frameworks—LangChain, LlamaIndex, LangGraph, and AutoGen—while offering use‑case recommendations, code examples, and a decision‑tree to help choose the most suitable tool.

AI agentsAutoGenLangChain
0 likes · 23 min read
Which AI Agent Framework Wins in 2026? LangChain, LlamaIndex, LangGraph, AutoGen
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 10, 2026 · Artificial Intelligence

AI Handles 80% of a Medical Triage Agent, Product Managers Cover the Rest

The article walks through a medical triage AI Agent built with LangChain, LangGraph, and LangSmith, showing how the framework supplies core model and tool interfaces, how graph‑based orchestration manages complex branching, loops and human‑in‑the‑loop steps, and how tracing and evaluation prove reliability for product managers.

AI AgentLangChainLangGraph
0 likes · 23 min read
AI Handles 80% of a Medical Triage Agent, Product Managers Cover the Rest
Data STUDIO
Data STUDIO
Apr 10, 2026 · Artificial Intelligence

Tree of Thoughts Architecture: Enabling AI to Explore Multiple Reasoning Paths

This article introduces the Tree of Thoughts (ToT) reasoning framework, explains its search‑tree based workflow, demonstrates a full implementation with LangGraph to solve the classic wolf‑goat‑cabbage puzzle, and compares its reliability against a simple Chain‑of‑Thought approach.

AI reasoningLLMLangGraph
0 likes · 19 min read
Tree of Thoughts Architecture: Enabling AI to Explore Multiple Reasoning Paths
Data STUDIO
Data STUDIO
Apr 1, 2026 · Artificial Intelligence

Blackboard System: Enabling Dynamic Collaboration Among Expert AI Agents

This article compares a rigid sequential multi‑agent pipeline with a flexible blackboard architecture, showing how shared memory and a dynamic controller let specialist AI agents cooperate opportunistically, obey conditional user instructions, and achieve higher efficiency and instruction‑following scores.

Blackboard SystemDynamic SchedulingLLM
0 likes · 21 min read
Blackboard System: Enabling Dynamic Collaboration Among Expert AI Agents
AI2ML AI to Machine Learning
AI2ML AI to Machine Learning
Mar 31, 2026 · Artificial Intelligence

DeerFlow 2.0 Architecture and Agent Design Deep Dive

This article dissects DeerFlow 2.0’s architecture, detailing its TypeScript‑React frontend, Python‑LangGraph backend, FastAPI interface, the deerflow‑harness core, agent and skill scheduling mechanisms, three collaboration modes, and how it compares to OpenClaw.

Agent ArchitectureDeerFlow 2.0LangGraph
0 likes · 3 min read
DeerFlow 2.0 Architecture and Agent Design Deep Dive
Senior Tony
Senior Tony
Mar 31, 2026 · Artificial Intelligence

Build and Debug LangGraph Workflows with Alibaba Qwen in Minutes

This article walks through creating a LangGraph workflow in Python, first using OpenAI’s GPT‑5‑nano model, then swapping to Alibaba’s Qwen 3.5‑plus model, showing how to suppress warnings, filter out thinking responses, visualize the graph, and troubleshoot common errors, all without any prior AI coding experience.

AI workflowAlibaba QwenLLM
0 likes · 8 min read
Build and Debug LangGraph Workflows with Alibaba Qwen in Minutes
Data STUDIO
Data STUDIO
Mar 31, 2026 · Artificial Intelligence

Agent Architecture: Planner → Executor → Verifier – Adding a “Quality Inspector” to Your AI

This article introduces the PEV (Planner‑Executor‑Verifier) architecture, explains why AI agents need a verification step to avoid blindly trusting faulty tool outputs, demonstrates a full implementation with LangGraph, compares its robustness to a naïve baseline, and discusses its advantages, limitations, and suitable use cases.

AI agentsLLMLangGraph
0 likes · 23 min read
Agent Architecture: Planner → Executor → Verifier – Adding a “Quality Inspector” to Your AI
Smart Workplace Lab
Smart Workplace Lab
Mar 30, 2026 · Artificial Intelligence

Which Multi‑Agent AI Framework Will Boost Your Productivity in 2026?

The article analyzes the rise of multi‑agent collaboration frameworks as the core infrastructure of Agentic AI in 2026, compares CrewAI, AutoGen, LangGraph and OpenAI Swarm on usability, production capability, strengths, weaknesses and market share, provides code examples, expert insights and a practical adoption roadmap.

AI productivityAutoGenCrewAI
0 likes · 8 min read
Which Multi‑Agent AI Framework Will Boost Your Productivity in 2026?
ShiZhen AI
ShiZhen AI
Mar 29, 2026 · Artificial Intelligence

Why DeerFlow 2.0’s 48k Stars Have Developers Talking Worldwide

DeerFlow 2.0, the open‑source Agent harness from ByteDance that quickly amassed over 48 000 GitHub stars, is dissected across five dimensions—sub‑agents, sandbox isolation, long‑term memory, Skill ecosystem, and MCP integration—to explain its architecture, deployment workflow, real‑world use cases, and the community’s mixed enthusiasm.

AI agentsDeerFlowDocker sandbox
0 likes · 17 min read
Why DeerFlow 2.0’s 48k Stars Have Developers Talking Worldwide
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Mar 28, 2026 · Artificial Intelligence

Mastering Multi‑Agent Systems: Design, Parallel Execution, and Interview Strategies

This article dissects the shortcomings of single‑agent LLM pipelines, introduces the Supervisor‑based Multi‑Agent architecture with LangGraph, demonstrates parallel task execution, robust error handling, and result merging, and provides concrete interview guidance backed by real performance data.

AI architectureLLMLangGraph
0 likes · 19 min read
Mastering Multi‑Agent Systems: Design, Parallel Execution, and Interview Strategies
Data STUDIO
Data STUDIO
Mar 27, 2026 · Artificial Intelligence

Boost Agent Efficiency with Planning Architecture: A Hands‑On Comparison to ReAct

This article explains the planning architecture for AI agents, contrasts it with the ReAct approach, provides step‑by‑step Python code using LangChain and LangGraph, evaluates both methods on task completion and process efficiency, and discusses when each architecture is most suitable.

AI agentsLangChainLangGraph
0 likes · 18 min read
Boost Agent Efficiency with Planning Architecture: A Hands‑On Comparison to ReAct
Data STUDIO
Data STUDIO
Mar 26, 2026 · Artificial Intelligence

Metacognitive Agents: Teaching AI to Self‑Assess Before Answering

The article introduces metacognitive agents that equip AI with a self‑model to evaluate confidence, domain relevance, tool availability, and risk before acting, demonstrating a LangGraph‑based medical triage assistant with code, workflow, safety advantages, and practical test results.

AI safetyLLMLangGraph
0 likes · 22 min read
Metacognitive Agents: Teaching AI to Self‑Assess Before Answering
Data STUDIO
Data STUDIO
Mar 25, 2026 · Artificial Intelligence

Reflection Mode: Letting AI Act as Its Own Code Reviewer

This article introduces the Reflection mode—a generate‑critique‑refine loop that enables large language models to self‑review and improve generated code, demonstrates a full implementation with Nebius AI Studio and LangGraph, and evaluates the approach with concrete Fibonacci examples and quantitative scoring.

AI agentsLLM self‑critiqueLangGraph
0 likes · 20 min read
Reflection Mode: Letting AI Act as Its Own Code Reviewer
Fun with Large Models
Fun with Large Models
Mar 25, 2026 · Artificial Intelligence

Quick Guide to LangChain DeepAgents: Core Features and Fast Onboarding

This article introduces the background and key advantages of the DeepAgents framework, explains its four core capabilities—task planning, context management, sub‑agent generation, and long‑term memory—and provides a step‑by‑step code example that builds a complex AI agent with just a few lines of Python.

AI agentsDeepAgentsLangChain
0 likes · 11 min read
Quick Guide to LangChain DeepAgents: Core Features and Fast Onboarding
SuanNi
SuanNi
Mar 24, 2026 · Artificial Intelligence

How Compression, Orchestration, and LangGraph Are Redefining LLM Context Engineering

This article analyzes the six pillars of context engineering for large language models, focusing on compression techniques, extractive vs. abstractive methods, the LLMLingua toolkit, dynamic orchestration with routing and agentic RAG, and how LangGraph enables sophisticated agent‑driven workflows.

Agentic RAGContext CompressionLLM
0 likes · 14 min read
How Compression, Orchestration, and LangGraph Are Redefining LLM Context Engineering
Data STUDIO
Data STUDIO
Mar 24, 2026 · Artificial Intelligence

Turn LLMs into Real Assistants: Build a Tool‑Using Agent in Minutes

This article explains why large language models alone can hallucinate, introduces the tool‑using agent architecture, and provides a step‑by‑step Python tutorial using LangChain, LangGraph, and Tavily to create, run, and evaluate a real‑time web‑search capable AI assistant.

AgentLLMLangChain
0 likes · 16 min read
Turn LLMs into Real Assistants: Build a Tool‑Using Agent in Minutes
Data STUDIO
Data STUDIO
Mar 23, 2026 · Artificial Intelligence

ReAct Architecture: Making AI Think Before It Acts

This article introduces the ReAct (Reason + Act) agent pattern, explains its reasoning‑action‑observation loop, shows how to build a basic single‑call agent and a full ReAct agent with LangGraph, compares their performance on a multi‑step query, and provides a quantitative evaluation highlighting ReAct’s advantages and trade‑offs.

AI agentsLangGraphPrompt Engineering
0 likes · 17 min read
ReAct Architecture: Making AI Think Before It Acts
AI Explorer
AI Explorer
Mar 18, 2026 · Artificial Intelligence

Unlock Instant AI Agents with LangGraph‑Powered Deep Agents

Deep Agents, an open‑source framework built on LangGraph, bundles planning, file‑system tools, sub‑agent coordination and context management into a ready‑to‑run AI agent that can be launched with three lines of Python code and fully customized for diverse applications.

AI agentsDeep AgentsLLM
0 likes · 7 min read
Unlock Instant AI Agents with LangGraph‑Powered Deep Agents
Data STUDIO
Data STUDIO
Mar 18, 2026 · Artificial Intelligence

Building a Smart Web AI Agent with FastAPI, LangGraph, and MCP

This article walks through the design and implementation of a production‑ready Web AI agent that uses FastAPI as the HTTP layer, LangGraph to orchestrate multi‑step reasoning, and MCP to expose external tools, showing how to manage state, integrate multiple LLM providers, and extend the system with persistence, rate‑limiting, and monitoring.

AI AgentLLMLangGraph
0 likes · 20 min read
Building a Smart Web AI Agent with FastAPI, LangGraph, and MCP
AI Engineering
AI Engineering
Mar 17, 2026 · Artificial Intelligence

OpenMAIC: One-Click AI-Powered Interactive Classroom with Video, PPT, and Editing

OpenMAIC, an open‑source multi‑agent platform from Tsinghua, lets users upload a PDF or topic and automatically creates a full virtual classroom—including AI professor, AI students, slides, quizzes, and a whiteboard for step‑by‑step problem solving—using LangGraph orchestration and support for major LLMs.

AI educationGeminiLangGraph
0 likes · 3 min read
OpenMAIC: One-Click AI-Powered Interactive Classroom with Video, PPT, and Editing
Past Memory Big Data
Past Memory Big Data
Mar 10, 2026 · Artificial Intelligence

Full-Stack Evolution of a Game Data Analysis Agent

This article chronicles the step‑by‑step development of a game‑data analysis agent, detailing three architectural versions, the challenges of domain terminology, LLM uncertainty, permission granularity, and the engineering solutions—including LangGraph, Dify, custom prompts, state management, security checks, token optimization, and deployment within an internal network.

Agent ArchitectureGame Data AnalysisLLM
0 likes · 35 min read
Full-Stack Evolution of a Game Data Analysis Agent
Amazon Cloud Developers
Amazon Cloud Developers
Mar 2, 2026 · Artificial Intelligence

How AgentCore Uses Multi‑Agent AI to Turn E‑commerce Data into Actionable Insights

The article explains how enterprises can overcome the "massive data, scarce insight" paradox in e‑commerce by adopting a multi‑agent architecture built on LangGraph and Amazon Bedrock AgentCore, detailing the system’s layered design, state management, end‑to‑end QBR report generation, and production‑grade deployment steps.

AgentCoreAmazon BedrockLangGraph
0 likes · 21 min read
How AgentCore Uses Multi‑Agent AI to Turn E‑commerce Data into Actionable Insights
AI Waka
AI Waka
Feb 27, 2026 · Artificial Intelligence

How to Add Persistent Long‑Term Memory to LangGraph Agents with Trustcall

This article explains how to integrate durable long‑term memory into LangGraph agents, covering memory types, their coordination, limitations of native LangGraph storage, and a step‑by‑step implementation using Trustcall’s schema‑driven extractors for both user profiles and paper collections.

AILLM AgentsLangGraph
0 likes · 16 min read
How to Add Persistent Long‑Term Memory to LangGraph Agents with Trustcall