From d41e92929aaecd77e8766978255b2a5b1bd44b23 Mon Sep 17 00:00:00 2001
From: Kye <kye@apacmediasolutions.com>
Date: Fri, 7 Jul 2023 19:18:42 -0400
Subject: [PATCH] todo list is back

---
 swarms/swarms.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swarms/swarms.py b/swarms/swarms.py
index 02f8de2a..aab4ca13 100644
--- a/swarms/swarms.py
+++ b/swarms/swarms.py
@@ -64,7 +64,7 @@ class Swarms:
         todo_prompt = PromptTemplate.from_template("You are a boss planer in a swarm who is an expert at coming up with a todo list for a given objective and then creating an worker to help you accomplish your task. Come up with a todo list for this objective: {objective} and then spawn a worker agent to complete the task for you. Always spawn an worker agent after creating a plan and pass the objective and plan to the worker agent.")
         todo_chain = LLMChain(llm=llm, prompt=todo_prompt)
         tools = [
-            # 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="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!"),
             worker_node
         ]
         suffix = """Question: {task}\n{agent_scratchpad}"""