From 8a37b535ed9391c2db6e7e265d047f0a4153d5cd Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Mon, 9 Jun 2025 11:17:04 -0300 Subject: [PATCH] docs: improve docs about planning LLM usage (#2977) --- docs/concepts/planning.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/concepts/planning.mdx b/docs/concepts/planning.mdx index 6161a6dbb..b7d65cdbc 100644 --- a/docs/concepts/planning.mdx +++ b/docs/concepts/planning.mdx @@ -29,6 +29,10 @@ my_crew = Crew( From this point on, your crew will have planning enabled, and the tasks will be planned before each iteration. + +When planning is enabled, crewAI will use `gpt-4o-mini` as the default LLM for planning, which requires a valid OpenAI API key. Since your agents might be using different LLMs, this could cause confusion if you don't have an OpenAI API key configured or if you're experiencing unexpected behavior related to LLM API calls. + + #### Planning LLM Now you can define the LLM that will be used to plan the tasks.