From 80801d3db4a7002ca3121f188f42016638bc118d Mon Sep 17 00:00:00 2001 From: rakesh-krishna-a-s Date: Wed, 13 Sep 2023 15:13:59 +0530 Subject: [PATCH] revert thinking tool deletion --- superagi/agent/agent_iteration_step_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superagi/agent/agent_iteration_step_handler.py b/superagi/agent/agent_iteration_step_handler.py index 7753828fd..543a285e6 100644 --- a/superagi/agent/agent_iteration_step_handler.py +++ b/superagi/agent/agent_iteration_step_handler.py @@ -146,7 +146,7 @@ def _build_agent_prompt(self, iteration_workflow: IterationWorkflow, agent_confi return prompt def _build_tools(self, agent_config: dict, agent_execution_config: dict): - agent_tools = [] + agent_tools = [ThinkingTool()] config_data = AgentConfiguration.get_model_api_key(self.session, self.agent_id, agent_config["model"]) model_api_key = config_data['api_key']