From 3195a1fff4328e5fe7eb6b4578b80340fb7e36c6 Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 27 Jul 2023 13:52:56 -0400 Subject: [PATCH] clean up --- swarms/orchestrate.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/swarms/orchestrate.py b/swarms/orchestrate.py index bedf1ce5..59899147 100644 --- a/swarms/orchestrate.py +++ b/swarms/orchestrate.py @@ -1,3 +1,10 @@ +#input agent or multiple: => it handles multi agent communication, it handles task assignment, task execution, report back with a status, auto scaling, number of agent nodes, +""" +from swarms import WorkerNode, Orchestrate + +Orchestrate(WorkerNode, autoscale=True, nodes=int, swarm_type="flat") + +""" from abc import ABC, abstractmethod import celery from typing import List, Dict, Any @@ -29,3 +36,9 @@ class Orchestrator(ABC): def get_vector_db(self) -> np.ndarray: """Retrieve the vector database""" pass + + + +#PRE CONFIGURED AGENTS WITH domain explicit TOOLS +#Build your own Agent +# Learn from previous runs in session management => it's a sucessful run => omniversal memory for all swarms \ No newline at end of file