From e79e05e261de209300f44068b66b13747eab1587 Mon Sep 17 00:00:00 2001 From: Kye Date: Sat, 25 Nov 2023 20:44:00 -0800 Subject: [PATCH] clean up swarms of multi modal autonomous agents --- playground/demos/swarm_of_mma_manufacturing/main.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/playground/demos/swarm_of_mma_manufacturing/main.py b/playground/demos/swarm_of_mma_manufacturing/main.py index 57a33535..d8aab663 100644 --- a/playground/demos/swarm_of_mma_manufacturing/main.py +++ b/playground/demos/swarm_of_mma_manufacturing/main.py @@ -13,13 +13,11 @@ Efficiency agent: Agent that monitors the efficiency of the factory: input image Flow: health security agent -> quality control agent -> productivity agent -> safety agent -> security agent -> sustainability agent -> efficiency agent """ -from swarms.structs import Flow, SequentialWorkflow +from swarms.structs import Flow import os from dotenv import load_dotenv from swarms.models import GPT4VisionAPI -from swarms.prompts.multi_modal_autonomous_instruction_prompt import ( - MULTI_MODAL_AUTO_AGENT_SYSTEM_PROMPT_1, -) + load_dotenv() api_key = os.getenv("OPENAI_API_KEY")