From fe3baa528e993b8bc77a834f2c0b854e2a278b8b Mon Sep 17 00:00:00 2001 From: Kye Date: Wed, 5 Jul 2023 19:09:36 -0400 Subject: [PATCH] worker init method --- swarms/swarms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/swarms/swarms.py b/swarms/swarms.py index 4c12bec3..3f0d7995 100644 --- a/swarms/swarms.py +++ b/swarms/swarms.py @@ -49,7 +49,8 @@ class Swarms: tools = [ # Tool(name="Search", func=search.run, description="useful for when you need to answer questions about current events"), Tool(name="TODO", func=todo_chain.run, description="useful for when you need to come up with todo lists. Input: an objective to create a todo list for. Output: a todo list for that objective. Please be very clear what the objective is!"), - Tool(name="AUTONOMOUS Worker AGENT", func=self.worker_node, description="Useful for when you need to spawn an autonomous agent instance as a worker to accomplish complex tasks, it can search the internet or spawn child multi-modality models to process and generate images and text or audio and so on") + # Tool(name="AUTONOMOUS Worker AGENT", func=self.worker_node, description="Useful for when you need to spawn an autonomous agent instance as a worker to accomplish complex tasks, it can search the internet or spawn child multi-modality models to process and generate images and text or audio and so on") + self.worker_node, ] suffix = """Question: {task}\n{agent_scratchpad}"""