From 19112f1476f0000df3adbd9dc92b5ecf68621b7b Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 7 Jul 2023 19:18:17 -0400 Subject: [PATCH] run_as = None --- swarms/swarms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/swarms.py b/swarms/swarms.py index 680cb9a1..02f8de2a 100644 --- a/swarms/swarms.py +++ b/swarms/swarms.py @@ -77,7 +77,7 @@ class Swarms: return BossNode(llm, vectorstore, agent_executor, max_iterations=5) - def run_swarms(self, objective, run_as='worker'): + def run_swarms(self, objective, run_as=None): try: # Run the swarm with the given objective worker_tools = self.initialize_tools(OpenAI)