Tagged articles

LangGraph

149 articles · Page 1 of 2
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
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 agentsAutoGenCrewAI
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
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.

AgentError handlingFallback
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.

AlphaEvolveLLM AgentsLangGraph
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.

ChromaDBLLMLangChain
0 likes · 46 min read
Step‑by‑Step Guide to Building a Multi‑Agent Trading System for End‑to‑End Intelligent Decisions
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 GovernanceAgentic AIAutoGen
0 likes · 8 min read
Latest Multi-Agent Collaboration Case Studies: Successes, Failures, and Architecture (May 2026)
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 AgentHandoffLangGraph
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 agentsEvaluationLangGraph
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.

HandoffLLM orchestrationLangGraph
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.

HandoffLangGraphSupervisor Pattern
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
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
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.

AnnotationChannelLangGraph
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.

Agentic AILLMLangGraph
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.

DeerFlow 2.0FastAPILangGraph
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 agentsAgent HarnessDeerFlow
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 ArchitectureError handlingLLM
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 RAGLLMLangGraph
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 agentsAgent frameworkDeep Agents
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 AgentFastAPILLM
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.

Game Data AnalysisLLMLangGraph
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 BedrockContent Generation
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
Data STUDIO
Data STUDIO
Feb 22, 2026 · Artificial Intelligence

Building AI Agents with LangGraph: Implementing RAG and Long‑Term Memory

This tutorial walks through adding Retrieval‑Augmented Generation (RAG) and persistent long‑term memory to a LangGraph AI agent, covering concepts, step‑by‑step code for document loading, vector store creation, prompt engineering, memory management, and best‑practice pitfalls.

AI AgentEmbeddingLangChain
0 likes · 16 min read
Building AI Agents with LangGraph: Implementing RAG and Long‑Term Memory
Data STUDIO
Data STUDIO
Feb 12, 2026 · Artificial Intelligence

How to Add Tools to a LangGraph AI Agent for Real‑World Tasks

This tutorial walks through adding custom, pre‑built, and server‑side tools to a LangGraph AI agent, demonstrates a ReAct workflow, implements conditional edges for web search, enforces structured output for intelligent shutdown, and shows how to monitor token usage with callbacks, all with runnable Python code.

AI AgentLangGraphPython
0 likes · 16 min read
How to Add Tools to a LangGraph AI Agent for Real‑World Tasks
Alibaba Cloud Developer
Alibaba Cloud Developer
Feb 9, 2026 · Artificial Intelligence

Rebuilding an AI‑Powered Shopping Scene Generator with LangGraph, Agent Skills, and Planner

This article details how a low‑code e‑commerce workflow was migrated to a modular LangGraph architecture, introducing Agent Skills, an A2A protocol, and a Planner node to enable multi‑turn natural‑language scene creation, product matching, and persistent storage while leveraging AI coding tools for rapid development.

Agent SkillsLangGraphLow‑code migration
0 likes · 24 min read
Rebuilding an AI‑Powered Shopping Scene Generator with LangGraph, Agent Skills, and Planner
Data Party THU
Data Party THU
Feb 8, 2026 · Artificial Intelligence

How LangGraph Turns Multi‑Agent Workflows into Editable Graphs

This article explains LangGraph's graph‑based design, runtime behavior, state management, checkpoint persistence, and flexible workflow modifications, providing concrete code examples and patterns that illustrate why the framework is well‑suited for complex multi‑agent AI systems.

AILLMLangGraph
0 likes · 14 min read
How LangGraph Turns Multi‑Agent Workflows into Editable Graphs
Data STUDIO
Data STUDIO
Feb 6, 2026 · Artificial Intelligence

Building a Basic Chatbot with LangGraph: Step‑by‑Step AI Agent Tutorial

This article walks through building AI agents with LangGraph in Python, starting with a simple GCD workflow and then creating a memory‑enabled chatbot using GPT‑4o, covering state management, nodes, edges, conditional loops, recursion limits, and visual debugging.

AI agentsChatbotLLM
0 likes · 18 min read
Building a Basic Chatbot with LangGraph: Step‑by‑Step AI Agent Tutorial
Data STUDIO
Data STUDIO
Feb 3, 2026 · Artificial Intelligence

