From 80046add80abae94396c6a810149b46d71e921ac Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 10 Aug 2023 10:53:07 -0400 Subject: [PATCH] no type checking in promptconstructor --- swarms/agents/models/prompts/agent_prompt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/agents/models/prompts/agent_prompt_auto.py b/swarms/agents/models/prompts/agent_prompt_auto.py index cdf8fd33..e50bdf7d 100644 --- a/swarms/agents/models/prompts/agent_prompt_auto.py +++ b/swarms/agents/models/prompts/agent_prompt_auto.py @@ -9,7 +9,7 @@ class TokenUtils: class PromptConstructor: - def __init__(self, ai_name: str, ai_role: str, tools: List[BaseTool]): + def __init__(self, ai_name: str, ai_role: str, tools): self.ai_name = ai_name self.ai_role = ai_role self.tools = tools