diff --git a/pyproject.toml b/pyproject.toml index 367d1f31..58e7e0ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "7.8.2" +version = "7.8.3" description = "Swarms - TGSC" license = "MIT" authors = ["Kye Gomez "] @@ -79,7 +79,6 @@ torch = "*" httpx = "*" mcp = "*" aiohttp = "*" -numpydoc = "*" [tool.poetry.scripts] swarms = "swarms.cli.main:main" diff --git a/requirements.txt b/requirements.txt index 78a8d018..b745abf7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,5 +24,4 @@ aiofiles httpx # vllm>=0.2.0 aiohttp -mcp -numpydoc \ No newline at end of file +mcp \ No newline at end of file diff --git a/swarms/tools/base_tool.py b/swarms/tools/base_tool.py index 5b82f962..04add0c7 100644 --- a/swarms/tools/base_tool.py +++ b/swarms/tools/base_tool.py @@ -2,7 +2,6 @@ import json from typing import Any, Callable, Dict, List, Optional, Union from concurrent.futures import ThreadPoolExecutor, as_completed -# from litellm.utils import function_to_dict from pydantic import BaseModel, Field from swarms.tools.func_to_str import function_to_str, functions_to_str