From 5186af44effb1bb78e058df16642e227fe64d03c Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 13 Jul 2023 12:56:41 -0400 Subject: [PATCH] clean up Former-commit-id: 86cbe09e136f78002a7cf45b6c6c53a4c5ce481a --- playground/ultranode_example.py | 4 ++-- playground/worker_ultra.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/playground/ultranode_example.py b/playground/ultranode_example.py index 24935fb5..a3f62c8a 100644 --- a/playground/ultranode_example.py +++ b/playground/ultranode_example.py @@ -1,4 +1,4 @@ -from swarms import UltraNode +from swarms import WorkerUltraUltraNode # Define an objective objective = """ @@ -12,6 +12,6 @@ I want it to have neumorphism-style. Serve it on port 4500. """ -node = UltraNode(objective) +node = WorkerUltraUltraNode(objective) result = node.execute() \ No newline at end of file diff --git a/playground/worker_ultra.py b/playground/worker_ultra.py index 621400a3..2c9fe09c 100644 --- a/playground/worker_ultra.py +++ b/playground/worker_ultra.py @@ -1,5 +1,5 @@ import os -from swarms.agents.workers.WorkerUltraNode import WorkerUltra +from swarms.swarms import WorkerUltra api_key = os.getenv("OPENAI_API_KEY")