From cf74f5c9b67a4de0d950cf28474ac49e2aaace5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Sun, 22 Sep 2024 13:57:25 -0300 Subject: [PATCH] fix test --- tests/agent_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/agent_test.py b/tests/agent_test.py index fa42c2b0f..75ecc8d89 100644 --- a/tests/agent_test.py +++ b/tests/agent_test.py @@ -27,7 +27,7 @@ def test_agent_creation(): def test_agent_default_values(): agent = Agent(role="test role", goal="test goal", backstory="test backstory") - assert agent.llm == "gpt-4o" + assert agent.llm == "gpt-4o-mini" assert agent.allow_delegation is False