From f3736ac542c47be20aba754f34276bd79ca0e046 Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 7 Jul 2023 17:27:45 -0400 Subject: [PATCH] run as a worker --- swarms/swarms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/swarms.py b/swarms/swarms.py index 4e1a860a..ac8f1bb9 100644 --- a/swarms/swarms.py +++ b/swarms/swarms.py @@ -78,7 +78,7 @@ class Swarms: return BossNode(llm, vectorstore, agent_executor, max_iterations=5) - def run_swarms(self, objective, run_as="boss"): + def run_swarms(self, objective, run_as="worker"): # try: # # Run the swarm with the given objective # worker_tools = self.initialize_tools(OpenAI)