From 8fd50a50d4a00d0533dfaec5b74750238f366261 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Mon, 2 Jun 2025 23:46:29 +1000 Subject: [PATCH] docs: fix grammar errors in mcp.md and multi-agent.md (#4903) * docs: fix a grammar error in mcp.md * docs: fix a grammar error in multi-agent.md --- docs/docs/agents/mcp.md | 2 +- docs/docs/agents/multi-agent.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/agents/mcp.md b/docs/docs/agents/mcp.md index dbe3d092e..919f5a967 100644 --- a/docs/docs/agents/mcp.md +++ b/docs/docs/agents/mcp.md @@ -38,7 +38,7 @@ client = MultiServerMCPClient( "transport": "stdio", }, "weather": { - # Ensure your start your weather server on port 8000 + # Ensure you start your weather server on port 8000 "url": "http://localhost:8000/mcp", "transport": "streamable_http", } diff --git a/docs/docs/agents/multi-agent.md b/docs/docs/agents/multi-agent.md index 51a35bbac..54ba13c9c 100644 --- a/docs/docs/agents/multi-agent.md +++ b/docs/docs/agents/multi-agent.md @@ -9,7 +9,7 @@ hide: # Multi-agent -A single agent might struggle if it needs to specialize in multiple domains or manage many tools. To tackle this, you can break your agent into smaller, independent agents and composing them into a [multi-agent system](../concepts/multi_agent.md). +A single agent might struggle if it needs to specialize in multiple domains or manage many tools. To tackle this, you can break your agent into smaller, independent agents and compose them into a [multi-agent system](../concepts/multi_agent.md). In multi-agent systems, agents need to communicate between each other. They do so via [handoffs](#handoffs) — a primitive that describes which agent to hand control to and the payload to send to that agent.