From bd41be51b07d9ddd71105e24c5123fa3392495d0 Mon Sep 17 00:00:00 2001 From: Kye Date: Wed, 5 Jul 2023 18:03:27 -0400 Subject: [PATCH] clean up --- swarms/agents/workers/worker_agent.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/swarms/agents/workers/worker_agent.py b/swarms/agents/workers/worker_agent.py index ab41ad8d..1ba8427b 100644 --- a/swarms/agents/workers/worker_agent.py +++ b/swarms/agents/workers/worker_agent.py @@ -13,9 +13,6 @@ class WorkerNode(BaseTool): """Useful for when you need to spawn an autonomous agent instance as a worker to accomplish complex tasks, it can search the internet or spawn child multi-modality models to process and generate images and text or audio and so on """ name = "WorkerNode" description = "A worker node that can perform complex tasks" - llm: Any = Field(description="Language model") - tools: List[Tool] = Field(description="List of tools") - vectorstore: VectorStore = Field(description="Vector store") def __init__(self, llm, tools, vectorstore): super().__init__(llm=llm, tools=tools, vectorstore=vectorstore)