From ab8e97709f33604b2a43938ce97dbd8368c3c08f Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 16 Sep 2024 22:57:04 -0400 Subject: [PATCH] [EXPERIMENTAL] --- README.md | 6 +++--- docs/swarms/ecosystem.md | 2 +- docs/swarms/memory/short_term_memory.md | 2 +- docs/swarms/structs/multi_agent_collaboration_examples.md | 2 +- .../spreadsheet_swarm_examples/csvs/README.md | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b8a47a84..ad61b3ae 100644 --- a/README.md +++ b/README.md @@ -593,7 +593,7 @@ workflow.run( ------ ## `AgentRearrange` -Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://swarms.apac.ai/en/latest/swarms/structs/agent_rearrange/) +Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://docs.swarms.world/en/latest/swarms/structs/agent_rearrange/) ```python @@ -962,7 +962,7 @@ Documentation is located here at: [docs.swarms.world](https://docs.swarms.world) ## Docker Instructions -- [Learn More Here About Deployments In Docker](https://swarms.apac.ai/en/latest/docker_setup/) +- [Learn More Here About Deployments In Docker](https://docs.swarms.world/en/latest/docker_setup/) ----- @@ -1006,7 +1006,7 @@ Accelerate Bugs, Features, and Demos to implement by supporting us here: Join our growing community around the world, for real-time support, ideas, and discussions on Swarms 😊 -- View our official [Blog](https://swarms.apac.ai) +- View our official [Blog](https://docs.swarms.world) - Chat live with us on [Discord](https://discord.gg/kS3rwKs3ZC) - Follow us on [Twitter](https://twitter.com/kyegomez) - Connect with us on [LinkedIn](https://www.linkedin.com/company/the-swarm-corporation) diff --git a/docs/swarms/ecosystem.md b/docs/swarms/ecosystem.md index 4667a125..a9e0b01f 100644 --- a/docs/swarms/ecosystem.md +++ b/docs/swarms/ecosystem.md @@ -52,7 +52,7 @@ Swarms is an open-source project, and contributions are VERY welcome. If you wan Join our growing community around the world, for real-time support, ideas, and discussions on Swarms 😊 -- View our official [Blog](https://swarms.apac.ai) +- View our official [Blog](https://docs.swarms.world) - Chat live with us on [Discord](https://discord.gg/kS3rwKs3ZC) - Follow us on [Twitter](https://twitter.com/kyegomez) - Connect with us on [LinkedIn](https://www.linkedin.com/company/the-swarm-corporation) diff --git a/docs/swarms/memory/short_term_memory.md b/docs/swarms/memory/short_term_memory.md index 9ee3a738..6cc535a3 100644 --- a/docs/swarms/memory/short_term_memory.md +++ b/docs/swarms/memory/short_term_memory.md @@ -244,7 +244,7 @@ memory.load_from_file("memory_data.json") ### References and Resources -- For more information on multi-agent systems and memory management, refer to the SWARMS framework documentation: [SWARMS Documentation](https://swarms.apac.ai/). +- For more information on multi-agent systems and memory management, refer to the SWARMS framework documentation: [SWARMS Documentation](https://docs.swarms.world/). - For advanced memory management and customization, explore the SWARMS framework source code. diff --git a/docs/swarms/structs/multi_agent_collaboration_examples.md b/docs/swarms/structs/multi_agent_collaboration_examples.md index b2dd811c..7623b463 100644 --- a/docs/swarms/structs/multi_agent_collaboration_examples.md +++ b/docs/swarms/structs/multi_agent_collaboration_examples.md @@ -46,7 +46,7 @@ workflow.run( ------ ## `AgentRearrange` -Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://swarms.apac.ai/en/latest/swarms/structs/agent_rearrange/) +Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://docs.swarms.world/en/latest/swarms/structs/agent_rearrange/) ```python from swarms import Agent, AgentRearrange, Anthropic diff --git a/examples/structs/swarms/spreadsheet_swarm/spreadsheet_swarm_examples/csvs/README.md b/examples/structs/swarms/spreadsheet_swarm/spreadsheet_swarm_examples/csvs/README.md index b7328e0e..d22e2421 100644 --- a/examples/structs/swarms/spreadsheet_swarm/spreadsheet_swarm_examples/csvs/README.md +++ b/examples/structs/swarms/spreadsheet_swarm/spreadsheet_swarm_examples/csvs/README.md @@ -666,7 +666,7 @@ workflow.run( ------ ## `AgentRearrange` -Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://swarms.apac.ai/en/latest/swarms/structs/agent_rearrange/) +Inspired by Einops and einsum, this orchestration techniques enables you to map out the relationships between various agents. For example you specify linear and sequential relationships like `a -> a1 -> a2 -> a3` or concurrent relationships where the first agent will send a message to 3 agents all at once: `a -> a1, a2, a3`. You can customize your workflow to mix sequential and concurrent relationships. [Docs Available:](https://docs.swarms.world/en/latest/swarms/structs/agent_rearrange/) ```python from swarms import Agent, AgentRearrange, Anthropic @@ -1042,7 +1042,7 @@ Documentation is located here at: [docs.swarms.world](https://docs.swarms.world) ## Docker Instructions -- [Learn More Here About Deployments In Docker](https://swarms.apac.ai/en/latest/docker_setup/) +- [Learn More Here About Deployments In Docker](https://docs.swarms.world/en/latest/docker_setup/) ----- @@ -1099,7 +1099,7 @@ Accelerate Bugs, Features, and Demos to implement by supporting us here: Join our growing community around the world, for real-time support, ideas, and discussions on Swarms 😊 -- View our official [Blog](https://swarms.apac.ai) +- View our official [Blog](https://docs.swarms.world) - Chat live with us on [Discord](https://discord.gg/kS3rwKs3ZC) - Follow us on [Twitter](https://twitter.com/kyegomez) - Connect with us on [LinkedIn](https://www.linkedin.com/company/the-swarm-corporation)