Build a Self‑Thinking AI Agent with LangGraph: A Step‑by‑Step Guide

This tutorial explains how LangGraph adds explicit control‑flow, cycles, and shared state to LLM applications, and walks through building a Strava‑based intelligent training coach with Python code, node definitions, state design, graph assembly, and GitHub Actions deployment.

AI agentsLLMLangGraph
0 likes · 12 min read
Build a Self‑Thinking AI Agent with LangGraph: A Step‑by‑Step Guide
AI Waka
AI Waka
Jan 31, 2026 · Artificial Intelligence

Build a 2026‑Ready LangGraph AI Agent: A Step‑by‑Step Guide

This tutorial walks you through constructing a LangGraph‑based AI agent for automated Strava training plans, covering core concepts like state, nodes, and edges, detailed workflow steps, Python code examples, conditional graph routing, testing, and deployment via GitHub Actions.

AI AgentAutomationLLM
0 likes · 18 min read
Build a 2026‑Ready LangGraph AI Agent: A Step‑by‑Step Guide
Alibaba Cloud Developer
Alibaba Cloud Developer
Jan 29, 2026 · Backend Development

How to Build a BFF Agent with LangGraph: A Step‑by‑Step Guide

This article walks through integrating an AI‑powered Agent into an internal BFF platform using LangGraph, detailing the architectural choices, state‑graph implementation, prompt engineering, knowledge‑base construction, tool integration, conversation handling, and context compression techniques to enable reliable script generation, execution, and validation.

AIAgentLangGraph
0 likes · 24 min read
How to Build a BFF Agent with LangGraph: A Step‑by‑Step Guide
Data STUDIO
Data STUDIO
Jan 23, 2026 · Artificial Intelligence

Choosing the Best AI Agent Framework: A Practical Guide

This article explains the core AI agent loop, why dedicated frameworks are needed, compares eight popular frameworks—including RelevanceAI, smolagents, PhiData, LangChain, LlamaIndex, CrewAI, AutoGen, and LangGraph—offers selection criteria, and provides hands‑on code demos for AutoGen and LangGraph.

AI agentsAutoGenLLM
0 likes · 19 min read
Choosing the Best AI Agent Framework: A Practical Guide
Fun with Large Models
Fun with Large Models
Jan 10, 2026 · Artificial Intelligence

Designing Decentralized Multi‑Agent Networks with LangGraph: The Swarm Architecture

This article explains LangGraph's network (decentralized) architecture for multi‑agent systems, compares it with supervisor and hierarchical designs, and provides a step‑by‑step Python example using the langgraph‑swarm library to build agents that can dynamically hand off control and preserve conversation continuity.

LangGraphNetwork ArchitecturePython
0 likes · 13 min read
Designing Decentralized Multi‑Agent Networks with LangGraph: The Swarm Architecture
Fun with Large Models
Fun with Large Models
Jan 5, 2026 · Artificial Intelligence

LangGraph Agent Design Patterns Part 3: Supervisor and Hierarchical Architectures

This article explains LangGraph's multi‑agent design patterns, focusing on the Supervisor Architecture for centralized coordination and the Hierarchical Architecture for scalable team‑based management, and provides step‑by‑step code examples that demonstrate how to implement both patterns.

AI agentsAgent CoordinationHierarchical Architecture
0 likes · 21 min read
LangGraph Agent Design Patterns Part 3: Supervisor and Hierarchical Architectures
AI Architecture Hub
AI Architecture Hub
Dec 31, 2025 · Artificial Intelligence

Why LangGraph Is the Next‑Generation Framework for LLM Agent Orchestration

This article explains the motivation behind LangGraph, walks through a quick start, details its core syntax and state management, demonstrates conditional branching, parallel execution, tool integration, multi‑agent orchestration, and real‑time monitoring, and finally discusses future directions for the framework.

LLMLangGraphPython
0 likes · 32 min read
Why LangGraph Is the Next‑Generation Framework for LLM Agent Orchestration
Fun with Large Models
Fun with Large Models
Dec 26, 2025 · Artificial Intelligence

