From 92b201c5f5cc0d718c981d2c02d4bfaee5031586 Mon Sep 17 00:00:00 2001 From: Occupying-Mars Date: Wed, 11 Dec 2024 00:43:29 +0530 Subject: [PATCH] doc update --- tests/structs/test_async_workflow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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,