mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-02 07:42:40 +00:00
Updated Managing Processes (markdown)
@@ -14,10 +14,9 @@ A process in CrewAI can be thought of as the game plan for how your AI agents wi
|
|||||||
These additional processes, once implemented, will offer more nuanced and sophisticated ways for agents to interact and complete tasks, much like teams in complex organizational structures.
|
These additional processes, once implemented, will offer more nuanced and sophisticated ways for agents to interact and complete tasks, much like teams in complex organizational structures.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Defining a Sequential Process
|
## Defining a Sequential Process
|
||||||
|
|
||||||
Creating a sequential process in CrewAI is straightforward and reflects the simplicity of coordinating a team's efforts step by step.
|
Creating a sequential process in CrewAI is straightforward and reflects the simplicity of coordinating a team's efforts step by step. In this process the outcome of the previous task is sent into the next one as context that I should use to accomplish it's task
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from crewai import Process
|
from crewai import Process
|
||||||
@@ -25,8 +24,10 @@ from crewai import Process
|
|||||||
# Define a sequential process
|
# Define a sequential process
|
||||||
sequential_process = Process.sequential
|
sequential_process = Process.sequential
|
||||||
```
|
```
|
||||||
The Magic of Sequential Processes
|
|
||||||
The sequential process is where much of CrewAI's magic happens. It ensures that tasks are approached with the same thoughtful progression that a human team would use, fostering a natural and logical flow of work.
|
# The Magic of Sequential Processes
|
||||||
|
|
||||||
|
The sequential process is where much of CrewAI's magic happens. It ensures that tasks are approached with the same thoughtful progression that a human team would use, fostering a natural and logical flow of work while passing on task outcome into the next.
|
||||||
|
|
||||||
## Assigning Processes to a Crew
|
## Assigning Processes to a Crew
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user