LangGraph Agent Design Patterns Part 1: Prompt‑Chain, Router, and Parallel Modes

This article introduces three core LangGraph workflow patterns—Prompt‑Chain, Router, and Parallel—explaining their concepts, advantages, and concrete Python code examples that demonstrate how to decompose tasks, route requests, and run sub‑tasks concurrently for more reliable and efficient AI agents.

AI agentsLangGraphParallel mode
0 likes · 19 min read
LangGraph Agent Design Patterns Part 1: Prompt‑Chain, Router, and Parallel Modes
Fun with Large Models
Fun with Large Models
Dec 24, 2025 · Artificial Intelligence

Building an Automatic Email‑Processing Agent with LangGraph 1.0 – A Hands‑On Guide

This tutorial walks through the complete development of an automatic email‑processing agent using LangGraph 1.0, covering scenario analysis, state design, node implementation, graph assembly, and testing with both high‑priority bug reports and routine greeting emails, while demonstrating state management, conditional routing, and human‑in‑the‑loop controls.

LangChainLangGraphState Management
0 likes · 14 min read
Building an Automatic Email‑Processing Agent with LangGraph 1.0 – A Hands‑On Guide
Fun with Large Models
Fun with Large Models
Dec 21, 2025 · Artificial Intelligence

LangGraph 1.0 Quick Guide Part 2: Conditional Edges, Memory, and Human‑in‑the‑Loop

This article walks through three advanced LangGraph 1.0 features—using the Command object for conditional routing, checkpoint‑based memory for state persistence across invocations, and interrupt‑driven human‑in‑the‑loop control—providing concrete code examples, execution traces, and a comparison of design trade‑offs.

AI agentsCheckpointLangGraph
0 likes · 15 min read
LangGraph 1.0 Quick Guide Part 2: Conditional Edges, Memory, and Human‑in‑the‑Loop
Fun with Large Models
Fun with Large Models
Dec 17, 2025 · Artificial Intelligence

Quick Guide to LangGraph 1.0: Core Concepts, Nodes, and Edges

This article introduces LangGraph 1.0 as a programming‑language‑style framework for AI agents, explains its core abstractions—State, Node, Edge, Reducer, and Human‑in‑the‑Loop—shows how to define state and node functions, builds simple and parallel graphs with static, conditional, and MapReduce edges, and demonstrates conflict‑resolution using built‑in and custom reducers.

AI agentsGraph WorkflowLangChain
0 likes · 17 min read
Quick Guide to LangGraph 1.0: Core Concepts, Nodes, and Edges
Tencent Technical Engineering
Tencent Technical Engineering
Dec 15, 2025 · Artificial Intelligence

How to Add Human‑in‑the‑Loop Interrupts to LangGraph Agents for Safe, Controllable AI Workflows

This guide explains the concept of human‑in‑the‑loop (HITL) interruptions in LangGraph, outlines the core mechanisms such as persistent state and dynamic/static interrupts, and provides detailed Python examples for four classic patterns—approval/rejection, state editing, tool‑call review, and input validation—plus advanced topics like parallel interrupts and MCP‑based tool integration.

AI agentsLangGraphMCP
0 likes · 35 min read
How to Add Human‑in‑the‑Loop Interrupts to LangGraph Agents for Safe, Controllable AI Workflows
Tencent Technical Engineering
Tencent Technical Engineering
Dec 8, 2025 · Artificial Intelligence

Building Persistent Long‑Term Memory for LLM Agents with LangGraph – A Complete Guide

This article explains how to give large language model agents lasting memory by combining short‑term and long‑term storage in LangGraph, covering concepts, implementation details, database persistence, tool integration, semantic search, memory‑management strategies, checkpoint handling, and a multi‑agent supervisor example.

Agent MemoryLLMLangGraph
0 likes · 43 min read
Building Persistent Long‑Term Memory for LLM Agents with LangGraph – A Complete Guide
Instant Consumer Technology Team
Instant Consumer Technology Team
Dec 4, 2025 · Artificial Intelligence

How to Build an AI‑Powered Jira Assistant with LangGraph, RAG, and MCP

