🌐
GitHub
github.com › langchain-ai › langgraph › blob › main › examples › multi_agent › multi-agent-collaboration.ipynb
langgraph/examples/multi_agent/multi-agent-collaboration.ipynb at main · langchain-ai/langgraph
"[This file has been moved](https://github.com/langchain-ai/langgraph/blob/23961cff61a42b52525f3b20b4094d8d2fba1744/docs/docs/tutorials/multi_agent/multi-agent-collaboration.ipynb)"
Author   langchain-ai
🌐
GitHub
github.com › benitomartin › multiagent-langgraph-circleci
GitHub - benitomartin/multiagent-langgraph-circleci: Collaborative Multi-Agent AI System with LangGraph · GitHub
Collaborative Multi-Agent AI System with LangGraph - benitomartin/multiagent-langgraph-circleci
Starred by 11 users
Forked by 2 users
Languages   Python 84.0% | Shell 14.2% | Dockerfile 1.8%
🌐
GitHub
github.com › langchain-ai › langgraph-swarm-py
GitHub - langchain-ai/langgraph-swarm-py: For your multi-agent needs · GitHub
A Python library for creating swarm-style multi-agent systems using LangGraph. A swarm is a type of multi-agent architecture where agents dynamically hand off control to one another based on their specializations.
Starred by 1.5K users
Forked by 213 users
Languages   Python 93.8% | Makefile 6.2%
🌐
LangChain
langchain-ai.github.io › langgraph › tutorials › multi_agent › multi-agent-collaboration
Multi-agent network
Now that we've defined our tools and made some helper functions, will create the individual agents below and tell them how to talk to each other using LangGraph. We now need to define the nodes. First, we'll create a utility to create a system prompt for each agent. def make_system_prompt(suffix: str) -> str: return ( "You are a helpful AI assistant, collaborating with other assistants."
🌐
GitHub
github.com › langchain-ai › langgraphjs › blob › main › examples › multi_agent › multi_agent_collaboration.ipynb
langgraphjs/examples/multi_agent/multi_agent_collaboration.ipynb at main · langchain-ai/langgraphjs
Framework to build resilient language agents as graphs. - langgraphjs/examples/multi_agent/multi_agent_collaboration.ipynb at main · langchain-ai/langgraphjs
Author   langchain-ai
🌐
GitHub
github.com › MBoaretto25 › langchain-multi-agents
GitHub - MBoaretto25/langchain-multi-agents: A template repository for multi-agents architecture using LangGraph tool from LangChain · GitHub
This project explores multiple multi-agent architectures using Langchain (LangGraph), focusing on agent collaboration to solve complex problems.
Starred by 6 users
Forked by 2 users
🌐
GitHub
github.com › iuyup › AgentFlow
GitHub - iuyup/AgentFlow: Multi-Agent Collaboration Design Patterns Built on LangGraph with 10+ battle-tested patterns, each with complete code, architecture diagrams, and benchmarks. · GitHub
Multi-Agent Collaboration Design Patterns Built on LangGraph with 10+ battle-tested patterns, each with complete code, architecture diagrams, and benchmarks. - GitHub - iuyup/AgentFlow: Multi-Agent Collaboration Design Patterns Built on LangGraph ...
Starred by 36 users
Forked by 2 users
Languages   Python 94.8% | CSS 2.5% | Mermaid 2.3%
🌐
GitHub
github.com › FareedKhan-dev › Multi-Agent-AI-System
GitHub - FareedKhan-dev/Multi-Agent-AI-System: Building a Multi-Agent AI System with LangGraph and LangSmith · GitHub
So far, we’ve built a multi-agent system using the Supervisor approach, where a central agent manages the flow and delegates tasks to sub-agents. An alternative is the Swarm Architecture, as described in the LangGraph docs. In a swarm, agents collaborate and pass tasks directly among themselves, without a central coordinator.
Starred by 338 users
Forked by 79 users
Languages   Jupyter Notebook 97.3% | Python 2.7%
Find elsewhere
🌐
GitHub
github.com › botextractai › ai-langgraph-multi-agent
GitHub - botextractai/ai-langgraph-multi-agent: Multi AI agent system for report writing with LangGraph · GitHub
This multi-agent example uses OpenAI's ChatGPT 4 model and the LangChain Tavily search tool to write a report about the latest inflation figures in the European Union. Unlike web search tools, the LangChain Tavily search tool delivers actual search results, rather than just links or raw web (HTML) pages. This example uses a total of 5 LangGraph agents (nodes).
Starred by 29 users
Forked by 8 users
Languages   Python
🌐
GitHub
github.com › aws-samples › langgraph-multi-agent
GitHub - aws-samples/langgraph-multi-agent · GitHub
The purpose of this repository is to demonstrate how LangGraph can be used to build a stateless multi-agent workflow to serve as an assistant for data analysis.
Starred by 37 users
Forked by 9 users
Languages   Jupyter Notebook 80.4% | Python 19.6%
🌐
AWS
aws.amazon.com › blogs › machine-learning › build-a-multi-agent-system-with-langgraph-and-mistral-on-aws
Build a Multi-Agent System with LangGraph and Mistral on AWS | Artificial Intelligence
March 6, 2025 - Want to dive deeper? Explore the implementation of Multi-Agent Collaboration and Orchestration using LangGraph for Mistral Models on GitHub to observe the code in action and try out the solution yourself.
🌐
GitHub
github.com › expectbugs › agents
GitHub - expectbugs/agents: LangGraph Multi-Agent System: Production-ready multi-agent orchestration with AI-enhanced web search and persistent memory · GitHub
A production-ready multi-agent orchestration system built with LangGraph and LangChain for complex AI workflows with persistent memory.
Author   expectbugs
🌐
GitHub
github.com › topics › langgraph-agents
langgraph-agents · GitHub Topics · GitHub
gigachain ai-orchestration agent-orchestration langgraph-agents universal-agent open-source-agents general-purpose-agent repl-agent code-execution-agent langgraph-orchestrator gigachat-agent gigaagent ... Git for agent memory. Branches, diffs, PRs, and rollback for what your agents know. ai multi-agent multi-agent-systems ai-agents autogen agent-management ai-tools ai-agent llm llm-tools crewai langgraph crewai-tools agent-memory langgraph-agents
🌐
GitHub
github.com › von-development › awesome-LangGraph
GitHub - vonzosten/awesome-LangGraph: An index of the LangChain + LangGraph ecosystem: concepts, projects, tools, templates, and guides for LLM & multi-agent apps. · GitHub
🕸️ LangGraph - The core framework for building stateful, multi-agent systems with complex workflows, collaboration, and memory management.
Starred by 1.9K users
Forked by 226 users
Languages   JavaScript
🌐
GitHub
github.com › MahendraMedapati27 › Mastering-Agentic-Design-Patterns-with-LangGraph › blob › main › README.md
Mastering-Agentic-Design-Patterns-with-LangGraph/README.md at main · MahendraMedapati27/Mastering-Agentic-Design-Patterns-with-LangGraph
# Quick decision tree: if task == "simple_sequential_steps": use_pattern = "Prompt Chaining" elif task == "needs_branching_logic": use_pattern = "Routing" elif task == "multiple_independent_tasks": use_pattern = "Parallelization" elif task == "requires_high_quality_output": use_pattern = "Reflection" elif task == "needs_external_data_or_apis": use_pattern = "Tool Use" elif task == "multi_step_research_or_analysis": use_pattern = "Planning" elif task == "complex_domain_with_specialized_needs": use_pattern = "Multi-Agent Collaboration"
Author   MahendraMedapati27
🌐
GitHub
github.com › spillwavesolutions › mastering-langgraph-agent-skill
GitHub - SpillwaveSolutions/mastering-langgraph-agent-skill: Build stateful AI agents and agentic workflows with LangGraph in Python. Covers tool-using agents, branching workflows, memory persistence, human-in-the-loop, multi-agent systems, and production deployment. Supports 14+ AI coding agents via Agent Skill Standard. · GitHub
Multi-Agent Systems · Supervisor and swarm patterns for agent collaboration · Production Deployment · LangGraph Platform, Docker, and self-hosted options · Debugging · Time-travel, LangSmith tracing, and testing strategies · Concept · Description · StateGraph ·
Starred by 34 users
Forked by 2 users