From 51611ca07271c94e1c56d1a2b5d11dc0ab2c9175 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: bf1799f01f3f3b5c25307d4280993e788ace92bd --- 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")