This article walks through the design and implementation of an AI‑driven Jira assistant that uses LangGraph as the agent brain, Retrieval‑Augmented Generation for knowledge access, and a Model Context Protocol (MCP) server to execute Jira operations, complete with architecture diagrams, code snippets, and practical use cases.

AI AgentJira AutomationLangGraph
0 likes · 12 min read
How to Build an AI‑Powered Jira Assistant with LangGraph, RAG, and MCP
Data Party THU
Data Party THU
Nov 15, 2025 · Artificial Intelligence

How Reinforcement Learning Powers Intelligent AI Agents and LangGraph Workflows

This article explains how reinforcement learning (RL) underpins intelligent AI agents, covering the Markov Decision Process fundamentals, key RL components, multi‑hop reasoning on knowledge graphs, and a step‑by‑step LangGraph example that integrates an RL‑driven tutoring policy with Python code.

AI agentsKnowledge GraphLangGraph
0 likes · 17 min read
How Reinforcement Learning Powers Intelligent AI Agents and LangGraph Workflows
Network Intelligence Research Center (NIRC)
Network Intelligence Research Center (NIRC)
Nov 7, 2025 · Artificial Intelligence

Introducing LangGraph: A Low‑Level Framework for Building Stateful AI Agents

This article explains why modern LLM‑based applications need agent capabilities, introduces LangGraph’s core features such as stateful execution, graph‑based orchestration, tool integration, human‑in‑the‑loop and multi‑agent support, and provides a step‑by‑step Python example that builds a simple chat‑bot agent.

LLM AgentsLangGraphPython example
0 likes · 11 min read
Introducing LangGraph: A Low‑Level Framework for Building Stateful AI Agents
Fun with Large Models
Fun with Large Models
Oct 22, 2025 · Artificial Intelligence

Building and Deploying a Multi‑Agent DeepResearch App with LangGraph

This article walks through constructing a LangGraph graph that encapsulates three agents—task planning, web search, and report generation—into a DeepResearch application, then shows how to package and deploy the backend and frontend so users can interact with the system via a web UI.

AI AgentDeepResearchLangGraph
0 likes · 12 min read
Building and Deploying a Multi‑Agent DeepResearch App with LangGraph
Data STUDIO
Data STUDIO
Oct 21, 2025 · Artificial Intelligence

Building a Self‑Learning LangGraph Memory System with Feedback Loops and Dynamic Prompts

This article walks through the design and implementation of a two‑layer memory architecture for LangGraph agents, covering short‑term and long‑term stores, various storage back‑ends, prompt engineering, utility functions, node definitions, human‑in‑the‑loop interrupt handling, and how user feedback is captured and used to continuously update the agent’s behavior.

AgentFeedback LoopLLM
0 likes · 43 min read
Building a Self‑Learning LangGraph Memory System with Feedback Loops and Dynamic Prompts
Fun with Large Models
Fun with Large Models
Oct 18, 2025 · Artificial Intelligence

Building DeepResearch from Scratch (Part 2): Architecture Design and Implementation with LangGraph

This article walks through the design and implementation of a multi‑agent DeepResearch application using the Pipeline‑Agent pattern with LangGraph and LangChain, detailing three agents for task planning, web search via Tavily, and report generation, and provides complete Python code and test results.

AI agentsLangChainLangGraph
0 likes · 16 min read
Building DeepResearch from Scratch (Part 2): Architecture Design and Implementation with LangGraph
Amazon Cloud Developers
Amazon Cloud Developers
Oct 16, 2025 · Artificial Intelligence

Is the Bull Market Still Alive? Stock Analysis with OpenAI and AgentCore

This article walks through deploying OpenAI's open‑source GPT‑OSS models on Amazon SageMaker, building a multi‑agent stock‑analysis workflow with LangGraph, and orchestrating the agents via Amazon Bedrock AgentCore, providing end‑to‑end code, configuration steps, and cleanup procedures.

AgentCoreAmazon SageMakerLLM
0 likes · 17 min read
Is the Bull Market Still Alive? Stock Analysis with OpenAI and AgentCore