diff --git a/tests/structs/test_async_workflow.py b/tests/structs/test_async_workflow.py index 512fd0eb..7fc05c89 100644 --- a/tests/structs/test_async_workflow.py +++ b/tests/structs/test_async_workflow.py @@ -6,11 +6,10 @@ from swarm_models import OpenAIChat # or any other model you prefer @pytest.mark.asyncio async def test_async_workflow(): # Create test agents - model = OpenAIChat() # Initialize with appropriate parameters agents = [ Agent( agent_name=f"Test-Agent-{i}", - llm=model, + llm="gpt4o-mini", max_loops=1, dashboard=False, verbose=True,