跳转至

crewAI Planning

Introduction

The planning feature in CrewAI allows you to add planning capability to your crew. When enabled, before each Crew iteration, all Crew information is sent to an AgentPlanner that will plan the tasks step by step, and this plan will be added to each task description.

Using the Planning Feature

Getting started with the planning feature is very easy, the only step required is to add planning=True to your Crew:

from crewai import Crew, Agent, Task, Process

# Assemble your crew with planning capabilities
my_crew = Crew(
    agents=self.agents,
    tasks=self.tasks,
    process=Process.sequential,
    planning=True,
)

From this point on, your crew will have planning enabled, and the tasks will be planned before each iteration.

Planning LLM

Now you can define the LLM that will be used to plan the tasks. You can use any ChatOpenAI LLM model available.

from crewai import Crew, Agent, Task, Process
from langchain_openai import ChatOpenAI

# Assemble your crew with planning capabilities and custom LLM
my_crew = Crew(
    agents=self.agents,
    tasks=self.tasks,
    process=Process.sequential,
    planning=True,
    planning_llm=ChatOpenAI(model="gpt-4o")
)

Example

When running the base case example, you will see something like the following output, which represents the output of the AgentPlanner responsible for creating the step-by-step logic to add to the Agents' tasks.

``` [2024-07-15 16:49:11][INFO]: Planning the crew execution Step-by-Step Plan for Task Execution

Task Number 1: Conduct a thorough research about AI LLMs

Agent: AI LLMs Senior Data Researcher

Agent Goal: Uncover cutting-edge developments in AI LLMs

Task Expected Output: A list with 10 bullet points of the most relevant information about AI LLMs

Task Tools: None specified

Agent Tools: None specified

Step-by-Step Plan:

  1. Define Research Scope:
  2. Determine the specific areas of AI LLMs to focus on, such as advancements in architecture, use cases, ethical considerations, and performance metrics.

  3. Identify Reliable Sources:

  4. List reputable sources for AI research, including academic journals, industry reports, conferences (e.g., NeurIPS, ACL), AI research labs (e.g., OpenAI, Google AI), and online databases (e.g., IEEE Xplore, arXiv).

  5. Collect Data:

  6. Search for the latest papers, articles, and reports published in 2023 and early 2024.
  7. Use keywords like "Large Language Models 2024", "AI LLM advancements", "AI ethics 2024", etc.

  8. Analyze Findings:

  9. Read and summarize the key points from each source.
  10. Highlight new techniques, models, and applications introduced in the past year.

  11. Organize Information:

  12. Categorize the information into relevant topics (e.g., new architectures, ethical implications, real-world applications).
  13. Ensure each bullet point is concise but informative.

  14. Create the List:

  15. Compile the 10 most relevant pieces of information into a bullet point list.
  16. Review the list to ensure clarity and relevance.

Expected Output: A list with 10 bullet points of the most relevant information about AI LLMs.


Task Number 2: Review the context you got and expand each topic into a full section for a report

Agent: AI LLMs Reporting Analyst

Agent Goal: Create detailed reports based on AI LLMs data analysis and research findings

Task Expected Output: A fully fledged report with the main topics, each with a full section of information. Formatted as markdown without '```'

Task Tools: None specified

Agent Tools: None specified

Step-by-Step Plan:

  1. Review the Bullet Points:
  2. Carefully read through the list of 10 bullet points provided by the AI LLMs Senior Data Researcher.

  3. Outline the Report:

  4. Create an outline with each bullet point as a main section heading.
  5. Plan sub-sections under each main heading to cover different aspects of the topic.

  6. Research Further Details:

  7. For each bullet point, conduct additional research if necessary to gather more detailed information.
  8. Look for case studies, examples, and statistical data to support each section.

  9. Write Detailed Sections:

  10. Expand each bullet point into a comprehensive section.
  11. Ensure each section includes an introduction, detailed explanation, examples, and a conclusion.
  12. Use markdown formatting for headings, subheadings, lists, and emphasis.

  13. Review and Edit:

  14. Proofread the report for clarity, coherence, and correctness.
  15. Make sure the report flows logically from one section to the next.
  16. Format the report according to markdown standards.

  17. Finalize the Report:

  18. Ensure the report is complete with all sections expanded and detailed.
  19. Double-check formatting and make any necessary adjustments.

Expected Output: A fully fledged report with the main topics, each with a full section of information. Formatted as markdown without '```'.