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")