From 70880d38b84a2662d0500ff6497b135377df2425 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 Former-commit-id: 80046add80abae94396c6a810149b46d71e921ac --- 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