From 08ed84dc21cf924e46d15dd6acacb82795799d66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Sun, 22 Sep 2024 11:15:03 -0300 Subject: [PATCH] bringin back gpt-4o-mini as default --- src/crewai/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/agent.py b/src/crewai/agent.py index 31630391f..0fceb6a41 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -82,7 +82,7 @@ class Agent(BaseAgent): description="Use system prompt for the agent.", ) llm: Any = Field( - description="Language model that will run the agent.", default="gpt-4o" + description="Language model that will run the agent.", default="gpt-4o-mini" ) function_calling_llm: Optional[Any] = Field( description="Language model that will run the agent.", default=None