hhem / crewai /process.py
eaglelandsonce's picture
Upload 27 files
94ea28c verified
from enum import Enum
class Process(str, Enum):
"""
Class representing the different processes that can be used to tackle tasks
"""
sequential = "sequential"
hierarchical = "hierarchical"
# TODO: consensual = 'consensual'