diff --git a/examples/agents/use_cases/browser/multion_examples/ multion_example.py b/examples/agents/use_cases/browser/multion/multion_examples/ multion_example.py similarity index 100% rename from examples/agents/use_cases/browser/multion_examples/ multion_example.py rename to examples/agents/use_cases/browser/multion/multion_examples/ multion_example.py diff --git a/examples/agents/use_cases/browser/multion_examples/buy_abunch_of_cybertrucks.py b/examples/agents/use_cases/browser/multion/multion_examples/buy_abunch_of_cybertrucks.py similarity index 94% rename from examples/agents/use_cases/browser/multion_examples/buy_abunch_of_cybertrucks.py rename to examples/agents/use_cases/browser/multion/multion_examples/buy_abunch_of_cybertrucks.py index bbe4a6f4..6c6f83bf 100644 --- a/examples/agents/use_cases/browser/multion_examples/buy_abunch_of_cybertrucks.py +++ b/examples/agents/use_cases/browser/multion/multion_examples/buy_abunch_of_cybertrucks.py @@ -1,6 +1,7 @@ from swarms import Agent, AgentRearrange -from swarm_models import OpenAIChatfrom swarms.agents.multion_wrapper import MultiOnAgent +from swarm_models import OpenAIChat +from swarms.agents.multion_wrapper import MultiOnAgent model = MultiOnAgent( url="https://tesla.com", diff --git a/swarms/__init__.py b/swarms/__init__.py index 2624b560..09d40b06 100644 --- a/swarms/__init__.py +++ b/swarms/__init__.py @@ -9,7 +9,6 @@ with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor: from swarms.agents import * # noqa: E402, F403 from swarms.artifacts import * # noqa: E402, F403 -from swarm_models import * # noqa: E402, F403 from swarms.prompts import * # noqa: E402, F403 from swarms.structs import * # noqa: E402, F403 from swarms.telemetry import * # noqa: E402, F403