diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 063259e1..2bbd647d 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -79,7 +79,8 @@ theme: - content.code.copy - content.code.annotate - navigation.tabs - # - navigation.sections + - navigation.sections + - navigation.expand - navigation.top - announce.dismiss font: @@ -143,13 +144,9 @@ nav: - Environment Configuration: "swarms/install/env.md" - Quickstart: "swarms/install/quickstart.md" - Feature Set: "swarms/features.md" - # - Swarms CLI: "swarms/cli/main.md" - # - Swarms Framework Architecture: "swarms/concept/framework_architecture.md" - # - Swarm Ecosystem: "swarms/concept/swarm_ecosystem.md" - # - Swarms Products: "swarms/products.md" - # - Swarms Vision: "swarms/concept/vision.md" - Agents: # - Overview: "swarms/structs/index.md" + - Overview: "swarms/agents/index.md" - Concepts: # - Managing Prompts in Production: "swarms/prompts/main.md" - Introduction into The Agent Architecture: "swarms/framework/agents_explained.md" @@ -194,11 +191,9 @@ nav: - MajorityVoting: "swarms/structs/majorityvoting.md" - RoundRobin: "swarms/structs/round_robin_swarm.md" - Mixture of Agents: "swarms/structs/moa.md" - - GroupChat: "swarms/structs/group_chat.md" - SpreadSheetSwarm: "swarms/structs/spreadsheet_swarm.md" - ForestSwarm: "swarms/structs/forest_swarm.md" - MALT: "swarms/structs/malt.md" - - Interactive Group Chat: "swarms/structs/interactive_groupchat.md" - Various Execution Methods: "swarms/structs/various_execution_methods.md" - Deep Research Swarm: "swarms/structs/deep_research_swarm.md" - Council of Judges: "swarms/structs/council_of_judges.md" @@ -225,6 +220,10 @@ nav: - SwarmRearrange: "swarms/structs/swarm_rearrange.md" - AgentRearrange: "swarms/structs/agent_rearrange.md" + - GroupChats: + - GroupChat: "swarms/structs/group_chat.md" + - Interactive Group Chat: "swarms/structs/interactive_groupchat.md" + - Workflows: - ConcurrentWorkflow: "swarms/structs/concurrentworkflow.md" - SequentialWorkflow: "swarms/structs/sequential_workflow.md" diff --git a/simple_example.py b/simple_example.py deleted file mode 100644 index df6e1571..00000000 --- a/simple_example.py +++ /dev/null @@ -1,13 +0,0 @@ -from swarms import Agent - -# Initialize a new agent -agent = Agent( - model_name="gpt-4o-mini", # Specify the LLM - max_loops=1, # Set the number of interactions - interactive=True, # Enable interactive mode for real-time feedback - streaming_on=True, - print_on=False, -) - -# Run the agent with a task -agent.run("What are the key benefits of using a multi-agent system?")