From c7d56c5a5c019d621803ff0f5ee7a402b6a53706 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Fri, 7 Mar 2025 19:37:33 -0800 Subject: [PATCH] docs --- docs/mkdocs.yml | 2 +- pyproject.toml | 2 +- swarms/structs/__init__.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index d2623a9e..dd2e2485 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -205,7 +205,7 @@ nav: - Conversation: "swarms/structs/conversation.md" - Full API Reference: "swarms/framework/reference.md" - Examples: - - Unique Swarms: "swarms/examples/unique_swarms.md" + - Overview: "swarms/examples/unique_swarms.md" - Swarms API Examples: - Medical Swarm: "swarms/examples/swarms_api_medical.md" diff --git a/pyproject.toml b/pyproject.toml index 82fcb8f7..6103bf28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "7.5.1" +version = "7.5.2" description = "Swarms - TGSC" license = "MIT" authors = ["Kye Gomez "] diff --git a/swarms/structs/__init__.py b/swarms/structs/__init__.py index 686a6e0c..07f257ea 100644 --- a/swarms/structs/__init__.py +++ b/swarms/structs/__init__.py @@ -1,4 +1,5 @@ from swarms.structs.agent import Agent +from swarms.structs.agent_builder import AgentsBuilder from swarms.structs.agents_available import showcase_available_agents from swarms.structs.async_workflow import AsyncWorkflow from swarms.structs.auto_swarm import AutoSwarm, AutoSwarmRouter @@ -23,6 +24,7 @@ from swarms.structs.majority_voting import ( most_frequent, parse_code_completion, ) +from swarms.structs.malt import MALT from swarms.structs.meme_agent_persona_generator import ( MemeAgentGenerator, ) @@ -80,8 +82,6 @@ from swarms.structs.swarms_api import ( SwarmsAPIClient, SwarmValidationError, ) -from swarms.structs.agent_builder import AgentsBuilder -from swarms.structs.malt import MALT __all__ = [ "Agent",