adding process and task modules

This commit is contained in:
Joao Moura
2023-11-05 14:21:35 -03:00
parent afd8ae40e0
commit ffd0444f11
2 changed files with 35 additions and 0 deletions

9
crewai/process.py Normal file
View File

@@ -0,0 +1,9 @@
from enum import Enum
class Process(str, Enum):
"""
Class representing the different processes that can be used to tackle tasks
"""
sequential = 'sequential'
consensual = 'consensual'
hierarchical = 'hierarchical'