From 17442d2601d6178bae3662d49cf32d022db65ba6 Mon Sep 17 00:00:00 2001 From: ascender1729 Date: Fri, 25 Apr 2025 16:35:30 +0530 Subject: [PATCH 1/2] chore: add mcp and fastmcp dependencies to pyproject.toml --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b776160c..65cf8f95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,6 +77,8 @@ numpy = "*" litellm = "*" torch = "*" httpx = "*" +mcp = "*" +fastmcp = "*" [tool.poetry.scripts] swarms = "swarms.cli.main:main" From a74adfca69c6938d09b226ffedf484591eb1a817 Mon Sep 17 00:00:00 2001 From: ascender1729 Date: Sat, 26 Apr 2025 02:13:34 +0530 Subject: [PATCH 2/2] fix: correct Mermaid diagram syntax in why.md --- docs/swarms/concept/why.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/swarms/concept/why.md b/docs/swarms/concept/why.md index 1de64cc8..3c21a040 100644 --- a/docs/swarms/concept/why.md +++ b/docs/swarms/concept/why.md @@ -24,12 +24,12 @@ For enterprises, this limitation poses significant challenges. Business operatio ```mermaid graph LR - Subgraph[Context Window Limit] - Input[Large Document] - Agent[AI Agent] - Output[Partial Understanding] - Input -- Truncated Data --> Agent - Agent -- Generates --> Output + subgraph "Context Window Limit" + Input[Large Document] + Agent[AI Agent] + Output[Partial Understanding] + Input -- Truncated Data --> Agent + Agent -- Generates --> Output end ```