From 9ec09f8119c546552be2c6b54732cbc5401a9ddd Mon Sep 17 00:00:00 2001 From: Joao Moura Date: Tue, 14 Nov 2023 14:03:25 -0300 Subject: [PATCH] Adding more details about sequential process into README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2dfac13a..98cca5b34 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ The power of AI collaboration has too much to offer. CrewAI is designed to enable AI agents to assume roles, share goals, and operate in a cohesive unit - much like a well-oiled crew. Whether you're building a smart assistant platform, an automated customer service ensemble, or a multi-agent research team, CrewAI provides the backbone for sophisticated multi-agent interactions. +[Documention Wiki](https://github.com/joaomdmoura/CrewAI/wiki) + ## Getting Started To get started with CrewAI, follow these simple steps: @@ -44,13 +46,15 @@ task2 = Task(description='Write a blog post on AI advancements', agent=writer) crew = Crew( agents=[researcher, writer], tasks=[task1, task2], - process=Process.sequential + process=Process.sequential # Sequential process will have tasks executed one after the other and the outcome of the previous one is passed as extra content into this next. ) # Get your crew to work! crew.kickoff() ``` +Currently the only supported process is `Process.sequential`, where one task is executed after the other and the outcome of one is passed as extra content into this next. + ## Key Features - **Role-Based Agent Design**: Customize agents with specific roles, goals, and tools.