[PR #1952] [MERGED] feat: multi agent, multi page! #2001

Closed
opened 2026-02-17 17:22:57 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1952
Author: @sydney-runkle
Created: 12/17/2025
Status: Merged
Merged: 12/17/2025
Merged by: @sydney-runkle

Base: sr/multi-agent-new-docsHead: sr/multi-agent-multi-page


📝 Commits (10+)

📊 Changes

14 files changed (+3853 additions, -1916 deletions)

View changed files

📝 src/docs.json (+65 -11)
src/oss/langchain/multi-agent.mdx (+0 -1876)
src/oss/langchain/multi-agent/custom-workflow.mdx (+303 -0)
📝 src/oss/langchain/multi-agent/handoffs-customer-support.mdx (+5 -5)
src/oss/langchain/multi-agent/handoffs.mdx (+766 -0)
src/oss/langchain/multi-agent/index.mdx (+322 -0)
src/oss/langchain/multi-agent/router-knowledge-base.mdx (+1504 -0)
src/oss/langchain/multi-agent/router.mdx (+214 -0)
📝 src/oss/langchain/multi-agent/skills-sql-assistant.mdx (+4 -4)
src/oss/langchain/multi-agent/skills.mdx (+120 -0)
📝 src/oss/langchain/multi-agent/subagents-personal-assistant.mdx (+4 -4)
src/oss/langchain/multi-agent/subagents.mdx (+522 -0)
📝 src/oss/langgraph/graph-api.mdx (+2 -2)
📝 src/oss/learn.mdx (+22 -14)

📄 Description

refactoring multi agent to be multiple pages (overview + spinoff pages for each pattern)

new architecture

Multi Agent
Overview
    Why multi agent
    Patterns
        Choosing a pattern
    Performance Comparison
Subagents
Handoffs
Skills
Router
Custom Workflow

Each of the patterns pages has

* Intro paragraph
* Diagram
## Key characteristics
## When to use
## Basic implementation
* small code snippet
* tutorial link / card
## A bunch of sections specific to said pattern (context eng stuff, for e.g.)
  • finish perf comparison section
  • finish router tutorial
  • figure out what we're doing w/ some of the collapsable snippets
  • xrefs and links
  • handoffs - add more details on handoff specs for each of middleware and graph jumps
  • router - add basic impl w/ command not send
  • figure out how we're organizing all of the tutorials (maybe a multi agent section)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/1952 **Author:** [@sydney-runkle](https://github.com/sydney-runkle) **Created:** 12/17/2025 **Status:** ✅ Merged **Merged:** 12/17/2025 **Merged by:** [@sydney-runkle](https://github.com/sydney-runkle) **Base:** `sr/multi-agent-new-docs` ← **Head:** `sr/multi-agent-multi-page` --- ### 📝 Commits (10+) - [`dc3b0aa`](https://github.com/langchain-ai/docs/commit/dc3b0aa3b8d1b29c83f51304320fed35381c131e) x - [`893a9c3`](https://github.com/langchain-ai/docs/commit/893a9c38d3558dab0a47c3741208b6b6299f573c) Merge branch 'sr/multi-agent-new-docs' into eugene/tool_calls - [`4aa1e30`](https://github.com/langchain-ai/docs/commit/4aa1e301f795882d967325c51a8c3fb4629a41a3) multi agent multi page - [`018ca79`](https://github.com/langchain-ai/docs/commit/018ca7998c2f0a4c3daebe18571303c96b9b6799) another pass - [`6e41b1f`](https://github.com/langchain-ai/docs/commit/6e41b1f0332d75c47243d9e8b40382bcad267d4f) another pass - [`f6fa7cf`](https://github.com/langchain-ai/docs/commit/f6fa7cf3ec5d45ee3f7c4f8773fb8377f3d14a23) little tweaks - [`631fc0e`](https://github.com/langchain-ai/docs/commit/631fc0e1c6d8a20de5f04099064d113c5f6f8ca2) transition, baby - [`8b270bc`](https://github.com/langchain-ai/docs/commit/8b270bc998856f4d2f8659e9762241aedc0ab119) fix - [`5e69590`](https://github.com/langchain-ai/docs/commit/5e6959089d02053072522ea6f3f2f2831516f140) little improvements - [`b485ff5`](https://github.com/langchain-ai/docs/commit/b485ff563ac9d3febbef290406b314640c50b10a) Merge branch 'sr/multi-agent-new-docs' into sr/multi-agent-multi-page ### 📊 Changes **14 files changed** (+3853 additions, -1916 deletions) <details> <summary>View changed files</summary> 📝 `src/docs.json` (+65 -11) ➖ `src/oss/langchain/multi-agent.mdx` (+0 -1876) ➕ `src/oss/langchain/multi-agent/custom-workflow.mdx` (+303 -0) 📝 `src/oss/langchain/multi-agent/handoffs-customer-support.mdx` (+5 -5) ➕ `src/oss/langchain/multi-agent/handoffs.mdx` (+766 -0) ➕ `src/oss/langchain/multi-agent/index.mdx` (+322 -0) ➕ `src/oss/langchain/multi-agent/router-knowledge-base.mdx` (+1504 -0) ➕ `src/oss/langchain/multi-agent/router.mdx` (+214 -0) 📝 `src/oss/langchain/multi-agent/skills-sql-assistant.mdx` (+4 -4) ➕ `src/oss/langchain/multi-agent/skills.mdx` (+120 -0) 📝 `src/oss/langchain/multi-agent/subagents-personal-assistant.mdx` (+4 -4) ➕ `src/oss/langchain/multi-agent/subagents.mdx` (+522 -0) 📝 `src/oss/langgraph/graph-api.mdx` (+2 -2) 📝 `src/oss/learn.mdx` (+22 -14) </details> ### 📄 Description refactoring multi agent to be multiple pages (overview + spinoff pages for each pattern) new architecture ``` Multi Agent Overview Why multi agent Patterns Choosing a pattern Performance Comparison Subagents Handoffs Skills Router Custom Workflow ``` Each of the patterns pages has ``` * Intro paragraph * Diagram ## Key characteristics ## When to use ## Basic implementation * small code snippet * tutorial link / card ## A bunch of sections specific to said pattern (context eng stuff, for e.g.) ``` - [ ] finish perf comparison section - [x] finish router tutorial - [x] figure out what we're doing w/ some of the collapsable snippets - [ ] xrefs and links - [x] handoffs - add more details on handoff specs for each of middleware and graph jumps - [x] router - add basic impl w/ command not send - [x] figure out how we're organizing all of the tutorials (maybe a multi agent section) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:22:57 -05:00
yindo closed this issue 2026-02-17 17:22:57 -05:00
yindo changed title from [PR #1952] feat: multi agent, multi page! to [PR #1952] [MERGED] feat: multi agent, multi page! 2026-06-05 18:16:06 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2001