From 2a3142b69db0e1926604eb598dfa02ebe0207dc5 Mon Sep 17 00:00:00 2001 From: Kye Date: Wed, 28 Jun 2023 15:36:49 -0400 Subject: [PATCH] clean up --- example.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/example.py b/example.py index c6fca13d..327fd065 100644 --- a/example.py +++ b/example.py @@ -1,14 +1,5 @@ from swarms.agents.workers.auto_agent import agent -agent = AutoGPT.from_llm_and_tools( - ai_name="Tree of Thoughts", - ai_role="Assistant", - tools=tools, - llm=llm, - memory=vectorstore.as_retriever(search_kwargs={"k": 8}), - human_in_the_loop=True, # Set to True if you want to add feedback at each step. -) - agent.chain.verbose = True